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.
WI-FI uses
Relational Algebra is
Which network layer protocol provides a reliable, connection-oriented delivery of packets?
In natural language processing (NLP), what does TF-IDF stand for?
How many dimensions are selected in Slice operation?
Node.js is built on which JavaScript engine?
Which of the following is NOT a method for handling deadlocks?
Which of the following is a basic equation used in the COCOMO model?
Which of the following is not a limitation of binary search algorithm?
Below code will give what result for f(3)
f(int x)
{
If(x
Return;
f(x-1);
printf(“%d”, x);
f(n-1);
}