#1
Which of the following programming languages is known for its simplicity and readability?
Python
ExplanationPython is known for its simplicity and readability, making it a popular choice for beginners and experienced developers alike.
#2
Which data structure uses the 'last in, first out' (LIFO) principle?
Stack
ExplanationA stack is a data structure that follows the Last In, First Out (LIFO) principle, where the last element added is the first one to be removed.
#3
What does CSS stand for in web development?
Cascading Style Sheets
ExplanationCSS stands for Cascading Style Sheets, used to define the presentation and layout of web pages.
#4
In the context of databases, what does SQL stand for?
Structured Query Language
ExplanationSQL stands for Structured Query Language, used for managing and manipulating relational databases.
#5
What is the purpose of the 'padding' property in CSS?
To add space around an element's content
ExplanationThe 'padding' property in CSS is used to add space around the content of an element, inside its border.
#6
In object-oriented programming, what does the term 'inheritance' refer to?
The process of creating a new class from an existing class
ExplanationInheritance in OOP refers to the process of creating a new class based on an existing class, inheriting its attributes and behaviors.
#7
What is the time complexity of a binary search algorithm?
O(log n)
ExplanationThe time complexity of a binary search algorithm is O(log n), indicating that it grows logarithmically with the size of the input data.
#8
Which of the following is NOT a primitive data type in JavaScript?
Array
ExplanationArray is not a primitive data type in JavaScript; it's an object that can hold multiple values of various data types.
#9
What is the purpose of the 'git checkout' command in Git?
To switch between branches
ExplanationThe 'git checkout' command in Git is used to switch between different branches in a repository.
#10
What is the purpose of a 'try...catch' block in programming?
To handle exceptions
ExplanationA 'try...catch' block in programming is used to handle exceptions or errors that may occur during the execution of code.
#11
Which of the following sorting algorithms has the best worst-case time complexity?
Merge Sort
ExplanationMerge Sort has the best worst-case time complexity among sorting algorithms, with O(n log n) complexity.
#12
Which of the following is NOT a valid HTTP status code?
303 See Other
Explanation303 See Other is not a valid HTTP status code; it's used for redirection indicating that the resource resides elsewhere.