What does 'ubiquitous' mean?
'Ubiquitous' means being or appearing everywhere at the same time; omnipresent
Which sentence is grammatically correct?
'Each' is singular, so 'has' is correct. 'Their assignment' (singular) matches with 'each'
Find the synonym of 'EPHEMERAL':
'Ephemeral' means lasting for a very short time. 'Transient' is the closest synonym
Choose the antonym of 'VERBOSE':
'Verbose' means using or containing more words than necessary. 'Concise' is the opposite
Read the passage: 'Technology has revolutionized education. Students now have access to online courses from top universities.' What is the main idea?
The passage states that technology has revolutionized education and enabled access to courses. This is the main idea
Advertisement
Which of the following best describes SQL?
SQL (Structured Query Language) is used for managing and querying relational databases
In Java, what does 'final' keyword do when applied to a variable?
'final' keyword makes a variable immutable - once assigned, it cannot be changed
What is the output of: print(10 // 3) in Python?
The '//' operator performs floor division, which returns 3 (the integer part of 310)
Which data structure uses LIFO (Last-In-First-Out)?
A Stack uses LIFO principle where the last element added is the first one to be removed
What is the purpose of an index in a database?
An index is a database structure that improves the speed of data retrieval by creating a quick lookup mechanism
Which protocol is used for secure web communication?
HTTPS is HTTP with encryption/security using SSL/TLS protocols for secure communication
What is the main purpose of version control systems like Git?
Version control systems track code changes over time and facilitate team collaboration by managing different versions
What is polymorphism in OOP?
Polymorphism allows objects to take multiple forms - same method name can behave differently in different contexts (method overriding, overloading)
Which of the following is NOT a characteristic of Cloud Computing?
Cloud computing is characterized by remote resources, not physical hardware on-premises. All others are cloud characteristics
What does API stand for?
API stands for Application Programming Interface - a set of rules that allows different applications to communicate
In machine learning, what is the purpose of cross-validation?
Cross-validation divides data into multiple subsets to evaluate model performance and check if it generalizes well
What is the primary difference between ArrayList and LinkedList in Java?
ArrayList uses arrays (O(1) random access) while LinkedList uses nodes (O(n) random access but O(1) insertion/deletion at ends)
What is normalization in database design?
Normalization is the process of organizing data to reduce redundancy and dependency, improving database integrity
What is the main purpose of agile methodology in software development?
Agile methodology emphasizes iterative development, continuous feedback, and adaptability rather than fixed lengthy development cycles
What is an exception in programming?
An exception is an event that occurs during program execution that disrupts the normal flow, requiring special handling