What is the angle between the hour hand and minute hand at 3:15?
A 6.5° B 7.5° C 8.5° D 9.5°
At 3:15, minute hand at 3 (90°), hour hand at 3 + 60 15 × 30 = 97.5°. Difference = 7.5°
All cats are animals. All animals breathe. Therefore:
A All breathe are animals B All cats breathe C Some animals are cats D Some cats don't breathe
This is deductive reasoning. If cats are animals and animals breathe, then cats must breathe
Statement: Some doctors are teachers. All teachers are educated. Conclusion: Some doctors are educated.
A Follows B Does not follow C Partially follows D Cannot be determined
Since some doctors are teachers, and all teachers are educated, some doctors must be educated
If ROSE is coded as 6918, then NOSE is coded as:
A 1918 B 1968 C 1916 D 1915
R=6, O=9, S=1, E=8. So NOSE = 1-9-1-8 = 1918
If ORANGE is to FRUIT, then SHARK is to:
A AQUATIC B ANIMAL C FISH D OCEAN
Orange is a type of fruit. Shark is a type of fish. This is a classification relationship
Look at this sequence: AZ, BY, CX, DW, ?
A EV B EW C FV D EU
First letter advances (A→B→C→D→E), second letter reverses (Z→Y→X→W→V)
Which word is the odd one out?
A Triangle B Pentagon C Hexagon D Circle
Triangle, Pentagon, and Hexagon are polygons with straight sides. Circle is curved
Rearrange: PLUOITCMAC. What word is formed?
A COMPLAINT B COMPLIANT C COMMUNION D COMPUTE
PLUOITCMAC rearranged = COMPLIANT (meaning willing/agreeable)
Choose the word closest in meaning to VERBOSE:
A Brief B Wordy C Silent D Quiet
Verbose means using more words than necessary; wordy is the closest synonym
Select the correctly spelled word:
A Occassion B Occurence C Occasion D Ocassion
The correct spelling is OCCASION with double C and single S
Find the odd one out:
A Elephant B Tiger C Lion D Pigeon
Elephant, Tiger, and Lion are mammals. Pigeon is a bird
Choose the word that best completes the sentence: The _____ of the building was impressive.
A Architecture B Architect C Architectural D Architecting
Architecture (noun) refers to the design/structure of the building. Fits the context correctly
What does the acronym API stand for?
A Application Programming Interface B Application Process Integration C Applied Programming Implementation D Automated Process Interface
API is a standard term in software development meaning Application Programming Interface
Which of the following is NOT a programming language?
A Python B HTML C JavaScript D Java
HTML is a markup language, not a programming language. Python, JavaScript, and Java are programming languages
Which SQL command is used to remove data from a database?
A REMOVE B DROP C DELETE D TRUNCATE
DELETE is used to remove specific rows. DROP removes tables, TRUNCATE removes all rows
What does REST stand for in web development?
A Representational State Transfer B Remote Exchange State Transfer C Relational Execution State Transfer D Resource Exchange System Transfer
REST stands for Representational State Transfer, an architectural style for APIs
Which data structure uses LIFO principle?
A Queue B Stack C Array D Tree
Stack uses Last In First Out (LIFO). Queue uses FIFO (First In First Out)
What is the purpose of version control systems like Git?
A To compile code B To track changes and manage collaboration C To execute programs D To debug code
Git is used to track code changes, manage versions, and enable team collaboration
What is the main difference between an array and a linked list?
A Arrays are slower B Arrays use continuous memory; linked lists use scattered memory C Linked lists can only store numbers D Arrays are always smaller
Arrays allocate continuous memory blocks; linked lists use nodes scattered in memory
What does OOP stand for?
A Object Oriented Programming B Operating Order Protocol C Open Online Platform D Output Oriented Programming
OOP (Object Oriented Programming) is a programming paradigm based on objects and classes