#1
Which of the following is NOT a programming paradigm?
Imperative
Object-Oriented
Relational
Functional
#2
In Python, what will be the output of the following code?
x = 5
y = 2
print(x // y)
#3
What does the acronym 'SQL' stand for?
Structured Query Language
Sequential Query Language
Structured Question Language
Sequential Question Language
#4
Which data structure follows the Last In, First Out (LIFO) principle?
Queue
Stack
Linked List
Heap
#5
What is the purpose of the 'else' statement in programming?
To execute a block of code only if a condition is true
To define a default case when all other conditions are not met
To initialize a variable
To terminate the program
#6
Which of the following is a statically typed programming language?
#7
What is the purpose of a constructor in object-oriented programming?
To initialize the object's state
To perform arithmetic operations
To print output
To define class variables
#8
What is the main advantage of using version control systems like Git?
Easier debugging
Faster execution of programs
Efficient collaboration and tracking changes
Improved user interface
#9
What does the term 'polymorphism' refer to in object-oriented programming?
Ability to inherit multiple classes
Ability to have multiple constructors
Ability of a function to behave differently based on the object type
Ability to access multiple methods in a single call
#10
What does 'HTML' stand for in web development?
Hyper Text Markup Language
Hyperlink and Text Manipulation Language
High-level Text Management Language
Hyper Transfer Markup Language
#11
In C++, what keyword is used to dynamically allocate memory?
#12
What does the acronym 'API' stand for in programming?
Application Programming Interface
Application Process Indicator
Algorithmic Programming Interface
Automated Program Invocation
#13
What is the purpose of the 'break' statement in loops?
To exit the loop immediately
To skip the current iteration and move to the next
To repeat the loop indefinitely
To execute a block of code when a condition is met
#14
What is the purpose of the 'finally' block in exception handling?
To handle exceptions that are thrown in the try block
To execute a block of code regardless of whether an exception is thrown or not
To catch specific exceptions and handle them
To prevent code from being executed
#15
Which of the following is NOT a valid data type in JavaScript?