Printf Scanf Quiz

Printf Scanf Quiz

Professional Development

10 Qs

quiz-placeholder

Similar activities

Lenguaje de programación C 3BGU

Lenguaje de programación C 3BGU

Professional Development

10 Qs

Day 3 C Programming quiz

Day 3 C Programming quiz

Professional Development

10 Qs

C Code Master lvl 2 A

C Code Master lvl 2 A

Professional Development

10 Qs

Java Strings and lops

Java Strings and lops

Professional Development

10 Qs

C Module 1 Quiz

C Module 1 Quiz

Professional Development

15 Qs

Introduction

Introduction

Professional Development

10 Qs

Pre-Placement Training C Programming Basic

Pre-Placement Training C Programming Basic

Professional Development

15 Qs

SLG IPC144 Week 11

SLG IPC144 Week 11

Professional Development

15 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?