Skip to main content

FAQs

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: 
   
OperatorsSymbolsTypeExample
Assignment=Unarya=10
Arithmetic+,-,/,*,%Binarya+b 
a-b 
a*b 
a/b 
a%b
Relational>, <, >=, <=, ==, !=(Not Equal)BinaryIt gives Result in Boolen value True/False
a>b 
a<b 
a>=b 
a<=b 
a==b 
a!=b
Logical&& (AND), ||(OR), !(Not)BinaryIt 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

Popular posts from this blog

Programming Basics

Logic Building Data_Types Operators Algorithms Pseudo_Code Hello Guys, Let's Play with Logic.........but wait, before that you must know that how to build Logic in Programming as you all know that programming is all about Logic..... So Let's start the game... If you are new Here that means you are absolutely right Place, Or If you already know, than you will learn new things here! If we Talk about the Programming we should be familiar with  these terms..... 1. Variable 2. Data Types 3.Keywords Variable: Variable is something which holds the value.                  Like:      a=10;                 Here,                 a---------------------->  Variable                  10 ---------------------> Value * The Value of Variable can be changed , *  " Variable is a named memory Location which holds a value." Data Types:   Data Type is what which tells that which kind of data we are using. In programming we have different Dat