Jinnah Test Series is very useful website for all education institutes of Punjab ,Not only educational institutes but also students can use it . Jinnah Test series has all kind of tests, Notes , Guess Papers and Online Tests of Matriculation
What does conditional logic allow a program to do?
Repeat a set of instructions
Make decisions based on certain conditions
Store data in variables
Execute all lines of code at once
Which symbol is used for "equal to" in conditional logic?
if x > 5: print("Greater") else: print("Smaller") 3. What is the output of the following code? python Copy code x = 10 if x > 5: print("Greater") else: print("Smaller")
=
==
!=
>=
Which of the following is an example of a conditional statement in Python?
for
if
print
input
What does the else statement represent in conditional logic?
Another condition to check
The default action if all conditions are false
The end of the program
A way to store values
What is the purpose of the elif statement in Python?
To check multiple conditions
To repeat a block of code
To define functions
To store data
Which of the following operators is used to check "greater than or equal to"?
==
>=
<=
!=
Which of the following is a logical operator?
+
and
=
%
What is the purpose of indentation in Python's conditional logic?
To add comments
To group statements under a condition
To ignore errors
To write faster code
What is the primary purpose of conditional logic in programming?
To define variables
To execute specific code blocks based on certain conditions
To repeat a block of code multiple times
To terminate a program immediately
In an if-else statement, what happens if the condition in the if block evaluates to false?
The program exits immediately
The code in the else block is executed (if present)
The program skips the entire conditional structure
Post a Comment
0 Comments