Computer Programming (3310701) MCQs

MCQs of Basics of C

Showing 21 to 30 out of 59 Questions
21.

What is the output of this C code?

void main()
{
         float x='a';
         printf("%f",x);
}

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

void main()
{
         float x='a';
         printf("%f",x);
}

(a)

a

(b)

run time error

(c)

a.0000000

(d)

97

Answer:

Option (d)

22.

Which of the following is not a valid variable name?

નીચેનામાંથી કયું વેરીએબલ નું નામ valid નથી?

(a)

int _a3;

(b)

int a_3;

(c)

int 3_a;

(d)

int _3a;

Answer:

Option (c)

23.

Which of the following is not a valid C variable name?

નીચેનામાંથી કયું C વેરીએબલ નું નામ valid નથી?

(a)

int number;

(b)

float rate;

(c)

int variable_count;

(d)

int $main;

Answer:

Option (d)

24.

Which of the following is valid C expression?

નીચેના માંથી કયું valid C expression છે?

(a)

int my_num = 100,000;

(b)

int my_num = 100000;

(c)

int my num = 1000;

(d)

int $my_num = 10000;

Answer:

Option (b)

25.

What is the output of this C code?

void main()
{
           printf("Hello World! %d \n", x);
}

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

void main()
{
           printf("Hello World! %d \n", x);
}

(a)

Hello World! x;

(b)

Hello World! followed by a junk value

(c)

Compile-time error

(d)

Hello World!

Answer:

Option (c)

26.

What is the output of this C code?

void main()
{
          int y = 89;
          int y = 34;
          printf("Hello World! %d\n", y);
}

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

void main()
{
          int y = 89;
          int y = 34;
          printf("Hello World! %d\n", y);
}

(a)

Compile time error

(b)

Hello World! 34

(c)

Hello World! 89

(d)

Hello World! y

Answer:

Option (b)

27.

Which of the following is not a valid variable name?

નીચેનામાંથી કયું વેરીએબલ નું નામ valid નથી?

(a)

float PI = 3.14;

(b)

double PI = 3.14;

(c)

int PI = 3.14;

(d)

#define PI 3.14

Answer:

Option (d)

28.

Which of the following cannot be a variable name in C?

નીચેનામાંથી શું વેરીએબલ નું નામ C માં ના હોઈ શકે?

(a)

volatile

(b)

TRUE

(c)

friend

(d)

export

Answer:

Option (a)

29.

Which of the following is an input function?

નીચેનામાંથી ક્યુ ઇનપુટ ફંકશન છે?

(a)

scanf

(b)

printf

(c)

void main()

(d)

#include

Answer:

Option (a)

30.

Which variable can not be used outside their scope?

કયા વેરીએબલ નો ઉપયોગ તેના સ્કોપ ની બહાર કરી શકાતો નથી?

(a)

Local variable

લોકલ વેરીએબલ

(b)

Global variable

ગ્લોબલ વેરીએબલ

(c)

Constant

કોન્સ્ટન્ટ

(d)

Bi-variable

Bi-વેરીએબલ

Answer:

Option (a)

Showing 21 to 30 out of 59 Questions