Computer Programming (Lab) - Quiz-1

Computer Programming (Lab) - Quiz-1

University

5 Qs

quiz-placeholder

Similar activities

Python Basics

Python Basics

University

10 Qs

BAB 3.1.3 INPUT & OUTPUT

BAB 3.1.3 INPUT & OUTPUT

12th Grade - University

10 Qs

Quiz 1 - Intro to C

Quiz 1 - Intro to C

University

10 Qs

QUIZ 1 - MWRE

QUIZ 1 - MWRE

University

10 Qs

unidad4

unidad4

University

10 Qs

Ice Breaker

Ice Breaker

University

10 Qs

Week3

Week3

University

10 Qs

Computer Programming (Lab) - Quiz-1

Computer Programming (Lab) - Quiz-1

Assessment

Quiz

Computers, Other

University

Medium

Created by

Muhammad Sajid

Used 8+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following is not a fundamental type is not present in C but present in C++?

int

float

bool

void

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following is C++ equivalent for scanf()?

cin

cout

print

input

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following is the correct difference between cin and scanf()?

both are the same

cin is a stream object whereas scanf() is a function

scanf() is a stream object whereas cin is a function

cin is used for printing whereas scanf() is used for reading input

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is static binding?

The process of linking the actual code with a procedural call during run-time

The process of linking the actual code with a procedural call during compile-time

The process of linking the actual code with a procedural call at any-time

All of the mentioned

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the size of a character type in C and C++?

4 and 1

1 and 4

1 and 1

4 and 4