System software
Operating system
Utility programs
Application software
Correct answer is A
Translators are a type of system software. They are used to convert source code written in one programming language (the source language) into another programming language (the target language). Examples of translators include compilers, interpreters, and assemblers. System software is a type of computer software designed to run a computer's hardware and application programs. It includes the operating system, device drivers, diagnostic tools, servers, windowing systems, utilities, and more
System design
Feasibility study
System analysis
Investigative study
Correct answer is C
During the System Analysis stage of the System Development Life Cycle (SDLC), all data are documented in the form of detailed Data Flow Diagrams (DFDs). The System Analysis stage involves understanding and documenting the business processes and requirements of the new system
The only possible number base for 235\(_x\) among the following is ?
3
5
4
6
Correct answer is D
A number cannot contain digits that are greater than its base.
therefore 235 can possible be in base 6.
How many bits are in one nibble ?
2
4
8
16
Correct answer is B
A nibble is a four-bit aggregation, or half an octet. It is also known as half-byte or tetrade. In a networking or telecommunication context, the nibble is often called a semi-octet, quadbit, or quartet. A nibble has sixteen (2^4) possible values
Which of the following is a valid variable name in Python?
my_variable$
my_variable
my-variable
1my_variable
Correct answer is B
Variable names in Python must start with a letter or underscore, and can only contain letters, numbers, and underscores. The other options are invalid because they either start with a number (option C) or contain a special character (option D).