The part of a door frame that comes in contact with the door is the jamb
Answer:
temp = 47
if temp > 40:
print("It’s extremely hot day today!")
else:
print("It’s not too hot!")
Explanation:
*The code is in Python.
Create a variable called temp and set its value as 47
Check the temp using if-else structure. If the temp is greater than 40, print "It’s extremely hot day today!". Otherwise, print "It’s not too hot!".
Answer:
Option (4) is correct answer
Explanation:
IPsec stands for Internet protocol security. It is a protocol that works between two communication points. It provides integrity, confidentiality and data authentication for any network. It is used for Virtual private network. There are two types of VPN, From which an organization needs to choose one.
IPsec and OpenSSl in which IPsec VPN uses IP security.
Benefits of this network are as follows--
- Option 1 states that it works after the transport layer which is true.
- Option 2 states that when any user leaves the organization they have no need to take back the martial which he had already provided to the organization which is also the benefit of IPsec.
- Option 3 states that it provides security that is also correct because it is a protocol that is designed to provide security.
Hence option D (all of the above ) are correct.
Answer:
Harley-Davidson Motor Company
Explanation:
Harley-Davidson produces and sells custom-made, touring as well as cruiser motorcycles that feature elegant styling, modern innovative design, and high quality performance with the ability to customize to ones taste. Harley-Davidson moved 95% of their x86 server workloads to virtualized environments utilizing VMware infrastructures as of 2018. They report to have being able to have higher system availability, effective and simple disaster recovery capabilities, improved operation efficiencies, and cloud-ready infrastructure. One of the major challenges of virtualization is Security, Virtual systems can easily get compromised.
Answer:
See explaination
Explanation:
public class QuickRich {
static void getRichQuick() {
double amount = 1;
int day = 1;
System.out.println("Day 1: $1");
while (amount < 1000000) {
day++;
if(amount + 1 + (amount/2) < 1000000)
System.out.printf("Day %d: $%.2f + ($1 + %.2f) = $%.2f\n", day, amount, amount/2, amount+(amount/2)+1);
else
System.out.printf("Day %d: $%.2f + ($1 + %.2f) >= $1000000\n", day, amount, amount/2);
amount += (1 + (amount/2));
}
}
public static void main(String[] args) {
getRichQuick();
}
}