Question
Consider the following statements regarding The Indian
Development and Regulation Act (1951)? (1) It is the genesis of Industrial licensing. (2) It was adopted from the Soviet Economic Planning. Select the correct answer using the code given below.Solution
The Indian Development and Regulation Act (1951). This Act was the genesis of a system of industrial licensing. Hence, statement 1 is correct. Industrial licensing involves seeking the government’s permission for initiating commercial activities. It also provided for the regulation and development of certain industries.
What will be the output of the following C code?
#include
int main() {
int i;
for (i = 0; i < 5; i++) {
<...Which code optimization technique replaces occurrences of a variable with its constant value if the variable has been assigned a constant value that is ...
In a binary tree, which traversal method visits the root node first, then the left subtree, and finally the right subtree?
Which parsing technique is a top-down parser that cannot handle left recursion and requires the grammar to be free of common prefixes?
An S-attributed SDD (Syntax-Directed Definition) is one where:
The primary role of the parser is to:
Which of the following tasks is NOT performed during lexical analysis?
Which technique is used to handle left recursion in a grammar?
Which storage class in C indicates that a variable's lifetime is throughout the program execution and its scope is local to the block it is defined in, ...
Dynamic memory allocation (e.g., using `malloc` or `new`) typically occurs in which part of the runtime memory?