Unit 3 I/O functions

Unit 3 I/O functions

University

5 Qs

quiz-placeholder

Similar activities

C Beginner Test

C Beginner Test

KG - Professional Development

5 Qs

C Programming Quiz

C Programming Quiz

University

7 Qs

การเขียนภาษาซีเบื้องต้น

การเขียนภาษาซีเบื้องต้น

University

5 Qs

unit2

unit2

KG - Professional Development

10 Qs

CIS1101-programming practice2

CIS1101-programming practice2

University

10 Qs

ProgramC CH4

ProgramC CH4

University

10 Qs

C Programming Control Structures

C Programming Control Structures

University

10 Qs

Session 4 : Multiple Choice

Session 4 : Multiple Choice

University

10 Qs

Unit 3 I/O functions

Unit 3 I/O functions

Assessment

Quiz

Computers

University

Medium

Created by

Abhishek Pandey

Used 1+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the correct way to input an integer using scanf?

scanf("%s", &num);

scanf("%f", &num);

scanf("%d", &num);

scanf("%c", &num);

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct format specifier to print a string in C using printf?

%d

%o

%c

%s

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In the scanf function, why is the address-of operator (&) used?

To specify the type of input

To store the input in a variable

To pass the variable's memory address

To terminate the input

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the correct way to print a floating-point number with 2 decimal places in C?

printf("%.2f", num);

printf("%2f", num);

printf("%f.2", num);

printf("%2f", num);

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following format specifiers can be used to print an integer value in hexadecimal format?

%o

%i

%x

%d