A unique address for every device on the internet.
Flip to see [answer/question]
Flip to see [answer/question]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Flip
Revise later
SpaceTo flip
If confident
All Flashcards
What is an IP address?
A unique address for every device on the internet.
What is DNS?
Domain Name System: translates domain names to IP addresses.
What is TCP/IP?
The fundamental communication protocol suite for the internet.
What is encryption?
Scrambling data to make it unreadable without a decryption key.
What is a firewall?
A security system that monitors and controls network traffic.
What is malware?
Harmful software that can damage your computer or steal data.
What is phishing?
Tricking users into revealing personal information via fake emails/websites.
What is a primitive data type?
Basic data types: integers, floats, booleans, characters.
What is an algorithm?
A step-by-step procedure for solving a problem.
What is data abstraction?
Hiding complex implementation details and showing only essential information.
What does the following code output?
python
strawberries_in_fridge = 7
number_of_eggs = 12
if strawberries_in_fridge >= 7:
print ("You can make strawberry shortcake!")
if number_of_eggs < 12:
print ("... if you go to the store first.")
else:
print ("So start baking!")
You can make strawberry shortcake!
So start baking!
What does the following code output?
python
x = 5
if x > 10:
print("x is greater than 10")
elif x > 3:
print("x is greater than 3")
else:
print("x is not greater than 3")