Posts

What is Coding? | Why learn to Code? | How to start Coding?

Image
  1. Choose a Programming Language Popular programming languages to start with Consider your goals and interests 2. Understand the Basics Learn about syntax and structure Familiarize yourself with common programming terms Click here to learn the basics in detail 3. Take Online Coding Courses Platforms for beginners to learn coding Interactive tutorials and guided lessons Click here to learn about the Free Course 4. Practice Regularly Coding challenges and projects Build a portfolio of work 5. Join Coding Communities Online forums and groups Networking with other aspiring coders 6. Seek Mentorship Finding a coding mentor Benefits of mentorship in learning to code 7. Start Small Projects Simple coding projects to get started Gradually increase complexity 8. Utilize Coding Resources Coding libraries and resources Tools to assist in coding projects 9. Attend Coding Bootcamps Benefits of coding boot camps Intensive learning and real-world projects 10. Work on Open Source Projects Contri...

How to make Scientific Calculator(Complete Program)

Image
                                                                  SCIENTIFIC CALCULATOR                               

Fundamentals of Computer Programming C++ Programs

Image
  Q1. Add the code on the doted lines in the following program to generate the output given after the source code. Sol: #include<iostream> using namespace std; int main() {           int x=100;           float y=6.0;           float sum;           float product;           float m;           sum=x + y;           cout << "The Sum of x and y is " <<sum<< endl;           product=x*y;           cout<< "The product of x and y is " <<product<<endl;           m=x+y+100; ...

Fundamentals of Computer Programming(Apply computer programming techniques to solve real world problems by Python)

Image
  Question #1: Write a python program that takes balance of a user’s account as input. It should then ask the user how much amount he\she wants to withdraw from his\her account. The program should take this amount as input and deduct from the balance. Similarly , it should ask the user how much amount he\she wants to deposit in his\her account. It should take this amount as input and add to the balance. The program shall display the new balance after amount has been withdrawn and deposited. Note : Your program should have all necessary checks on the transactions. Display a menu to the user to let him\her choose between different available options. Solution: Copy of Source Code: #program to calculate current balance after withdrawal and deposit balance=get=w=d=0 #variables required yn="y" balance=eval(input("Enter your account balance: ")) #input balance #menu for the withdrawal print("For the withdrawal") print(" 1 is to withdra...