An array $A$ of length $n$ with distinct elements is said to be bitonic if there is an index $1=i=n$ such that $A[1 . . i]$ is sorted in the non-decreasing order and $A[i+1 . . n]$ is sorted in the non-increasing order.
Which ONE of the following represents the best possible asymptotic bound for the worstcase number of comparisons by an algorithm that searches for an element in a bitonic array $A$?
Consider the following statements about the use of backpatching in a compiler for
(I) Backpatching can be used to generate code for Boolean expression in one pass.
(II) Backpatching can be used to generate code for flow-of-control statements in one pass.
Which ONE of the following options is CORRECT?
Given the following syntax directed translation rules :
Rule 1 : $R \rightarrow A B\{B . i=R . i-1 ; A . i=B . i R . i=A . i+1 ;\}$
Rule 2 : $P \rightarrow C D\{P . i=C . i+D . i ; D . i=C . i+2\}$
Rule 3 : $Q \rightarrow E F\{Q . i=E . i+F . i ;\}$
Which ONE is the CORRECT option among the following?
Given a Context-Free Grammar G as follows :
$S \rightarrow A a|b a c| d c \mid b d a$
$A \rightarrow d$
Which ONE of the following statements is TRUE?