ICT / Daily quiz archive

Question
practice.

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 25/487
Question 241Quiz 559
Other

EC16 + 8510 = ……………. Choose the answer that applies to the blank.

L03 · Data representation and number systems

Question 242Quiz 559
Other

What would happen if the Carry-In input to a Full Adder was left as 0? Carry-In 0 ?

L04 · Fundamentals of digital circuits

Question 243Quiz 559
Operating systems and memory

What is the purpose of process termination in operating systems? ?

L05 · Computer operating systems

Question 244Quiz 559
Database systems

Consider the relations below. Employee(Empid,EmpName,Address,Salary,DepID) Which answer correctly represents the SQL command to increase the salary of all employees whose DepID = "D101" by 5000. DepID = "D101" 5000 SQL

L08 · Database management

Question 245Quiz 559
Programming and algorithms

What is the output of the following Python code? ? def unique_order(lst): result = [] for item in lst: if item not in result: result.append(item) return result data = [4, 5, 6, 4, 5, 7, 6] print(unique_order(data))

L09 · Programming and algorithms with Python

Question 246Quiz 559
Other

It should be possible to get money in less than 15 seconds when withdrawing money from an ATM machine of a bank. Which of the following is correct regarding? ATM 15?

L07 · System analysis and design

Question 247Quiz 559
Web development

Which of the following answer contains the most appropriate tags to fill in the blanks? ? <html><head> <style> 1 2 </title> </head> 3 </body></html>

L10 · Web development

Question 248Quiz 559
Database systems

Which is the correct relational scheme that corresponds to following ER diagram? ER ?

L08 · Database management

Question 249Quiz 559
Database systems

Consider the following PHP code snippet and select the correct statement. PHP <?php $servername = "localhost"; $username = "root"; $password = ""; $dbname = "myDB"; // Create connection $conn = new mysqli($servername, $username, $password, $dbname); // Check connection if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error);} $sql = "SELECT * FROM users"; $result = $conn- >query($sql); if ($result- >num_rows > 0) { while($row = $result->fetch_assoc()) { echo "ID: " . $row["id"] . " - Name: " . $row["name"] . "<br>"; } } else { echo "0 results"; } $conn->close(); ?>

L08 · Database management

Question 250Quiz 559
Networking

Which of the following layers in the TCP/IP model is responsible for ensuring reliable data transmission using acknowledgment and retransmission? TCP/IP ?

L06 · Data communication and computer networking