What is the value of
X when
A = 1, B = 0, C = 0, D = 1?
What is the purpose of a searching algorithm?
- Sorting data
- Finding a specific item in a collection
- Creating new data
- Generating random numbers
Which type of test data is at the extreme ends of a range of acceptable data?
- Normal data
- Boundary data
- Invalid data
- Erroneous data
What is a database?
- A computer program
- An internet browser
- A type of computer hardware
- A collection of related data
Which of the following is not a common feature of an IDE?
- Colour-coding commands
- De-bugging tools
- Run-time environment
- Conversion to hexadecimal
What name is given to a file generated by compilation?
- Assembly language
- Hexadecimal
- Object code
- App
Which loop structure is used when the number of iterations is known in advance?
Breaking-down a problem into smaller parts to make it easier to solve is known as…
- Abstraction
- Decomposition
- Pattern recognition
- Algorithm
In Python, how can you convert a string variable num_str to an integer?
int(num_str)convertToInt(num_str)toInteger(num_str)num_str.toInt()
What is the result of the expression print("5 + 3") in Python?