C & C++ Language Exam

17

C Language

1 / 10

1. What is the 16-bit compiler allowable range for integer constants?

પૂર્ણાંક સ્થિરાંકો માટે 16-બીટ કમ્પાઇલર માન્ય શ્રેણી શું છે?

2 / 10

2. C Language is a successor to which language.?

સી ભાષા કઈ ભાષાની અનુગામી છે.?

3 / 10

3. What is the output of C Program.?

સી પ્રોગ્રામનું આઉટપુટ શું છે.?

int main()

{

int k, j;

for(k=1, j=10; k <= 5; k++)

{

printf("%d ", (k+j));

}

return 0;

}

4 / 10

4. C language is used in the development of .?

C ભાષાનો ઉપયોગ વિકાસમાં થાય છે.?

5 / 10

5. What is the present C Language Standard.?

વર્તમાન સી ભાષાનું ધોરણ શું છે.?

6 / 10

6. Expand or Abbreviate ASCII with regard to C Language.

C ભાષાના સંદર્ભમાં ASCII ને વિસ્તૃત અથવા સંક્ષિપ્ત કરો.

7 / 10

7. An array Index starts with.?

એરે ઇન્ડેક્સ આનાથી શરૂ થાય છે.?

8 / 10

8. Which program outputs "Hello World.." .?

કયો પ્રોગ્રામ "હેલો વર્લ્ડ.." આઉટપુટ કરે છે.?

9 / 10

9.

Name the loop that executes at least once.
લૂપને નામ આપો જે ઓછામાં ઓછા એક વખત એક્ઝિક્યુટ કરે છે.

10 / 10

10. What is the output of C Program.?

int main()

{

while(true)

{

printf("RABBIT");

break;

}

return 0;

}

સી પ્રોગ્રામનું આઉટપુટ શું છે.?

Your score is

The average score is 51%

0%