Question
In the following letter set, the second letter set is
related to the first letter set in a certain way, find the letter set from the options which is related to the third letter set in the same way. MOTR : LPSS :: CARD : ?Solution
For MOTR → LPSS, M - 1 = L O + 1 = P T - 1 = S R + 1 = S Applying the same pattern to CARD → ? C - 1 = B A + 1 = B R - 1 = Q D + 1 = E Thus, the correct answer is Option 2 (BBQE)
What is the output of the following code?
print(min(max(False,-30,-4), 12,7))
How can we set default rwx permission to all users on every file which is created on the current shell?
In a binary search tree (BST), what is the time complexity of finding the maximum element in the tree?
Â
What is the main purpose of hashing in blockchain?
Which storage technology provides high-speed, non-volatile data storage but is volatile and temporary in nature?
Which device is responsible for making routing decisions in a network?
Which network topology requires the highest amount of cabling?
What is the main purpose of subnetting?
Which of the following synchronization mechanisms is known for its "wait" and "notify" operations?
Predict the output for below code in python
X=true
Y=false
Z=false
if not X or Y :
print(“first case”)