Question
As the rest of the world tighten (1)/its monetary
policy, we will (2)/have to follow suit or suffer (3)/a sharper devaluation of our currency (4). Read each sentence to find out whether there is any grammatical error in it. The error, if any, will be in one part of the sentence. Mark the part with the error as your answer. If there is no error, mark ‘No error’ as your answer (Ignore the errors of punctuation, if any).Solution
You use a singular verb after the rest when referring to an uncountable noun. As the rest of the world tightens its monetary policy, we will have to follow suit or suffer a sharper devaluation of our currency.
An algorithm has a time complexity of O(N² ). If the input size N doubles, how does the execution time approximately change?
Consider the following C code snippet:
  #include
  int factorial(int n) {
    if (n == 0) {
  ...
Which of the following best describes the "Ready" state of a process?
Which OOP principle focuses on showing only essential information and hiding the complex implementation details from the user?
Consider the following Python code:
text = "banana"
char_to_find = 'a'
count = 0
for i in range(len(text)):
  if ...
What does Cyclomatic Complexity measure in software engineering?
Given a set of activities with start and finish times: (1,4), (3,5), (0,6), (5,7), (3,9), (5,9), (6,10), (8,11), (8,12), (2,14), (12,16). If you apply t...
What is the time complexity of a Binary Search algorithm on a sorted array of 'n' elements?
Which statement is FALSE regarding DRAM memory?
What is the primary goal of concurrent programming in software development?