Question
Evaluate the following statements regarding the β
Dustlik 2024 β joint military exercise between India and Uzbekistan : I . The exercise aims to enhance cooperation and strengthen future military ties between the two nations . II . It includes training programs that cover naval operations in the Indian Ocean . III . The previous edition focused on tactical exercises and joint operations .Solution
Statement I is correct as the exercise aims to enhance military cooperation and ties, and III is correct as it focuses on tactical exercises and joint operations . Statement II is incorrect as the training covers joint counter - terrorism operations, not naval operations .
Which of the following is an example of a NoSQL database?
Which SQL command is used to remove a table from the database?
What will be the output of the following Python code:
a=[1,2,3,4,5,6]
print(a[-1],a[-1:],a[:-1])
When implementing a `Graph` traversal algorithm like Depth-First Search (DFS) recursively, what is the primary control flow mechanism that manages the o...
A programmer is trying to debug an issue where an `ArrayList` (or equivalent dynamic array) in their Java/Python code unexpectedly throws anΒ `IndexOut...
Consider the following pseudo-code:Β
Β ```
Β Β function calculate(arr):
Β Β Β Β sum = 0
Β Β Β Β for i from 0 to l...
An SQL `VIEW` is a:
Which of the following is used to enforce referential integrity?
In a relational schema, which normal form eliminates transitive dependencies (i.e., non-prime attribute depends on another non-prime attribute)?
Consider a scenario in an OOP application where a `NullPointerException` (or equivalent) occurs when trying to access a member of an object. What is the...