Printf Scanf Quiz

Printf Scanf Quiz

Professional Development

10 Qs

quiz-placeholder

Similar activities

ตัวแปรและประเภทข้อมูลในภาษาC

ตัวแปรและประเภทข้อมูลในภาษาC

Professional Development

10 Qs

Functions on C

Functions on C

Professional Development

15 Qs

Coding Fundamentals in C

Coding Fundamentals in C

6th Grade - Professional Development

12 Qs

BrightChamps Technical Round - C language

BrightChamps Technical Round - C language

Professional Development

15 Qs

Day 4 C Programming Quiz

Day 4 C Programming Quiz

Professional Development

10 Qs

MindSpace Computers C Quiz-1 2025

MindSpace Computers C Quiz-1 2025

Professional Development

13 Qs

Lenguaje de programación C 3BGU

Lenguaje de programación C 3BGU

Professional Development

10 Qs

MindSpace Computers C Test-3

MindSpace Computers C Test-3

Professional Development

12 Qs

Printf Scanf Quiz

Printf Scanf Quiz

Assessment

Quiz

Computers

Professional Development

Hard

Created by

Zohaib Hasan

Used 2+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What will be printed?

printf("%10.1f", 4.6785);

4.7 after 7 spaces

4.6 after 8 spaces

4.6785 after 7 spaces

4.6785 after 10 spaces

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What will be printed?

printf("%10d", 45);

45 after 10 spaces

45 after 8 spaces

45 with no spaces before

45 after 7 spaces

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What will be printed?

printf("%0*d %0*d", 5,6,5,8);

00005 00008

5 8

5 6 5 8

Compilation Error

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What will be printed?

printf("%d %d", '0', '1');

0 1

48 49

'0' '1'

Compilation Error

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What will be printed if input is 4 456?

int a,b;

scanf("%d %2d", &a, &b);

printf("%d %d", a , b);

4 456

4 45

4 4

4 6

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will be printed? (underscore in option shows spaces)

printf("%-7ddvr%5d",264,32);

264____dvr___32

264__dvr_32

264_______dvr_____32

264_______32

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What will be the output if the value of 'a' is entered 0x23?

int a;

scanf("%i", &a);

printf("%x", a);

0x23

23

0

Compilation Error

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?