DS Lab 2

DS Lab 2

University

10 Qs

quiz-placeholder

Similar activities

Repaso Segundo Parcial - AdC 2024 - K1031

Repaso Segundo Parcial - AdC 2024 - K1031

University

10 Qs

Latsol

Latsol

10th Grade - University

10 Qs

Assesment Informatika Kelas 8 Bab Berpikir Komputasional

Assesment Informatika Kelas 8 Bab Berpikir Komputasional

8th Grade - University

11 Qs

HTML QUIZ

HTML QUIZ

6th Grade - University

13 Qs

高二資訊課補考題目

高二資訊課補考題目

11th Grade - University

10 Qs

PDM - LS01 - Quiz 2 - Selection

PDM - LS01 - Quiz 2 - Selection

University

10 Qs

Quiz Informatika

Quiz Informatika

11th Grade - University

10 Qs

Review loops

Review loops

8th Grade - University

12 Qs

DS Lab 2

DS Lab 2

Assessment

Quiz

Information Technology (IT)

University

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?