CAT 2 Quiz

CAT 2 Quiz

University

10 Qs

quiz-placeholder

Similar activities

Round 2 Debug-The-Code

Round 2 Debug-The-Code

University

15 Qs

Java Arrays

Java Arrays

University

10 Qs

CSSE Quiz Day2

CSSE Quiz Day2

University

12 Qs

JAVA UNIT 1 PART 2

JAVA UNIT 1 PART 2

University

15 Qs

1st session

1st session

University

15 Qs

JAVA FINAL QUIZ FOR ASSESSMENT

JAVA FINAL QUIZ FOR ASSESSMENT

University

15 Qs

Python-Basic

Python-Basic

3rd Grade - University

15 Qs

Python if statement

Python if statement

University

15 Qs

CAT 2 Quiz

CAT 2 Quiz

Assessment

Quiz

Computers

University

Medium

Created by

A M Abirami

Used 2+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which is the correct operator for power(xy) ?

x ** y

x ^ y

x ^^ y

x * y

2.

MULTIPLE CHOICE QUESTION

2 mins • 2 pts

x = 5

y = 2

print(x / y)

print(x // y)

print(x % y)

print(x ^ y)

2.5

2

1

7

2

2.5

1

7

2.5

2

7

1

2.5

2

1

0

3.

MULTIPLE CHOICE QUESTION

2 mins • 2 pts

str = 'hello'

print(str[:2])

print(str[2:])

print(str[2:4])

print(str[-1])

he

llo

ll

o

he

llo

ll

h

he

llo

llo

o

he

llo

ll

oellh

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What error occurs when you execute?

rose = lotus

TypeError

NameError

SyntaxError

ValueError

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What error occurs when you execute?

rose = 'lotus'

NameError

TypeError

No Error

SyntaxError

6.

MULTIPLE CHOICE QUESTION

2 mins • 2 pts

list = [ 1, '2', [3]]

print(type(list))

print(type(list[0]))

print(type(list[1]))

print(type(list[2]))

<class 'list'>

<class 'int'>

<class 'str'>

<class 'list'>

<class 'list'>

<class 'int'>

<class 'int'>

<class 'list'>

list

int

str

list

Error

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the value of the expression:

float(4+int(2.39)%2)

4.0

4

5

5.0

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?