The cable that needs the least amount of repeaters.
What is fibre optic?
What is "cat" & " " & "dog"?
This is the legal term for a formal recognition of ownership of a created and published work.
What is copyright?
Assuming a byte of 10010011 and a parity bit of 1, this is the type of parity bit.
What is odd parity bit?
This memory is the fastest but most expensive in the computer.
What is a register?
This wireless frequency can best penetrate a wall.
What is infrared?
This is how you would find a character in a string in Pseudocode WITHOUT a find function.
What is
FOR i <-- 1 to length(word)
IF word[i] == term THEN
location <-- i
ENDFOR
?
This is what it's called to copy someone else's work and list it as your own.
What is plagiarism?
These are five examples of data validation.
What are:
presence check
format check
length check
range check
type check
?
This is the key difference between LCD and LED displays.
What is the backlight?
For GEO satellites, you only need this many total satellites to provide full coverage to the whole earth.
What is three?
In Python, you would write this:
the_file = open('Trump is the best.txt', 'r')
But this is how it's written in Pseudocode.
OPENFILE "Trump is the best.txt" FOR READ
?
This is a major difference between shareware and freeware.
What is a trial period?
This is the law that guarantees data privacy.
What are data protection laws?
Solid state storage uses this types of logic gates to hold values in memory.
What is NAND or NOR?
What is high and low water marks?
This is how you would write your name to a text file called "students.txt" is Pseudocode?
What is
WRITEFILE "students.txt", "Pooh"
?
Not developing software that destroys the environment would be acting for which of the eight principles of computer ethics.
What is the public good?
These are 4 methods to protecting data security.
What are:
good passwords / authentication / biometics
firewalls
anti-virus software
user access levels
good physical security
?
For a laser printer, the laser removes an electric charge at this location.
What is the drum?
This is the number of bits for the hostID for Class C in IPv4.
What is 8 bits?
This is how you would do a linear search of an array of integers in Pseudocode.
What is
INPUT search_term
found <-- False
FOR index <-- 1 to length(the_array) DO
if the_array[index] == search_term THEN
location <-- index
found <-- True
break
ENDFOR
These are 3 of the 8 principles of computer science ethics.
What are:
PUBLIC
CLIENT AND EMPLOYER
PRODUCT
JUDGEMENT
MANAGEMENT
PROFESSION
COLLEAGUES
SELF
?
This person has the responsibility for guaranteeing data integrity.
Who is the DBA?
(Note: NOT blue/red)
What are tracking laser and read-write laser?