Log in
Sign up for FREE
arrow_back
Library

ICS FALL SEMESTER FINAL EXAM 2025

star
star
star
star
star
Last updated 4 months ago
51 questions
Unit 2 Test Questions
Required
1
Required
1
Required
1
Required
1
Required
1
Required
1
Required
1
Required
1
Required
1
Required
1
1
1
Unit 3 Test Questions
Required
1
Required
1
Required
1
Required
1
Required
1
Required
1
Required
1
1
Required
1
Required
1
Unit 4 Test Questions
Required
1
Required
1
Required
1
Required
1
Required
1
Required
1
Required
1
Required
1
Required
1
Required
1
Unit 6 Test Questions
Required
1
Required
1
Required
1
Required
1
Required
1
Required
1
Required
1
Required
1
Required
1
Required
1
Required
1
Required
1
Required
1
Final Section
Required
1
1
1
1
1
1
Question 1
1.

Question 2
2.

Question 3
3.

Draggable itemarrow_right_altCorresponding Item
arrow_right_alt
arrow_right_alt
arrow_right_alt
arrow_right_alt
arrow_right_alt
arrow_right_alt
Question 4
4.

Question 5
5.

What is the decimal value of binary 10110?

Question 6
6.

Question 7
7.

Question 8
8.

How many states can a 6-bit sequence represent?

Question 9
9.

Question 10
10.

Which CAN be represented in ASCII?

Question 11
11.

Question 12
12.

Question 13
13.

Question 14
14.

Question 15
15.

Question 16
16.

Question 17
17.

Question 18
18.

Question 19
19.

Question 20
20.

Question 21
21.

Question 22
22.

Question 23
23.

Question 24
24.

Question 25
25.

Question 26
26.

Question 27
27.

Question 28
28.

Question 29
29.

Question 30
30.

Question 31
31.

Question 32
32.

Question 33
33.

Question 34
34.

Question 35
35.

Question 36
36.

Question 37
37.

Question 38
38.

Question 39
39.

Question 40
40.

Question 41
41.

Question 42
42.

Question 43
43.

Question 44
44.

Question 45
45.

Question 46
46.

Question 47
47.

Question 48
48.

Question 49
49.

Question 50
50.

Question 51
51.

Match the flowchart symbol with its meaning.
Terminal (Start/End)
Process
Decision
Input/Output
Flow line
Subroutine
False
If you wanted to ensure that sensitive company data remains unreadable even if a laptop is stolen, which type of utility software would be most critical?
Encryption software, to convert data to an unreadable format
Defragmentation software, to scatter the data across the drive
Data compression software, to hide the data in smaller files
Backup software, to create copies of the data
Why do computers require more precise instructions than humans when following a set of directions?
Computers can only work with numerical data
Computers process information faster than humans
Computers have limited memory capacity
Computers cannot make assumptions or inferences like humans can
Grace Hopper's vision for programming languages was initially rejected because people believed computers could only do arithmetic. What does this historical example demonstrate about technological innovation?
Breakthrough innovations often face resistance due to limited understanding of possibilities
Computers were not advanced enough for high-level languages at that time
Only mathematicians should develop programming languages
New ideas are always immediately accepted in the technology field
If translators (compilers and interpreters) did not exist, what would be the primary consequence for modern software development?
Programs would run much faster on all computers
Programs would be smaller and use less memory
All programming would have to be done in machine code, making it extremely difficult and time-consuming
Software would be more secure and reliable
Sam
GarrySam
An error message
Garry
Creating a variable for the first time
Declaring what data type a variable will hold
Changing the value held at a variable location
Deleting a variable from memory
It contains lowercase letters
It's too long
It starts with a letter
It contains a space
Float
Boolean
Integer
String
The input() function returns strings, and the + operator joins strings together
There's a syntax error in the code
Python doesn't support mathematical operations
Python randomly chooses between addition and concatenation
It will print 5.0
It will cause a runtime error
It will print 53
It will print 8
num = int(input())
num = integer(input())
num = input().int()
num = input(int())
Stores '7' in a variable
Returns the string '7' unchanged
Checks if '7' is a valid number
Converts the string '7' to the integer 7
The program converts the error to a warning
The program continues running with default values
The program crashes and stops executing
The program asks the user to try again
float('3.14')
int('3.14')
decimal('3.14')
str('3.14')