#1
Which of the following is NOT a programming paradigm?
Relational
ExplanationRelational is not a programming paradigm; it's a database model.
#2
In Python, what will be the output of the following code?
x = 5
y = 2
print(x // y)
2
ExplanationThe double slash operator '//' performs integer division in Python, resulting in 2.
#3
What does the acronym 'SQL' stand for?
Structured Query Language
Explanation'SQL' stands for Structured Query Language, used for managing and manipulating databases.
#4
Which data structure follows the Last In, First Out (LIFO) principle?
Stack
ExplanationStack follows the Last In, First Out (LIFO) principle.
#5
What is the purpose of the 'else' statement in programming?
To define a default case when all other conditions are not met
Explanation'else' statement defines the action to be taken when the 'if' condition is false or not met.
#6
Which of the following is a statically typed programming language?
Java
ExplanationJava is statically typed, meaning variable types are determined at compile time.
#7
What is the purpose of a constructor in object-oriented programming?
To initialize the object's state
ExplanationConstructors initialize the object's state or perform setup tasks when an object is created.
#8
What is the main advantage of using version control systems like Git?
Efficient collaboration and tracking changes
ExplanationVersion control systems like Git enable efficient collaboration and track changes in code.
#9
What does the term 'polymorphism' refer to in object-oriented programming?
Ability of a function to behave differently based on the object type
ExplanationPolymorphism allows a function to behave differently based on the object type it is called with.
#10
What does 'HTML' stand for in web development?
Hyper Text Markup Language
Explanation'HTML' stands for Hyper Text Markup Language, used for creating web pages.
#11
In C++, what keyword is used to dynamically allocate memory?
new
Explanation'new' is used in C++ to allocate memory dynamically during runtime.
#12
What does the acronym 'API' stand for in programming?
Application Programming Interface
Explanation'API' stands for Application Programming Interface, facilitating interaction between software components.
#13
What is the purpose of the 'break' statement in loops?
To exit the loop immediately
Explanation'break' statement terminates the loop it is in and transfers control to the statement immediately following the loop.
#14
What is the purpose of the 'finally' block in exception handling?
To execute a block of code regardless of whether an exception is thrown or not
Explanation'finally' block in exception handling ensures a block of code executes whether an exception is thrown or not.
#15
Which of the following is NOT a valid data type in JavaScript?
list
Explanation'list' is not a valid data type in JavaScript; it should be 'array'.