Question
Which of the following receipts are used in trading in
the Indian Market?Solution
An IDR(Indian Depository Receipt) is an instrument denominated in Indian Rupees created by a Domestic Depository against the underlying equity of the issuing company to enable foreign companies to raise funds from the Indian securities markets.
What is a primary advantage of generating intermediate code during compilation?
Which code optimization technique replaces occurrences of a variable with its constant value if the variable has been assigned a constant value that is ...
Which parsing method uses a stack and an input buffer?
Dynamic memory allocation (e.g., using `malloc` or `new`) typically occurs in which part of the runtime memory?
The primary function of a "loader" is to:
Which phase of a compiler is responsible for creating a stream of tokens from the input source code?
Which of the following is an example of a "local optimization"?
If an expression `x = a + b` is computed, and later in the same basic block, `y = a + b` is computed, a compiler can apply which optimization?
Which LR parser is often preferred in practice because it offers a good balance between power and table size, resolving most conflicts that SLR(1) cannot?
Which of the following tools is commonly used to generate a lexical analyzer (scanner) from a set of regular expressions?