MCQ Collection
GAT Subject Computer Science MCQs
Practice GAT Subject Computer Science questions with answers and explanations.
Choose an option to check your answer.
Correct Answer: C. Translate source code into another executable or lower-level form
Explanation:
A compiler translates source code before execution.
Choose an option to check your answer.
Correct Answer: D. Primary key
Explanation:
A primary key uniquely identifies each table row.
Choose an option to check your answer.
Correct Answer: A. The address of a resource on a network
Explanation:
A URL locates a resource such as a web page.
Choose an option to check your answer.
Correct Answer: B. HTTPS
Explanation:
HTTPS uses HTTP over encrypted transport.
Choose an option to check your answer.
Correct Answer: C. A process in which a function calls itself on smaller instances
Explanation:
Recursion solves a problem through smaller self-similar calls and a base case.
Choose an option to check your answer.
Correct Answer: A. 1010
Explanation:
Decimal 10 equals 8 + 2, giving binary 1010.
Choose an option to check your answer.
Correct Answer: B. Queue
Explanation:
A queue removes elements in the order they were inserted.
Choose an option to check your answer.
Correct Answer: C. Stack
Explanation:
A stack removes the most recently inserted element first.
Choose an option to check your answer.
Correct Answer: D. A finite sequence of steps for solving a problem
Explanation:
An algorithm is an ordered and finite problem-solving procedure.
Choose an option to check your answer.
Correct Answer: A. AND
Explanation:
AND produces true only when both operands are true.