Question
In the question, assuming the given statements to be
true, find which of the conclusion (s) among given two conclusions is /are definitely true and then give your answer accordingly. Statements: S > T = U ≥ V; W ≤ X = K; K = R ≥ S Conclusions: I. V < K II. W < SSolution
W ≤ X = K = R ≥ S > T = U ≥ V            K > V. Hence conclusion I is true.
W ≤ X = K = R ≥ S > T = U ≥ V              No relationship can be established between W and S. Hence conclusion II does not follow.
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”)