Basic Questions on Programming Languages
1. What is the meaning of Programming?
Ans: Programming is the process of Scheduling the task to perform step by step to Execute a specific Task.
2. Types of Programming Languages?
Ans: Types:
Procedural Programming Language
Object Oriented Programming Language
Object Based Language
Scripting Language
Procedural Programming Language
C Programming
Object Oriented Programming Language
C++
Java
C#
VB.Net
Object Based Language
JavaScript
Scripting Language
Python
VBScript
PHP
Perl
Ruby
R
3. Types Of Operators in Programming Languages.
Ans:
| Operators | Symbols | Type | Example |
|---|---|---|---|
| Assignment | = | Unary | a=10 |
| Arithmetic | +,-,/,*,% | Binary | a+b a-b a*b a/b a%b |
| Relational | >, <, >=, <=, ==, !=(Not Equal) | Binary | It gives Result in Boolen value True/False a>b a<b a>=b a<=b a==b a!=b |
| Logical | && (AND), ||(OR), !(Not) | Binary | It gives Result in Boolen value True/False a>b && a>c a>b || a>c a!=b |
4. Types of Keywords in Different Programming Languages.
Ans. Types of Keywords in Different Programming Languages are as Follows:
| Programming Language | Numbers of Keywords |
|---|---|
| C Programming | 32 Keywords |
| C++ Programming | 64 Keywords |
| Java Programming | 51 Keywords |
| C# Programming | 79 Keywords |
| JavaScript Programming | 63 Keywords |
| Python Programming | 33 Keywords |
| R Programming | 32 Keywords |
Comments
Post a Comment
If you have any doubts, Please let me Know