Thursday 23 April 2020

Answer : PROGRAMMING & PROBLEM SOLVING THROUGH ‘C’ LANGUAGE , July 18

Answer  : NIELIT (O-Level) PROGRAMMING & PROBLEM SOLVING THROUGH ‘C’ LANGUAGE , July 18

1. Multiple choice


1.1 : C
1.2 : B
1.3 : A
1.4 : B
1.5 : D
1.6 : B
1.7 : D
1.8 : D
1.9 : C
1.10 : C

Wednesday 22 April 2020

Solved : PROGRAMMING & PROBLEM SOLVING THROUGH ‘C’ LANGUAGE , July 18

Solved : NIELIT (O-Level) PROGRAMMING & PROBLEM SOLVING THROUGH ‘C’ LANGUAGE , July 18

1. Each question below gives a multiple choice of answers. Choose the most appropriate  one and enter in the “OMR” answer sheet supplied with the question paper, following instructions therein. (1x10)

1.1 : Which programming method is followed in C language?
A)  Algorithm B) Flow-charts
C)  Procedural D) Object Oriented
Answer

Tuesday 21 April 2020

Answer : PROGRAMMING & PROBLEM SOLVING THROUGH ‘C’ LANGUAGE , January 18

Answer : NIELIT ( O-Level)  PROGRAMMING & PROBLEM SOLVING THROUGH ‘C’ LANGUAGE , January 18

1: Multiple Choice


1.1 : A
1.2 : A
1.3 : A
1.4 : C
1.5 : D
1.6 : C
1.7 : A
1.8 : A
1.9 : B
1.10 : A

Solved : PROGRAMMING & PROBLEM SOLVING THROUGH ‘C’ LANGUAGE , January 18

Solved : NIELIT (O-Level)  PROGRAMMING & PROBLEM SOLVING THROUGH ‘C’ LANGUAGE , January 18

1. Each question below gives a multiple choice of answers. Choose the most appropriate  one and enter in the “OMR” answer sheet supplied with the question paper, following instructions therein. (1x10)

1.1 :  What will be output if you compile and execute the following ‘C’ code?
void main()
{
   float a=5.2;
   if(a==5.2)
     printf("Equal");
  else if(a<5.2)
    printf("Less than");
  else
  printf("Greater than");
}
A) Equal B) Less than
C) Greater than D) Compilation error
Answer