Unit 3 I/O functions

Unit 3 I/O functions

University

5 Qs

quiz-placeholder

Similar activities

PK (A) - PRE TEST 1

PK (A) - PRE TEST 1

University

10 Qs

Programming 1

Programming 1

University

10 Qs

Decision Control Structure

Decision Control Structure

University

10 Qs

Valedictory

Valedictory

University

7 Qs

c-languiz

c-languiz

University

10 Qs

Quiz Input dan Ouput C++

Quiz Input dan Ouput C++

University

10 Qs

Programming in C

Programming in C

University

10 Qs

I/O STATEMENTS IN C

I/O STATEMENTS IN C

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