C programming

C programming

University

20 Qs

quiz-placeholder

Similar activities

Python 1

Python 1

1st Grade - University

17 Qs

Day -1

Day -1

University

15 Qs

Python 1.0

Python 1.0

10th Grade - University

20 Qs

Python Code

Python Code

8th Grade - Professional Development

20 Qs

C Technical Quiz 2

C Technical Quiz 2

University

15 Qs

ROUND 1

ROUND 1

University

20 Qs

TECHNICAL_QUIZ_ROUND1

TECHNICAL_QUIZ_ROUND1

University

25 Qs

UC_TM03_Arrays_Functions

UC_TM03_Arrays_Functions

University - Professional Development

16 Qs

C programming

C programming

Assessment

Quiz

Professional Development

University

Hard

Created by

Sumit Kumar

Used 1+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 20 pts

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

-3.4e38 to 3.4e38

-32767 to 32768

-32668 to 32667

-32768 to 32767

Answer explanation

-32768 to 32767

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

main()

{printf("javatpoint");

main();}

Wrong statement

It will keep on printing javatpoint

It will Print javatpoint once

None of the these

Answer explanation

It will keep on printing javatpoint

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What will this program print?

main()

{

int i = 2;

{

int i = 4, j = 5;

printf("%d %d", i, j);

}

printf("%d %d", i, j);

}

4525

2525

4545

None of these

Answer explanation

4525

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is a lint?

C compiler

Interactive debugger

Analyzing tool

C interpreter

Answer explanation

Analyzing tool

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the output of this statement "printf("%d", (a++))"?

The value of (a + 1)

The current value of a

Error message

Garbage

Answer explanation

The current value of a

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Study the following program:

main()

{

int a = 1, b = 2, c = 3:

printf("%d", a + = (a + = 3, 5, a))

}

What will be the output of this program?

6

9

12

8

Answer explanation

Answer: (d) 8

Explanation: It is an effect of the comma operator.

a + = (a + = 3, 5, a)

It first evaluates to "a + = 3" i.e. a = a + 3 then evaluate 5 and then evaluate "a".

Therefore, we will get the output is 4.

Then,

a + = 4

It gives 8 as the output.

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What does this declaration mean?

int x : 4;

X is a four-digit integer.

X cannot be greater than a four-digit integer.

X is a four-bit integer.

None of the these

Answer explanation

X is a four-bit integer.

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?