Thousands of extracted MCQs, lesson mapped and connected to the original question-and-answer PDF series.
Original PDFs remain the authority
4,864Extracted questions
582Quiz sets
4,737Lesson mapped
1—583Quiz range
Practice set4,864 matches · Page 41/487
Question 401Quiz 543
Operating systems and memory
A process running on the system logs the following error: "Execution time limit exceeded: Process will terminate." “” Which component enforces this termination? ?
L05 · Computer operating systems
Question 402Quiz 543
Database systems
In which situation is a CHECK constraint most useful in a customer database? CHECK ?
L08 · Database management
Question 403Quiz 543
Programming and algorithms
What will be printed by the following Python code if the input is 3, 4, 6 and -2 ? 3, 4, 6 -2 ? counter = 0 number = int(input("Enter a number: ")) while number > 0: counter += 1 number = int(input("Enter another number: ")) print(counter)
L09 · Programming and algorithms with Python
Question 404Quiz 543
Programming and algorithms
What will be the output, if 1, 0, and 3 are given as the input? 1, 0, 3 ? list=input().split(',') for num in list: result=1 for i in range(1, int(num) + 1): result *= i print(f"The result of {num} is {result}") 1) The The The result result result of of of 1 0 3 is is is 1 1 6 2) The The The result result result of of of 1 0 3 is is is 1 0 6 3) The result of 1 is 1 The result of 0 is 1 The result of 3 is 3 4) The The result result of of 1 0 is is 1 0 The The result result of of 1 0 is is 1 1 The result of 3 is 3 The result of 3 is 9
L09 · Programming and algorithms with Python
Question 405Quiz 543
Programming and algorithms
Consider the following statement(s) regarding Black Box Testing. What is/are correct? ? A. Black box testing focuses on the internal code structure of a program. B. Testers use black box testing to evaluate the functionality of the software. C. Black box testing is performed without knowledge of the internal code.
L09 · Programming and algorithms with Python
Question 406Quiz 543
Programming and algorithms
Consider the following PHP code. PHP <?php $fullname = "Bandara Kumburegama"; $initial_letter = $fullname[0]; $initial_letter2 = $fullname[8]; print $initial_letter." ".$initial_letter2; ?> What is the output of the above code? / ?
L09 · Programming and algorithms with Python
Question 407Quiz 543
Web development
Which of the following is a valid CSS rule? CSS ?
L10 · Web development
Question 408Quiz 543
Database systems
Which database model stores data in a single table without any relationships between records? ?
L08 · Database management
Question 409Quiz 542
Other
5E16+……… =168+……… Select the option that contains the answers that suit the blanks in the above calculation respectively.
L03 · Data representation and number systems
Question 410Quiz 542
Other
What is the maximum possible value of the Carry Out in a full adder? (Cout) ?