Computer Programming (3310701) MCQs

MCQs of Basics of C

Showing 31 to 40 out of 59 Questions
31.

What will be output of this C code?

#include<stdio.h>
void main()
{
        char test ='S';
        printf("\n%c",test);
}

આપેલા C કોડનું આઉટપુટ શું હશે?

#include<stdio.h>
void main()
{
        char test ='S';
        printf("\n%c",test);
}

(a)

S

(b)

Error

(c)

Garbage value

Answer:

Option (a)

32.

Howmany keywords are there in C?

C માં કેટલા કીવર્ડ આવેલા છે?

(a)

30

(b)

32

(c)

48

(d)

132

Answer:

Option (b)

33.

printf() belongs to which library of C.

printf() C ની કઇ લાયબ્રેરી ને belong કરે છે.

(a)

stdlib.h

(b)

stdio.h

(c)

stduo.h

(d)

studio.h

Answer:

Option (b)

34.

Which of the following is invalid identifier?

નીચેનામાંથી ક્યુ આઇડેન્ટીફાયર invalid છે?

(a)

world

(b)

addition23

(c)

test name

(d)

factorial

Answer:

Option (c)

35.

Is it possible to run program without main() function?

શું main() ફંક્શન વિના પ્રોગ્રામ રન કરવો શક્ય છે?

(a)

Yes

(b)

No

Answer:

Option (b)

36.

How many main() function we can have in our program?

આપણા પ્રોગ્રામમાં આપણે કેટલા main() ફન્કશન નો ઉપયોગ કરી શકીએ છીએ?

(a)

1

(b)

2

(c)

No Limit

કોઈ લિમિટ નથી

(d)

Depends on Compiler

કમ્પાઈલર પર ડીપેન્ડ છે

Answer:

Option (a)

37.

Which of the following ways are correct to include header file in C program?

C પ્રોગ્રામમાં હેડર ફાઇલ include કરવા માટે નીચેની કઇ રીત સાચી છે?

(a)

#include"stdio.h"

(b)

#include{stdio.h}

(c)

#include[stdio.h]

(d)

#include stdio.h

Answer:

Option (a)

38.

Howmany headerfiles we can add in our program?

પ્રોગ્રામમાં આપણે કેટલી હેડરફાઈલ એડ કરી શકીએ?

(a)

2

(b)

Only one

(c)

Zero

(d)

Can't say

કહી ના શકીયે

Answer:

Option (d)

39.

Which one is not a keyword in C Language?

નીચે આપેલ માંથી C લેંગ્વેજ માં કયો કીવર્ડ નથી?

(a)

auto

(b)

main

(c)

case

(d)

register

Answer:

Option (b)

40.

Is C is POP or OOP?

C POP છે કે OOP?

(a)

C is POP

(b)

C is OOP

Answer:

Option (a)

Showing 31 to 40 out of 59 Questions