ROUND 2 MIND MAZE

ROUND 2 MIND MAZE

University

5 Qs

quiz-placeholder

Similar activities

Business Model Canvas 2

Business Model Canvas 2

University

10 Qs

Corporate Finance

Corporate Finance

University

10 Qs

PROPERTY, PLANT AND EQUIPMENT

PROPERTY, PLANT AND EQUIPMENT

University

10 Qs

Intermediate Accounting Quiz 1

Intermediate Accounting Quiz 1

University

10 Qs

Public Speaking Quiz

Public Speaking Quiz

University

10 Qs

Quiz-1

Quiz-1

University

10 Qs

AJP-LAB-1_Quizz

AJP-LAB-1_Quizz

University

10 Qs

INCOME TAX

INCOME TAX

University - Professional Development

10 Qs

ROUND 2 MIND MAZE

ROUND 2 MIND MAZE

Assessment

Quiz

Education

University

Hard

Created by

NILESH KUMAR

Used 4+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

200

Mindspark

0

(null)

0

Mindspark

Compiler error

Answer explanation

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

a = 10, b = 9, c = -10

a = -10, b = 10, c = -10

a = -10, b = 9, c = -10

a = -10, b = 9, c = 10

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

nums = [1, 2, 3, 4, 5]

squares = [x**2 for x in nums if x % 2 == 0]

print(squares)

[1, 9, 25]

[4, 16]

[1, 4, 9, 16, 25]

[16, 4]

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

#include <stdio.h>

#define VALUE 5

int main() {

    printf("%d", VALUE * VALUE / VALUE + VALUE);

    return 0;

}

15

10

25

30

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What will be the output of the following python code?

 print(len(str(17//4)))

1

2

4

Error