Question
When was the first general elections in Independent
India held?Solution
The correct answer is B
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?