Question
(?)2 + 6.113 = 27.92
– 39.03 What approximate value will come in place of the question mark (?) in the following question? (Note: You are not expected to calculate the exact value.)Solution
(?)2 + 63 = 282 – 39 (?)2 + 216 = 784 – 39 (?)2 = 745 – 216 (?)2 = 529 ? = 23
Which of the following statements about parameter passing in Python is TRUE?
In the context of asymmetric encryption, which of the following is a key feature of public-private key pairs?
Which of the following is a key challenge in handling deadlocks in an operating system?
Which OSI model layer is responsible for reliable delivery of data between devices?
Which of the following scenarios violates Boyce-Codd Normal Form (BCNF) in a relational schema?
Which of the following statements is true about deadlocks in an operating system?
- Which of the following is the primary characteristic of Infrastructure as a Service (IaaS) in cloud computing?
Which sorting algorithm is the most efficient for large datasets and uses a divide-and-conquer approach?
Which of the following best exemplifies a critical advantage of Mobile Edge Computing (MEC) over traditional cloud computing?
What is the output of the following recursive function call func(3) ?
int func ( int n) {
if (n == 0 ) return 1 ; <...