Quiz Study Set 1

studied byStudied by 0 people
0.0(0)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions
Get a hint
Hint

compares values after type conversion

1 / 24

encourage image

There's no tags or description

Looks like no one added any tags here yet for you.

25 Terms

1

compares values after type conversion

What does the '==' operator do?

New cards
2

The inner 'if' statement is only evaluated if the outer 'if' condition is true.

What happens when multiple 'if' statements are nested?

New cards
3

It assigns a value to a variable

what does the assignment operator '=' do?

New cards
4

'if-else-if' is a chain of conditions evaluated in sequence, whereas nested 'if' statements check conditions inside another 'if' block.

How does 'if-else-if' differ from 'nested if'?

New cards
5

Public IP address

used to communicate over the internet

New cards
6

private IP address

used within a private network

New cards
7

Private IP addresses are reserved for use within private networks and cannot be accessed directly from the public internet.

Why are private IP addresses not routable on the public internet?

New cards
8

IPv6 addresses are 128-bit, providing a much larger address space, while IPv4 addresses are 32-bit.

difference between IPv6 address and IPv4

New cards
9

'='

What is the assignment operator in most programming languages?

New cards
10

It assigns the value 5 to the variable 'x'.

What does the expression 'x = 5' do?

New cards
11

compares both value and type.

what does the operator '===' do?

New cards
12

'==' checks for value equality with type coercion, while '===' checks for strict equality (both value and type).

What is the difference between '==' and '===' in JavaScript?

New cards
13

Nested 'if' statement

an 'if' statement inside another 'if' statement, allowing for more complex conditional logic.

New cards
14

'else-if' statement

provides an additional condition to check if the previous 'if' condition is false.

New cards
15

What is the equality operator in JavaScript?

New cards
16

DNS Server

translates human-readable domain names into IP addresses that computers use to identify each other on the network.

New cards
17

DNS allows users to access websites using easy-to-remember domain names rather than complex IP addresses.

How does DNS improve user experience on the internet?

New cards
18

Session cookies are deleted when the browser is closed, while persistent cookies remain on the user's device until they expire or are deleted.

What is the difference between session cookies and persistent cookies?

New cards
19

session

____________ cookies are deleted when the browser is closed

New cards
20

Persistant

persistent cookies remain on the users device until they expire or are deleted

New cards
21

track users over long periods and across different websites, raising privacy concerns.

How do persistent cookies impact user privacy?

New cards
22

provides the structure and content of a webpage using tags and elements.

What is the role of HTML in web development?

New cards
23

controls the appearance and layout of a webpage, including styles like color, fonts, and spacing.

What is the role of CSS in web development?

New cards
24

adds interactivity and dynamic behavior to a webpage, allowing for things like form validation and animations.

What is the role of JavaScript in web development?

New cards
25

HTTPS is the secure version of HTTP, encrypting data transmitted between the browser and the server to protect it from eavesdroppers.

What is the primary difference between HTTPS and HTTP?

New cards
robot