NEW
Font size
WorksheetsProgramming - Screening Test
Total questions: 15
Worksheet time: 8mins
A sequence of instructions in a computer language to get the desired result is known as :
An algorithm
A decision table
A program
None of the above
The language understood by a computer with out translation is called :
Command Language
High-level language
Assembly language
Machine Language
What is the result? 4+3%5
7
3
2
1
Order of precedence
Exponential, Parentheses, Multiplication, Division, Addition, Subtraction
Exponential, Parentheses, Division, Multiplication, Addition, Subtraction
Parentheses, Exponential, Multiplication, Division, Subtraction, Addition
Parentheses, Exponential, Multiplication, Division, Addition, Subtraction
All keywords in Python are in _________
Capitalized
Lower case
Uppercase
Either capitalized or lower case
What will be the output of the following Python statement?
"a"+"bc"
bc
abc
a
bca
What will be the output of the following Python code?
print("abc.DEF". capitalize())
Abc.def
abc.def
Abc.Def
ABC.DEF
What is output of print(math.pow(3, 2))?
9.0
9
None
Error
What is the average value of the following Python code snippet?
85.0
85.1
95.0
95.1
19%2 in python
2
17
1
0
What will be the output?
s='cppbuzz chicago'
print(s[3:5])
buzzc
pbuzz
bu
chicago
Amongst which of the following is / are the application areas of Python programming?
Web development
Game Development
Artificial Intelligence & Machine Learning
All the above mentioned
a, b = 12, 5
if a + b: print('True')
else: print('False')
True
False
What will be the output?
You rock
Not interested
blue black
None
What is the output of the below program?
print(02+0.4==0.6)
True
False
Error
Depends
