DS Lab 2

DS Lab 2

University

10 Qs

quiz-placeholder

Similar activities

Pre test dan post test

Pre test dan post test

11th Grade - University

10 Qs

IMSD_Week-2_CSE-1

IMSD_Week-2_CSE-1

University

10 Qs

Kuis DDTKJ

Kuis DDTKJ

10th Grade - University

15 Qs

AverageRound

AverageRound

University

10 Qs

Chapter 3 : SQL Command

Chapter 3 : SQL Command

University

15 Qs

Introduction & Basic Program Structure

Introduction & Basic Program Structure

University

10 Qs

Nội Quy môn Tin học

Nội Quy môn Tin học

1st Grade - University

15 Qs

Test grilă - Turbo Pascal

Test grilă - Turbo Pascal

10th Grade - University

11 Qs

DS Lab 2

DS Lab 2

Assessment

Quiz

Information Technology (IT)

University

Practice Problem

Medium

Created by

Yasmin Kandil

Used 16+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

This part of code is a part of which function?
for (int i = mySize; i > pos; i--)

myArray[i] = myArray[i - 1];

insert

erase

display

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If the capacity of a static list is fixed, what happens when you try to insert into a full list?

A new array is created

Program throws an error or terminates

The last element is overwritten

Oldest elements are deleted automatically

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following best describes a static list?

A resizable sequence of elements

A fixed-size, array-based list

A linked list with dynamic allocation

A circular buffer

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which operator is typically overloaded to output objects using cout?

=

[]

<<

>>

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is true about a constructor?

It can return a value

It must have the same name as the class

It is always private

It destroys objects

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

void print(int n) {

if (n == 0) return;

cout << n << " ";

print(n - 1);

}

What will be the output for print(3)

3 2 1

1 2 3

0 1 2

infinite recursion

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What ensures that recursion terminates?

Global Variable

Base Case

General Case

Function Overloading

Create a free account and access millions of resources

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

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?