Question
In a certain code language, ‘yn fd sd’ means ‘when
oil is’, ‘sd nk yb’ means ‘poured oil tension’, ‘fd ts nk’ means ‘when decreases poured’, which of the following means ‘tension’ in that code language?Solution
‘yn fd sd’ - ‘when oil is’…..(i) ‘sd nk yb’ - ‘poured oil tension’ ….(ii) ‘fd ts nk’ - ‘when decreases poured’…..(iii) From (i) & (ii) we get ‘sd’’ means ‘oil’. From (ii) & (iii) we get ‘nk’ means ‘poured’. Thus, in (ii) statement ‘yb’ means ‘tension’. Â
In Python, what will be the output of the following code snippet, considering scope rules?
x = 5Â Â Â Â Â Â Â Â Â Â Â Â Â Â
Â
Which of the following is NOT a characteristic of a minimum spanning tree (MST) in a connected, undirected graph?
What is the primary purpose of a B+ Tree in a database management system?
Which of the following represents the Preorder Traversal of the binary tree given below?
       A       / \      B   C   ...Which of the following data structures is best suited for implementing a LIFO (Last In, First Out) mechanism?
Which data structure is used in BFS traversal of graphs?
Which of the following is the most critical success factor for the implementation of a Decision Support System (DSS) within an organization?
What is the purpose of the keys() method in a dictionary?
If an algorithm takes $5n²  + 3n + 10$ steps for an input of size n, its Big O notation would be:
Consider the following stack operations. What will be the content of the stack after executing all the operations?
Stackstack = new Stack...