Question
Which of the following pairs is INCORRECTLY matched?
I) Umling La Pass โ Connects Leh and Pangong Lake II) Chang La Pass โ Connects Ladakh and Tibet III) Pensi La Pass โ Connects Manali and Leh Select the correct answer using the code given below:Solution
Pensi La does not connect Manali and Leh; it connects the Suru Valley and Zaskar Valley in Ladakh. Umling La does not connect Leh and Pangong Lake but is known as one of the highest motorable passes in the world located in Ladakh.
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...