Python Coding Contest - Level 1

Python Coding Contest - Level 1

University

25 Qs

quiz-placeholder

Similar activities

Code Junction 4

Code Junction 4

University

20 Qs

Python Control Structures

Python Control Structures

University

20 Qs

C Programming Quiz

C Programming Quiz

12th Grade - University

20 Qs

Java Programming

Java Programming

University

20 Qs

python collection

python collection

University

29 Qs

Beginning C Programming

Beginning C Programming

University

23 Qs

Programming Java

Programming Java

University

20 Qs

Evaluasi Python Tuple

Evaluasi Python Tuple

University

20 Qs

Python Coding Contest - Level 1

Python Coding Contest - Level 1

Assessment

Quiz

Computers

University

Hard

Created by

Arunkumar Saravanan

Used 9+ times

FREE Resource

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

x = 1

while True:

if x % 5 = = 0:

break

print(x)

x + = 1

What will be the output of this code?

error

2 1

0 3 1

None of these

Answer explanation

Syntax error, there should not be a space between + and =.

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which one of the following syntaxes is the correct syntax to read from a simple text file stored in ''d:\java.txt''?

Infile = open(''d:\\java.txt'', ''r'')

Infile = open(file=''d:\\\java.txt'', ''r'')

Infile = open(''d:\java.txt'',''r'')

Infile = open.file(''d:\\java.txt'',''r'')

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

x = ['XX', 'YY']  

for i in a:  

    i.lower()  

print(a)  

['xx', 'yy']

['XX', 'YY']

[XX, yy]

None of these

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

import math  

abs(math.sqrt(36)) 

Error

-6

6

6.0

Answer explanation

This function prints the square of the value.

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Study the following function:

any([5>8, 6>3, 3>1])

  

What will be the output of this code?

False

True

Invaid Code

None of these

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Study the following statement:

>>>"a"+"bc"  

What will be the output of this statement?

a+bc

abc

a bc

a

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Study the following code:

>>>"javatpoint"[5:] 

javatpoint

java

point

none of these

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?