Expedite, Hasten, Hurry, __________Fill the blank by choosing a word with a meaning similar to that of the wordsgiven above.
A black square PQRS has been cut into two parts. One part of it is shown inPanel I. Which one of the shapes in Panel II is the other part?
Consider the following context-free grammar 𝐺.𝑆→𝑎𝑏𝑎𝐴𝐵𝐴𝑏𝑏𝑎𝐴→𝑎𝑎𝐵𝐵𝐴𝑏 | 𝑏𝐵𝑎𝑏𝑎𝑎𝐵→𝑎𝐵𝑏 | 𝑎𝑏In the above grammar, 𝑆 is the start symbol, 𝑎 and 𝑏 are terminal symbols, and 𝐴 and𝐵 are non-terminal symbols.Let 𝐿(𝐺) be the language generated by the grammar 𝐺. For a string 𝑠∈𝐿(𝐺), let𝑛1(𝑠) be the number of 𝑎’s in 𝑠 and 𝑛2(𝑠) be the number of 𝑏’s in 𝑠.Which of the following statements is/are true?
Consider the following code snippet in C language that computes the number ofnodes in a non-empty singly linked list pointed to by the pointer variable head.struct node{int elt;struct node *next;};int getListSize (struct node *head){if( E1 ) return 1;return E2;}Which one of the following options gives the correct replacements for theexpressions E1 and E2?
In the context of relational database normalization, which of the followingstatements is/are true?
With respect to deadlocks in an operating system, which of the followingstatements is/are FALSE?
Consider the following C statements:char *str1 = "Hello; /* Statement S1 */char *str2 = "Hello;"; /* Statement S2 */int *str3 = "Hello"; /* Statement S3 */Which of the following options is/are correct?
Which of the following statements is/are true with respect to the interaction of aweb browser with a web server using HTTP 1.1?
With respect to a TCP connection between a client and a server, which one of thefollowing statements is true?
Match each addressing mode in List I with a data element or an element of a datastructure (in a high-level language) in List II:List IList IIP. Immediate1. Element of an arrayQ. Indirect2. PointerR. Base with index3. Element of a recordS. Base with offset/displacement 4. Constant