Computers
Hacking
Programming
Coding Output
100

What is called the brain of computer?

Central Processing Unit (or CPU)

100

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

100

What is the process of writing, testing, and maintaining the source code of computer programs called?

Programming / Coding / Scripting

100

What is the output of the code

print(2+2)

4

200

True or False


HP, Google, Microsoft and Apple all started out of garages

TRUE

200

Hacking is:

A. Awesome

B. Illegal

C. Legal

D. Using the "golden rule"

B. Illegal

200

Java, C++, and Python are examples of what?

Programming Languages

200

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

300

Computers can only understand 1 language. What is this language called?

Binary Language

300

True or False

Its not hacking if they just snoop around my computer

FALSE

300

In Python, what does the operator ** represent?

Exponent

300

fruits = ["apple","banana","coconut"]

How do you print coconut, using above variable? (Python code only)

print(fruits[2])

400

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

400

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

400

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

400

What will the following code segment print?

for x in range(5, 0, -1):

  print x

5

4

3

2

1

500

Computers have a type of memory called RAM. What does RAM Stand for?

Random Access Memory

500

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 

500

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"

500

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