Verbose means using more words than necessary; wordy is the closest synonym
Q.24Easy
Select the correctly spelled word:
Answer: C
The correct spelling is OCCASION with double C and single S
Q.25Easy
Find the odd one out:
Answer: D
Elephant, Tiger, and Lion are mammals. Pigeon is a bird
Advertisement
Q.26Easy
Choose the word that best completes the sentence: The _____ of the building was impressive.
Answer: A
Architecture (noun) refers to the design/structure of the building. Fits the context correctly
Q.27Easy
What does the acronym API stand for?
Answer: A
API is a standard term in software development meaning Application Programming Interface
Q.28Easy
Which of the following is NOT a programming language?
Answer: B
HTML is a markup language, not a programming language. Python, JavaScript, and Java are programming languages
Q.29Easy
Which SQL command is used to remove data from a database?
Answer: C
DELETE is used to remove specific rows. DROP removes tables, TRUNCATE removes all rows
Q.30Easy
What does REST stand for in web development?
Answer: A
REST stands for Representational State Transfer, an architectural style for APIs
Q.31Easy
Which data structure uses LIFO principle?
Answer: B
Stack uses Last In First Out (LIFO). Queue uses FIFO (First In First Out)
Q.32Easy
What is the purpose of version control systems like Git?
Answer: B
Git is used to track code changes, manage versions, and enable team collaboration
Q.33Medium
What is the main difference between an array and a linked list?
Answer: B
Arrays allocate continuous memory blocks; linked lists use nodes scattered in memory
Q.34Easy
What does OOP stand for?
Answer: A
OOP (Object Oriented Programming) is a programming paradigm based on objects and classes
Q.35Easy
Which keyword is used to define a class in Python?
Answer: A
Python uses lowercase 'class' keyword to define classes
Q.36Easy
What does HTTP stand for?
Answer: A
HTTP is HyperText Transfer Protocol, the foundation of data communication on the web
Q.37Medium
Which of the following is NOT a cloud service model?
Answer: D
SaaS (Software as Service), PaaS (Platform as Service), IaaS (Infrastructure as Service) are main cloud models. DaaS is Data as Service but not standard
Q.38Easy
What does CSS stand for?
Answer: B
CSS (Cascading Style Sheets) is used for styling HTML elements
Q.39Medium
Which sorting algorithm has the best average time complexity?
Answer: B
Quick sort has average time complexity O(n log n), better than bubble sort O(n²)
Q.40Medium
What is encapsulation in OOP?
Answer: B
Encapsulation is bundling data (variables) and methods together while hiding implementation details