print ("Enter first number") f1 = input () print ("Enter second number") f2 = input () print ("Sum of these two numbers is", int(f1) + int(f2)) #Output of this program Enter first number 21 Enter second number 8 Sum of these two numbers is 29
Every learning has some basic concepts that should be understood thoroughly. A person can be good at mathematics if the basic concepts are clear to study maths at higher levels, in English, one should be clear with English grammar so that they can speak, write and communicate very well in English. So, to move to a higher level, one should be clear with their basic level of knowledge. There are the following concepts in computer programming that should be clear for learning and hands-on in computer programming: We should know about the programming environment. The grammar of computer programming, known as Syntax. Role of data types, variables, and keywords in computer programming. Different types of loops and its role in computer programming What are input and output operations in computer programming Functions and its role Various types of logical and arithmetic operators. To become a good computer programme...
There are following multiple programming languages that allow programmers to process and execute small as well as large programs: C Language: The language was developed in 1972 by Dennis Ritchie and its laboratories at AT & T Bells It was basically designed and developed for implementing the UNIX OS. It is a structured programming language. C++: It was developed in 1983 and was an object-oriented version of the C programming language. C++ was developed for providing high-level abstractions so as to handle large development projects efficiently. C#: It was developed in 1983 , known as Objective-C by Apple . It was mainly created for addressing the lacking points of the object-oriented programming language. Later on, it was licensed by NeXt in 1988 . Python: It was developed in the late 1980s, which was an advanced programming language because it was object-oriented, inter...
Comments
Post a Comment