Most Important 32 Set MCQs
SET 1 1. To insert a record into a table, we use a) Insert b) Delete c) Alter d) All of the above 2. Which is a database software? a) SQL b) MYSQL c) Oracle d) All of the above 3. A topology where all the nodes are connected to each other. a) Star b) Bus c) Tree d) Mesh 4. In JavaScript, switch control structure supports a) Integer values for case b) Floating values for case c) String values for case d) All of the above 5. To use CSS codes in our HTML files, we enclose it between a) <script> and </script> b) <style> and </style> c) <head> and </head> d) None of the above 6. What would be the output? #include <stdio.h> int f(int x) { return x; } int main() { f(7); printf("result=%d",f(8)); return 0; } a) 0 b) 9 c) 2 d) 8 Note: Explanation: f(7)...