What is the purpose of a source code management tool? MCQ with Answer and Explanation

What is the purpose of a source code management tool?
A. To track changes in code
B. To run code
C. To debug code
D. To compile code
Answer: Option A
Solution (By JKSSB Mock Tests)
Tools like Git manage version control and track changes to source code.

Discuss this Question (0)

No comments yet. Be the first to start the discussion!

Practice More Computer Software Questions

Question #1
Which language translator parses code tokens dynamically, translating statements into machine instructions as they hit execution loops without generating a standalone binary file?
A. Interpreter
B. Pure Compiler
C. Assembler Core
D. Static Linker

Correct Answer: Option A


Explanation:
Interpreters translate code statements line-by-line in real time during execution, which provides flexibility but adds performance overhead.

This question belongs to: Computer Computer Software
Question #2
What is the purpose of a dynamic link library (DLL)?
A. Contains reusable code for programs
B. Controls memory
C. Manages hardware
D. Stores user data

Correct Answer: Option A


Explanation:
DLL files contain code and data shared by multiple programs to save memory.

This question belongs to: Computer Computer Software
Question #3
What is the role of the BIOS in system software?
A. Provides file management
B. Loads the OS after POST
C. Manages user accounts
D. Runs application software

Correct Answer: Option B


Explanation:
BIOS performs POST and then loads the bootloader, which loads the OS.

This question belongs to: Computer Computer Software