Question
(72 + 30) ÷ 6 + [{75 ÷ 25) + 6} × 2] =
? What will come in the place of question mark (?) in the given expression?Solution
ATQ, (72 + 30) ÷ 6 + [{75 ÷ 25) + 6} X 2] = ? 102 ÷ 6 + [{3 + 6} X 2] = ? 102 ÷ 6 + [9 X 2] = ? 102 ÷ 6 + 18 = ? 17 + 18 = ? ? = 35
In Go, what is the purpose of a goroutine?
The best case time complexity of selection sort?
Which of the following is used to store electrical energy in a circuit?
What is the purpose of the try-catch-finally construct?
Which of the following are TCL commands
Which of the following represents a query in tuple calculus that selects all tuples where the "Age" attribute is greater than 30?
What is the primary difference between a breadth-first search (BFS) and a depth-first search (DFS) in graph traversal?
AB`->` CD
AF`->` D
DE`->` F
C`->` G
F`->` E
G`->` A
Then which of the following is false?
What does the `
Running time T(n) where 'n' is the input size of the recursive algorithm given as : T(n) = c + T(n-1), if n > 1 ; T(n) = d if n < 1. The order of the a...