Unit 3 I/O functions

Unit 3 I/O functions

University

5 Qs

quiz-placeholder

Similar activities

MindSpace Computers C Quiz-1 2023

MindSpace Computers C Quiz-1 2023

University

10 Qs

ENT110 C Programming Quiz2

ENT110 C Programming Quiz2

University

10 Qs

FINAL ROUND

FINAL ROUND

University

10 Qs

Expression in C Programming

Expression in C Programming

University

10 Qs

Programming

Programming

University

10 Qs

เกมส์ เรื่อง โครงสร้างโปรแกรมภาษาซี

เกมส์ เรื่อง โครงสร้างโปรแกรมภาษาซี

KG - University

8 Qs

Informatika x

Informatika x

University

10 Qs

PROGRAMACION

PROGRAMACION

9th Grade - 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