Answer:
Explanation:
Based on the information provided in the question, the best rules that the technician should add to the firewall would be the following
Permit 10.10.10.0/24 0.0.0.0 -p tcp --dport 443
Permit 10.10.10.0/24 192.168.1.15/24 -p udp --dport 53
This is because port 443 is used for "Secure webs services" while UDP port 53 is used for queries and domain name resolution. Both of which are the main configurations that the security technician needs to obtain.
write a object oriented c++ program
Answer:
I don't know how to code C++
Explanation:
List any two programs that are required to play multimedia products
List any two programs that are required to create multimedia products
Answer:
the two programs to play multimedia products are;windows media player and VLC media player and the two programs to create multimedia products are;photoshop and PowerPoint
Which security measure provides protection from IP spoofing?
A ______ provides protection from IP spoofing.
PLEASE HELP I need to finish 2 assignments to pass this school year pleasee im giving my only 30 points please
Answer:
An SSL also provides protection from IP spoofing.
Suppose that a minus sign in the input indicates pop the stack and write the return value to standard output, and any other string indicates push the string onto the stack. Further suppose that following input is processed:
this parrot - wouldn't voom - if i put -- four thousand --- volts - through it -
What are the contents (top to bottom) left on the stack?
a. through wouldn't this.
b. this wouldn't through.
c. it through wouldn't.
d. it through volta.
e. volts through it.
Answer:
e. volts through it
Explanation:
volts through it
The contents (top to bottom) left on the stack is volts through it. Thus, option E is correct.
What is standard output?When a computer program begins execution, standard streams are interconnected input and output channels of communication between the program and its surroundings. The three I/O connections are known as standard input (stdin), standard output (stdout), and standard error (stderr).
A negative sign in the input indicates that the stack should be popped, and the return value should be sent to standard output, whereas any other string means that the string should be pushed into the stack. Assume that the following input is processed: this parrot would not voom if I pushed — four thousand —- volts - through it.
The contents of the stack (from top to bottom) are volts via it. As a result, option E is correct.
Learn more about standard output here:
https://brainly.com/question/30054426
#SPJ5
Rideshare companies like Uber or Lyft track the x,y coordinates of drivers and customers on a map. If a customer requests a ride, the company's app estimates the minutes until the nearest driver can arrive. Write a method that, given the x and y coordinates of a customer and the three nearest drivers, returns the estimated pickup time. Assume drivers can only drive in the x or y directions (not diagonal), and each mile takes 3.5 minutes to drive. All values are doubles; the coordinates of the user and of the drivers are stored as arrays of length 2. 289222.1780078.qx3zqy7
Answer:
The program in Java is as follows:
import java.util.*;
public class Main{
public static void main (String[]args){
Scanner input = new Scanner(System.in);
double user[] = new double[2]; double dr1[] = new double[2];
double dr2[] = new double[2]; double dr3[] = new double[2];
System.out.print("Enter user coordinates: ");
for(int i =0;i<2;i++){ user[i] = input.nextDouble(); }
System.out.print("Enter driver 1 coordinates: ");
for(int i =0;i<2;i++){ dr1[i] = input.nextDouble(); }
System.out.print("Enter driver 2 coordinates: ");
for(int i =0;i<2;i++){ dr2[i] = input.nextDouble(); }
System.out.print("Enter driver 3 coordinates: ");
for(int i =0;i<2;i++){ dr3[i] = input.nextDouble(); }
double dr1dist = Math.abs(user[0] - dr1[0]) + Math.abs(user[1] - dr1[1]);
double dr2dist = Math.abs(user[0] - dr2[0]) + Math.abs(user[1] - dr2[1]);
double dr3dist = Math.abs(user[0] - dr3[0]) + Math.abs(user[1] - dr3[1]);
System.out.println("Estimated pickup time of driver 1 "+(3.5 * dr1dist)+" minutes");
System.out.println("Estimated pickup time of driver 2 "+(3.5 * dr2dist)+" minutes");
System.out.println("Estimated pickup time of driver 3 "+(3.5 * dr3dist)+" minutes");
}
}
Explanation:
The following array declarations are for the customer and the three drivers
double user[] = new double[2]; double dr1[] = new double[2];
double dr2[] = new double[2]; double dr3[] = new double[2];
This prompts the user for the customer's coordinates
System.out.print("Enter user coordinates: ");
This gets the customer's coordinate
for(int i =0;i<2;i++){ user[i] = input.nextDouble(); }
This prompts the user for the driver 1 coordinates
System.out.print("Enter driver 1 coordinates: ");
This gets the driver 1's coordinate
for(int i =0;i<2;i++){ dr1[i] = input.nextDouble(); }
This prompts the user for the driver 2 coordinates
System.out.print("Enter driver 2 coordinates: ");
This gets the driver 2's coordinate
for(int i =0;i<2;i++){ dr2[i] = input.nextDouble(); }
This prompts the user for the driver 3 coordinates
System.out.print("Enter driver 3 coordinates: ");
This gets the driver 3's coordinate
for(int i =0;i<2;i++){ dr3[i] = input.nextDouble(); }
This calculates the distance between driver 1 and the customer
double dr1dist = Math.abs(user[0] - dr1[0]) + Math.abs(user[1] - dr1[1]);
This calculates the distance between driver 2 and the customer
double dr2dist = Math.abs(user[0] - dr2[0]) + Math.abs(user[1] - dr2[1]);
This calculates the distance between driver 3 and the customer
double dr3dist = Math.abs(user[0] - dr3[0]) + Math.abs(user[1] - dr3[1]);
The following print statements print the estimated pickup time of each driver
System.out.println("Estimated pickup time of driver 1 "+(3.5 * dr1dist)+" minutes");
System.out.println("Estimated pickup time of driver 2 "+(3.5 * dr2dist)+" minutes");
System.out.println("Estimated pickup time of driver 3 "+(3.5 * dr3dist)+" minutes");
Who is MrBeast?
Answer the question correctly and get 10 points!
Answer: MrBeast is a y0utuber who has lots of money
Explanation:
Answer:
He is a You tuber who likes to donate do stunts and best of all spend money.
It's like he never runs out of money.
Explanation:
When developing an algorithm to solve a problem, which of these steps can help you design the solution for the problem?
Answer:
3 is the answer please mark me brainlist
Explanation:
ok
Write a function template that accepts an argument and returns its absolute value. The absolute value of a number is its value with no sign. For example, the absolute value of -5 is 5, and the absolute value of 2 is 2. Test the template in a simple driver program being sure to send the template short, int, double, float, and long data values.
Answer:
The function in Java is as follows:
public static double func(double num){
num = Math.abs(num);
return num;
}
Explanation:
This defines the function
public static double func(double num){
This determines the absolute function of num
num = Math.abs(num);
This returns the calculated absolute value
return num;
}
PLEASE HELP ME ASAP ITS IMPORTANT