C++ Programming Quiz

C++ Programming Quiz

University

10 Qs

quiz-placeholder

Similar activities

C++ Basics

C++ Basics

University

12 Qs

Basic C Knowledge Exercise

Basic C Knowledge Exercise

University

10 Qs

Day 4 Activity

Day 4 Activity

University

10 Qs

QUIZ 1: REVIEW ON C

QUIZ 1: REVIEW ON C

University

15 Qs

PYTHON QUIZ 1

PYTHON QUIZ 1

University

10 Qs

Initiation à la programmation 3 : tests et conditions

Initiation à la programmation 3 : tests et conditions

University

10 Qs

Programming for Problem Solving

Programming for Problem Solving

University

10 Qs

Quiz 2

Quiz 2

University

12 Qs

C++ Programming Quiz

C++ Programming Quiz

Assessment

Quiz

Computers

University

Easy

Created by

Mr. vikas

Used 3+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following is the correct way to declare a constant in C++?

int const x = 10;

const int x = 10;

#define x 10

All of the above

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the default access specifier for members of a class in C++?

public

private

protected

internal

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which operator is used to resolve the scope of a class or namespace in C++?

->

.

::

:

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the output of the following code? int a = 5, b = 2; cout << a / b;

2.5

2

3

Error

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which feature of OOP allows the same function to behave differently on different classes?

Encapsulation

Inheritance

Polymorphism

Abstraction

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following is a correct syntax to create a pointer in C++?

int *ptr;

int &ptr;

int ptr*;

pointer int ptr;

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the return type of the main() function in C++?

void

int

float

char

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?