Skip to main content

MySQL MCQs Part 2

 Here are 10 more MySQL MCQs for UGC NET, SET, EMRS, KVS, ISRO, and Assistant Professor exams.


11. What is the purpose of the HAVING clause in MySQL?

A) It filters records before grouping
B) It filters records after grouping
C) It is used to rename columns
D) It is used to join tables

Answer: B) It filters records after grouping


12. Which MySQL function is used to count the number of rows in a table?

A) COUNT()
B) SUM()
C) TOTAL()
D) NUMBER()

Answer: A) COUNT()


13. What does the FOREIGN KEY constraint do in MySQL?

A) Ensures unique values in a column
B) Links a column to a primary key in another table
C) Automatically increments a column value
D) Restricts NULL values in a column

Answer: B) Links a column to a primary key in another table


14. Which command is used to create a backup of a MySQL database?

A) BACKUP DATABASE
B) SAVE DATABASE
C) mysqldump
D) EXPORT DATABASE

Answer: C) mysqldump


15. Which MySQL JOIN returns only matching rows from both tables?

A) LEFT JOIN
B) RIGHT JOIN
C) INNER JOIN
D) FULL JOIN

Answer: C) INNER JOIN


16. How can you change the structure of an existing MySQL table?

A) MODIFY TABLE
B) ALTER TABLE
C) UPDATE TABLE
D) CHANGE TABLE

Answer: B) ALTER TABLE


17. What is the maximum length of a VARCHAR column in MySQL?

A) 255
B) 512
C) 65535
D) 16384

Answer: C) 65535 (depends on row size)


18. What will happen if you use the DROP TABLE command in MySQL?

A) It will remove the table but keep the data
B) It will delete all rows but keep the table structure
C) It will permanently remove the table and its data
D) It will disable the table temporarily

Answer: C) It will permanently remove the table and its data


19. Which MySQL statement is used to retrieve unique records from a table?

A) SELECT UNIQUE
B) SELECT DISTINCT
C) SELECT FILTER
D) SELECT DIFFERENT

Answer: B) SELECT DISTINCT


20. What does the GROUP BY clause do in MySQL?

A) It sorts the data in ascending order
B) It groups records that have the same values in specified columns
C) It deletes duplicate rows from a table
D) It updates multiple records at once

Answer: B) It groups records that have the same values in specified columns



Comments

Popular posts from this blog

Top 5 Safe Chat Apps for Kids with Parental Controls

Now a days kids are growing up with technology at their fingertips. While communication apps help children stay connected with family and friends, safety remains a top concern for parents. Unregulated platforms can expose children to inappropriate content, online predators, and cyberbullying. That’s why choosing a kid-friendly chat app with parental controls is essential. To help parents find the best options, we’ve compiled a list of the top five safest chat apps for kids that offer safe and controlled environment. 1. Messenger Kids (By Meta) Best for: Safe video calls and text messaging with parental supervision Features: Parents approve all contacts No ads or in-app purchases Fun filters, stickers, and games Monitored messaging and activity reports Why It’s Safe: Messenger Kids is designed for children under 13 and requires parental approval for every contact. Parents can monitor chats and control screen time through the Parent Dashboard. Download Messenger Kids 2...

10 Distance Vector and Link-State Routing MCQ

  10 multiple-choice questions  on  Distance Vector and Link-State Routing with explanations, useful for  UGC NET, SET, GATE, ISRO, and other competitive exams . Question 1: Basic Concept of Distance Vector Routing Q1: In a distance vector routing protocol, how do routers share routing information? A) By flooding the entire network with routing updates B) By periodically exchanging routing tables with their immediate neighbors C) By using a link-state database to determine the shortest path D) By dynamically updating paths based on link failure reports Answer: B) By periodically exchanging routing tables with their immediate neighbors Explanation: In Distance Vector Routing, routers share their routing tables with neighbors at regular intervals, leading to a simple but slow convergence mechanism. Question 2: Example of Distance Vector Routing Protocol Q2: Which of the following is an example of a Distance Vector routing protocol? A) OSPF ...

10 Routing Protocol MCQ

10 multiple-choice questions on Routing protocol s  with explanations, useful for UGC NET, SET, GATE, ISRO, and other competitive exams . Question 1: Purpose of Routing Protocols Q1: What is the primary purpose of a routing protocol? A) To assign IP addresses to devices B) To determine the best path for data packets to reach their destination C) To encrypt data during transmission D) To physically connect different networks Answer: B) To determine the best path for data packets to reach their destination Explanation: Routing protocols help routers determine the most efficient path for data transmission across a network, ensuring fast and reliable communication. Question 2: Classification of Routing Protocols Q2: Routing protocols can be broadly classified into which two main categories? A) TCP and UDP B) Distance Vector and Link-State C) IPv4 and IPv6 D) Static and Dynamic Answer: B) Distance Vector and Link-State Explanation: Routing prot...