What is called the brain of computer?
Central Processing Unit (or CPU)
What is hacking?
A. Getting access to others computers with out their permission
B. Finding out someones password
C. Using codes in games to get things
A. Getting access to others computers with out their permission
What is the process of writing, testing, and maintaining the source code of computer programs called?
Programming / Coding / Scripting
What is the output of the code
print(2+2)
4
True or False
HP, Google, Microsoft and Apple all started out of garages
TRUE
Hacking is:
A. Awesome
B. Illegal
C. Legal
D. Using the "golden rule"
B. Illegal
Java, C++, and Python are examples of what?
Programming Languages
In Python, what do you get when you multiply 23.0 by 4?
Also, what kind of data/object type is it?
A. 92 => float
B. 92.0 => integer
C. "92.0" => string
D. 92 => integer
E. 92.0 =>float
E. 92.0 =>float
Computers can only understand 1 language. What is this language called?
Binary Language
True or False
Its not hacking if they just snoop around my computer
FALSE
In Python, what does the operator ** represent?
Exponent
fruits = ["apple","banana","coconut"]
How do you print coconut, using above variable? (Python code only)
print(fruits[2])
What is the full form of VIRUS?
A. Vital information resource under siege
B. Vital information reference under sequence
C. Virus introduction resource under section
D. Virtual intrology reformer under sense
A. Vital information resource under siege
When is hacking legal?
A. Hacking is never legal
B. Hacking is always legal
C. Hired by a company to test firewall security
D. I don't know what hacking is
C. Hired by a company to test firewall security
In programming, there are different data types...
(in Python, they are stored as objects)
Which one is an integer?
A. .02
B. "40"
C. 67
D. 12.2
E. Str(4)
C. 67
What will the following code segment print?
for x in range(5, 0, -1):
print x
5
4
3
2
1
Computers have a type of memory called RAM. What does RAM Stand for?
Random Access Memory
What is a "white hat" hacker?
A. Someone who specializes in penetration testing and in other testing methodologies to ensure the security of an organization's information systems
B. Someone who breaks into a computer system or network with malicious intent.
C. A hacker wearing a white hat
D. All of the above
A. Someone who specializes in penetration testing and in other testing methodologies to ensure the security of an organization's information systems
In programming, there are different data types ...
(in Python, they are stored as objects)
Which one is a string?
A. 3.2
B. Int("642")
C. 3
D. "821"
E. Apple
D. "821"
What will be the output of the following code segment?
int a = 4, b = 8, c = -5;
print(a/b+"\n"+(a+c));
0
-1