Search Header Logo

References in C++

Authored by RAGHUVEER KASYAP

Professional Development

Professional Development

Used 5+ times

References in C++
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

13 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statement is true about the references?

Defining a reference variable allocates a separate memory.

Reference variable can point to any variable once it is initialized

Reference to an object creates a copy

Reference variable must be initialized to NULL

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A reference variable must be initialized to null

True

False

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

True Or False

A reference variable can point to any variable once initialized

True

False

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A reference variable must be initialized to ___________

null

0

variable

address of a variable

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the below code snippet?

int a=10;

int b=20;

int &ref=a;

int *ptr=&b;

ref += *ptr;

ref++;

cout<<a<<"\t"<<b;

10 20

20 10

31 20

20 31

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the below code snippet?

int a=1000;

float &b=a;

b++;

cout<<a;

1000

1001

Prints the address of the variable a

Compilation error

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A friend function can be declared under which access specifier

Private

Protected

Public

All

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?

Discover more resources for Professional Development