GITAM HYD     FN    DAY-2 (19 DEC 23)

GITAM HYD FN DAY-2 (19 DEC 23)

Professional Development

31 Qs

quiz-placeholder

Similar activities

Basic Computer MCQs

Basic Computer MCQs

Professional Development

28 Qs

CAREER vocabulary

CAREER vocabulary

Professional Development

27 Qs

GOING TO : Future plans

GOING TO : Future plans

3rd Grade - Professional Development

27 Qs

Python Programming 2nd Quiz

Python Programming 2nd Quiz

Professional Development

27 Qs

ARRAYS      B

ARRAYS B

Professional Development

30 Qs

RMP-2025-SOC23-Day 3-2

RMP-2025-SOC23-Day 3-2

Professional Development

30 Qs

BRSU 7

BRSU 7

Professional Development

26 Qs

KLU- CLUSTER -6 DAY-4

KLU- CLUSTER -6 DAY-4

Professional Development

30 Qs

GITAM HYD     FN    DAY-2 (19 DEC 23)

GITAM HYD FN DAY-2 (19 DEC 23)

Assessment

Quiz

English

Professional Development

Hard

Created by

CCC info@ccc.training

Used 1+ times

FREE Resource

31 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Python code? x = ['ab', 'cd'] for i in x: i.upper() print(x)
[‘ab’, ‘cd’]
[‘AB’, ‘CD’]
[None, None]
none of the mentioned

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Python code? i = 1 while True: if i%3 == 0: break print(i) i + = 1
1 2
1 2 3
error
none of the mentioned

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Python code? i = 5 while True: if i%0O11 == 0: break print(i) i += 1
5 6 7 8 9 10
5 6 7 8
5 6
error

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Python code? i = 2 while True: if i%3 == 0: break print(i) i += 2
2 4 6 8 10 …
2 4
2 3
error

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Python code? True = False while True: print(True) break
True
false
none
none of the mentioned

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Python code? i = 0 while i < 5: print(i) i += 1 if i == 3: break else: print(0)
0 1 2 0
error
0 1 2
1 2 0

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Python code? i = 0 while i < 3: print(i) i += 1 else: print(0)
0 1 2 3 0
0 1 2 0
0 1 2
error

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?