Looks like no one added any tags here yet for you.
compares values after type conversion
What does the '==' operator do?
The inner 'if' statement is only evaluated if the outer 'if' condition is true.
What happens when multiple 'if' statements are nested?
It assigns a value to a variable
what does the assignment operator '=' do?
'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'?
Public IP address
used to communicate over the internet
private IP address
used within a private network
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?
IPv6 addresses are 128-bit, providing a much larger address space, while IPv4 addresses are 32-bit.
difference between IPv6 address and IPv4
'='
What is the assignment operator in most programming languages?
It assigns the value 5 to the variable 'x'.
What does the expression 'x = 5' do?
compares both value and type.
what does the operator '===' do?
'==' checks for value equality with type coercion, while '===' checks for strict equality (both value and type).
What is the difference between '==' and '===' in JavaScript?
Nested 'if' statement
an 'if' statement inside another 'if' statement, allowing for more complex conditional logic.
'else-if' statement
provides an additional condition to check if the previous 'if' condition is false.
What is the equality operator in JavaScript?
DNS Server
translates human-readable domain names into IP addresses that computers use to identify each other on the network.
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?
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?
session
____________ cookies are deleted when the browser is closed
Persistant
persistent cookies remain on the users device until they expire or are deleted
track users over long periods and across different websites, raising privacy concerns.
How do persistent cookies impact user privacy?
provides the structure and content of a webpage using tags and elements.
What is the role of HTML in web development?
controls the appearance and layout of a webpage, including styles like color, fonts, and spacing.
What is the role of CSS in web development?
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?
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?