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 24/487
Question 231Quiz 560
Other
Calculate the value of: 101.12 + 3.7510 × 210 – 7.A16
L03 · Data representation and number systems
Question 232Quiz 560
Data representation and computer architecture
Consider the following logic circuit implemented using universal gate. The given circuit is equivalent to which of the following logic gates? ?
L04 · Fundamentals of digital circuits
Question 233Quiz 560
Operating systems and memory
What is the default file system used in modern Windows operating systems? (default ) ?
L05 · Computer operating systems
Question 234Quiz 560
Database systems
Which of the following statements is true about the UNION operator in SQL? SQL UNION ?
L08 · Database management
Question 235Quiz 560
Programming and algorithms
What is the output of the Python program given below? ? Datalist=[52,90,67,99] for i in Datalist: if i<90: print(i) continue print("end")
L09 · Programming and algorithms with Python
Question 236Quiz 560
Other
How do user feedback and rating systems impact C2C platforms? C2C ?
L12 · ICT in business and e-commerce
Question 237Quiz 560
Programming and algorithms
What is output should be? ? <body> <h1>Popular 90's Sports Cars</h1> <?php $cars = [ "Porsche 911" => "The Porsche 911 is a legendary sports car known for its iconic design and powerful performance.", "Ferrari F355" => "The Ferrari F355 is a high -performance sports car with a mid-engine layout.", "Honda NSX" => "The Honda NSX, also known as the Acura NSX, is a Japanese sports car renowned for its handling and reliability."]; foreach ($cars as $car => $description) { echo "<h2>$car</h2><p>$description</p>";} ?> </body>
L09 · Programming and algorithms with Python
Question 238Quiz 560
Database systems
What is the attribute that cannot be use inside the image tag? image ?
L08 · Database management
Question 239Quiz 560
Database systems
What is the correct SQL code to display the rows whose age is more than 30 in the Employees table? 30?