SDF_BXQuiz_January03

SDF_BXQuiz_January03

University

5 Qs

quiz-placeholder

Similar activities

X-Quiz #7

X-Quiz #7

University

10 Qs

Python debugging

Python debugging

University

10 Qs

Python List

Python List

University

10 Qs

Java variables

Java variables

University

10 Qs

unit3 pointers

unit3 pointers

University

10 Qs

C - Pointers

C - Pointers

University

10 Qs

Java Control Flow statements

Java Control Flow statements

University

10 Qs

SDF_B10B12Tutorial_December26

SDF_B10B12Tutorial_December26

University

10 Qs

SDF_BXQuiz_January03

SDF_BXQuiz_January03

Assessment

Quiz

Computers

University

Hard

Created by

MR ARORA

Used 2+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

How is third element of array can be accessed using pointer notation?

*a + 3

*(a + 3)

*(*a + 3)

&(a+3)

2.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

If p is an integer pointer with a value 1000, then what will the value of p + 5 be?

1020

1005

1004

1010

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Media Image

Predict the output of the given code.

Equal

Lesser

Greater

None is correct

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Media Image

How many times loop will be printed?

0 time

1 tIme

Compilation Error

Infinite times

5.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Media Image

Predict the output of the given code.

2

5

7

Error