Showing 421–430 of 654 questions
Which word doesn't belong in this group: Apple, Banana, Carrot, Orange
A
Apple
B
Banana
C
Carrot
D
Orange
Correct Answer:
C. Carrot
Explanation:
Apple, Banana, and Orange are fruits. Carrot is a vegetable
Choose the word that is most similar in meaning to 'Benevolent':
A
Malicious
B
Generous
C
Selfish
D
Greedy
Correct Answer:
B. Generous
Explanation:
Benevolent means kind and generous. Generous is the closest synonym
Find the word that is opposite in meaning to 'Ambiguous':
A
Clear
B
Vague
C
Uncertain
D
Obscure
Explanation:
Ambiguous means unclear or doubtful. Clear is the opposite meaning
Complete the sentence: 'Despite his illness, he ___ to finish the project on time.'
A
manage
B
managed
C
managing
D
manages
Correct Answer:
B. managed
Explanation:
The sentence requires past tense 'managed' to be grammatically correct
Identify the error in: 'The team were playing good football yesterday.'
A
were playing
B
good football
C
yesterday
D
No error
Correct Answer:
B. good football
Explanation:
'Good' should be 'well' when describing how something is done (adverb usage)
What does the acronym 'API' stand for?
A
Application Programming Interface
B
Advanced Protocol Integration
C
Application Process Identifier
D
Automated Programming Implementation
Correct Answer:
A. Application Programming Interface
Explanation:
API stands for Application Programming Interface, a set of rules for software interaction
Which of these is NOT a programming language?
A
Java
B
Python
C
HTML
D
JavaScript
Explanation:
HTML is a markup language, not a programming language. Others are programming languages
In OOPS, what does 'inheritance' allow you to do?
A
Create multiple objects
B
Derive a new class from an existing class
C
Combine two classes
D
Delete a class
Correct Answer:
B. Derive a new class from an existing class
Explanation:
Inheritance allows a new class to be derived from an existing class, inheriting its properties and methods
What is the correct SQL syntax to select all records from a table named 'Students'?
A
SELECT * TABLE Students;
B
SELECT * FROM Students;
C
FETCH * FROM Students;
D
GET * FROM Students;
Correct Answer:
B. SELECT * FROM Students;
Explanation:
The correct SQL syntax is 'SELECT * FROM table_name;'
What will be the output of: print(5 // 2) in Python?
Explanation:
The // operator is floor division. 5 // 2 = 2 (integer division, rounded down)