Questão 1
Questão
What is the result of 2 + 3 * 4 in Python?
Questão 2
Questão
Which of the following is a valid variable name in Python?
Responda
-
1variable
-
my_variable
-
variable-1
-
var&ble
Questão 3
Questão
What will be the output of print("Hello" * 3) in Python?
Responda
-
HelloHelloHello
-
9
-
Hello 3 times
-
Rasengan
Questão 4
Questão
In Python, which statement is used to make a decision based on a condition?
Questão 5
Questão
How do you define a function in Python?
Responda
-
function myFunction():
-
define myFunction():
-
def myFunction():
-
func myFunction():
Questão 6
Questão
What is the correct way to call a function named my_function with two arguments in Python?
Responda
-
call my_function()
-
function my_function()
-
my_function(arguments)
-
my_function(arg1, arg2)
Questão 7
Questão
What will the following code snippet output: 5 > 3 and 10 < 20?
Questão 8
Questão
Which data type can not execute a calculation in Python?
Responda
-
string
-
integer
-
float
-
all of above
Questão 9
Questão
What does the "return" statement do in a function?
Questão 10
Questão
What is the result of range(7) in Python?
Responda
-
1,2,3,4,5,6
-
0,1,2,3,4,5,6
-
0,1,2,3,4,5,6,7
-
1,2,3,4,5,6,7
Questão 11
Questão
Which of the following program segment (s) is an example of a compound(複合的) conditional statement in Python?
Responda
-
if x > 5 or y < 10:
-
if x > 5 and y < 10:
-
if x > 5 then y < 10:
-
if x > 5
Questão 12
Questão
What is the output of print(3 == 3) in Python?
Questão 13
Questão
What is the purpose of the not keyword in Python?
Questão 14
Questão
What will be the output of the following code snippet?
Questão 15
Questão
What does the != operator signify in Python?
Responda
-
Less than or equal to
-
Not equal to
-
Greater than or equal to
-
Assignment
Questão 16
Questão
What will be the output of the following code snippet?
Responda
-
Out of range
-
In range
-
out of range
-
Zaphkiel Bet
Questão 17
Questão
What is the value of z after the execution of the following code snippet?
def my_function(x, y):
return x + y
z = my_function(3, 4) * 2
Questão 18
Questão
What is the value of z after the execution of the following code snippet?
Questão 19
Questão
What will be the output of the following code snippet?
Questão 20
Questão
What will be the output of the following code snippet?
Responda
-
3.33333
3
-
3
3.33333
-
error
-
3 / 3
3 // 3
Questão 21
Questão
What is the result of True + True in Python?
Questão 22
Questão
Are you ready for the test?
Responda
-
Absolute Cinema
-
Yes
-
No
-
Will Win
Questão 23
Questão
What will be the output of the following code snippet?
Responda
-
2
3
-
2
2.66666
-
8
3
-
2.66666
2
Questão 24
Questão
What will be the output of the following code snippet?
Questão 25
Questão
What is the value of the result variable in the following code snippet?
Questão 26
Questão
What does the += operator do in Python?
Responda
-
Subtracts the right operand from the left operand
-
Multiplies the left operand by the right operand
-
Adds the right operand to the left operand
-
None of the above
Questão 27
Questão
What will be the output of the following code snippet?
Questão 28
Questão
What is the result of (True or False and True) in Python?
Responda
-
True
-
False
-
Error
-
None of the above
Questão 29
Questão
What does the // operator do in Python?
Questão 30
Questão
the display output of
print (f" Answer = { name } ")
is equivalent to
print ("Answer = name")
Questão 31
Questão
Write a Python program segment to ask "the user to input their test mark" and store it in the test variable as a float type. The programme should ask the user a question "What is your test result? >"
[blank_start]test[blank_end] = [blank_start]float([blank_end][blank_start]input([blank_end][blank_start]"What is your test result? >"[blank_end][blank_start]))[blank_end]
Responda
-
test
-
text
-
float(
-
int(
-
str(
-
input(
-
output(
-
"What is your test result? >"
-
"What is your test result?"
-
"What is your text result? >"
-
"what is your text result? >"
-
"What is your text result?>"
-
))
Questão 32
Questão
The Data type of variable "Future" is String
SYNY = 1
Future = SYNY == "True"
Questão 33
Questão
Which of the following variable names uses the snake case approach?
Responda
-
3711ModuleCode
-
SeeYouNextYear
-
HKIIT_Modules
-
if
Questão 34
Questão
Which of the following variable names uses the camel case approach?
Responda
-
seeYouNextYear
-
HKIIT_Modules
-
3711moduleCode
-
____main____
Questão 35
Questão
Which of the following variable names uses the Pascal Case approach?
Responda
-
See You Next Year
-
See_You_Next_Year
-
SeeYouNextYear
-
ifelse
Questão 36
Questão
What is the correct way to declare a variable in Python?
Responda
-
create variable mark is 100;
-
x <- 100
-
dim Sum As Integer = "HarGow";
-
SeeYouNextYear = "Higher Diploma"
Questão 37
Questão
What is the value of the variable Result stored when the following Python segment is executed?
Questão 38
Questão
Which of the following Python segments is/are able to execute the below function CallMe()?
Questão 39
Questão
Which of the following Python segments able to execute the provided function CallMe() and display the result
21850000 Call Me
Questão 40
Questão
Which operator is used to calculate reminders in Python?
Questão 41
Questão
Which of the following Python code is a correct answer to the following expression?
Expression: 73% of 467
Responda
-
467 * 0.73
-
467 // 0.73
-
467 * 73%
-
467 // 73/100
Questão 42
Questão
Which of the following is/are a software development stage?
Responda
-
Planning
-
Analysis
-
Design
-
Implementation
-
Katon Goukakyuu no jutsu
Questão 43
Questão
What is the output of the following program segment?
print(10*(3.7 + 2.3))
Questão 44
Questão
What is the displayed result of the Python program segment?
Responda
-
GoodGood Bye
-
=========
=========
GoodGood Bye
-
=========
GoodGood Bye
=========
-
=========
Jutsushiki jyunten "Ao", Jutsushiki hanten "Aka"
=========
Questão 45
Questão
What is the python expression that can represent the following mathematics equation?
Responda
-
(a + b) ** (5/2)
-
(a + b) ** (2/5)
-
(a + b) ^ (2/5)
-
(a + b) ^ (5/2)
Questão 46
Questão
Choose all of the following Python expression(s) that are possible to represent the displayed mathematics equation.
Questão 47
Questão
What is the displayed result when the following Python code executed?
Responda
-
GGWP
WPGG
-
WPGG
GGWP
-
Error
-
GGWP
-
WPGG
Questão 48
Questão
What will be the output of the following code segnment?
Questão 49
Questão
What will be the output of the following code segment?
Questão 50
Questão
What happens if a function in Python does not have a return statement?
Questão 51
Questão
Identify the data type of the following variables.
Responda
-
string
-
float
-
integer
-
float
-
boolean