Computer Programming (3310701) MCQs

MCQs of Basics of C

Showing 51 to 59 out of 59 Questions
51.

Which of the following will not return a value?

નીચેનામાંથી કયું કઈ વેલ્યુ રીટર્ન કરતું નથી?

(a)

void

(b)

int

(c)

char

(d)

enum

Answer:

Option (a)

52.

Variable that are declared but not initialized contains ___________ .

વેરીએબલ કે જે ડિક્લેર કરવામાં આવે છે પરંતુ ઇનિશિયલાઈઝ કરવામાં આવતા નથી તે ________ ધરાવે છે.

(a)

0

(b)

Blank space

(c)

Garbage value

(d)

1

Answer:

Option (c)

53.

By default a real number is treated as a ____________ .

ડીફોલ્ટ રીતે એક રિયલ નંબર ને _________ તરીકે ગણવામાં આવે છે.

(a)

double

(b)

float

Answer:

Option (a)

54.

Input/Output function prototypes and macros are defined in which header file?

ઇનપુટ / આઉટપુટ ફંક્શન પ્રોટોટાઇપ્સ અને મેક્રોઝ કયા હેડર ફાઇલમાં ડિફાઇન થાય છે?

(a)

stdio.h

(b)

dos.h

(c)

conio.h

(d)

stdlib.h

Answer:

Option (a)

55.

To scan a and b given below, which of the following scanf() statement will you use?

#include<stdio.h>
float a;
double b;

નીચે આપેલ a અને b ને સ્કેન કરવા માટે, તમે નીચેનામાંથી કયા scanf() સ્ટેટમેન્ટનો ઉપયોગ કરશો?

#include<stdio.h>
float a;
double b;

(a)

scanf("%f%f",&a,&b);

(b)

scanf("%f%lf",&a,&b);

(c)

scanf("%Lf%Lf",&a,&b);

(d)

scanf("%f%Lf",&a,&b);

Answer:

Option (b)

56.

C variable cannot start with ________ .

C વેરીએબલ  _______ થી start થતું નથી.

(a)

number

(b)

alphabet

(c)

character

Answer:

Option (a)

57.

short integer variable occupies memory of ________ .

short integer વેરીએબલ ________ મેમરી occupy કરે છે.

(a)

1 bytes

(b)

2 bytes

(c)

3 bytes

(d)

8 bytes

Answer:

Option (b)

58.

The variables are initialized using _________ .

વેરીએબલ __________ દ્વારા initialize થાય છે.

(a)

>

(b)

=

(c)

==

(d)

++

Answer:

Option (b)

59.

Which amongst the following is not a keyword?

આપેલા માંથી ક્યુ કીવર્ડ નથી?

(a)

external

(b)

int

(c)

float

(d)

double

Answer:

Option (a)

Showing 51 to 59 out of 59 Questions