CodeMavarick

CodeMavarick

University

20 Qs

quiz-placeholder

Similar activities

Expresión Gráfica

Expresión Gráfica

University

20 Qs

Impuesto a la Renta

Impuesto a la Renta

University

16 Qs

Literatura 1-2

Literatura 1-2

12th Grade - University

20 Qs

Redacción de Textos Técnicos

Redacción de Textos Técnicos

University

19 Qs

Clasificación de residuos

Clasificación de residuos

University - Professional Development

20 Qs

EXAMEN SEGUNDO PARCIAL ADMI NISTRACIÓN

EXAMEN SEGUNDO PARCIAL ADMI NISTRACIÓN

University

15 Qs

Las Cortes Generales: Estructura, organización y funcionamiento

Las Cortes Generales: Estructura, organización y funcionamiento

University

20 Qs

Sals of Goods Act 1930

Sals of Goods Act 1930

University

20 Qs

CodeMavarick

CodeMavarick

Assessment

Quiz

Other

University

Practice Problem

Hard

Created by

Harshit Nainwal

Used 5+ times

FREE Resource

AI

Enhance your content in a minute

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

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Question: What will be the output of the following code snippet?

int arr[5] = {1, 2, 3, 4, 5};

printf("%d", arr[5]);

5

0

Garbage Value

Compilation Error

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the time complexity of accessing an element in an array by its index?

O(1)

O(n)

O(log n)

O(n^2)

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the time complexity of the following code?

for(int i = 0; i < n; i++) {

for(int j = 0; j < n; j++) {

printf("Hello");

} }

O(n)

O(n log n)

O(n^2)

O(log n)

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the following code do?

struct Node {

int data;

struct Node* next; };

struct Node* head = NULL;

head->data = 10;

Creates a node with data 10

Causes a segmentation fault

Initializes an empty linked list

Links two nodes

Answer explanation

  • head is NULL, so dereferencing it (head->data) causes a segmentation fault.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the time complexity of inserting a node at the end of a singly linked list with no tail pointer?

O(1)

O(n)

O(n log n)

O(n^2)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Spot the error:

struct Node* newNode = (struct Node*)malloc(sizeof(struct Node));

newNode->data = 5;

newNode->next = newNode;

No error

Creates a circular reference

Missing free() call

Incorrect malloc syntax

Answer explanation

  1. Setting newNode->next = newNode creates a circular linked list, which may not be intended.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many moves are required to solve the Tower of Hanoi puzzle with 5 disks?

32

16

31

25

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?