If you want to ensure that a particular application receives priority access to the network, you should configure what feature on the router?
QoS

DHCP

UDP

ARP

Answers

Answer 1

Answer:

QoS

Explanation:

:/

Answer 2

Answer:

other person is correct the answer is QoS

Explanation:


Related Questions

In a user interface, a screen is best understood as
A.a console


b.a variable


c.an input


d. an element

Answers

Answer:

d. an element

Explanation:

User Interface design is simply the designs that are used to model a product like an application.

In a user interface, a screen is best understood as an element.

Computing devices translate digital to analog information in order to process the information

Answers

Answer:

True?

Explanation: is IT RIGHT?????????????????

INTERNET SAFETY RULES

Answers

Do you need help with basic Internet safety? i’ll help you in the comments if that’s what you need?

Answer:

1. Keep Personal Information Professional and Limited

2. Keep Your Privacy Settings On

3. Practice Safe Browsing

4. Make Sure Your Internet Connection is Secure. Use a Secure VPN Connection

5. Be Careful What You Download

6. Choose Strong Passwords

7. Make Online Purchases From Secure Sites

8. Be Careful What You Post

9. Be Careful Who You Meet Online

10. Keep Your Antivirus Program Up To Date

Create a Python file named num_sum.py that contains: The definition of two functions: volume - accepts three parameters and returns the product of them, but displays nothing sum_of_nums - accepts 1 or more numbers and returns their sum, but displays nothing A print function call that includes a call to volume, passing 2, 3, and 4 A print function call that includes a call to sum_of_nums, passing 1, 2, 3, 4, and 5 Submit the Python program and screenshot. Following is an example showing how your screenshot might look:

Answers

Answer:

def volume(n1, n2, n3):

   product = n1 * n2 * n3

   return product

   

def sum_of_nums(*args):

   total = 0

   for n in args:

       total += n

       

   return total

   

print("The product: " + str(volume(2, 3, 4)))

print("The sum: " + str(sum_of_nums(1, 2, 3, 4, 5)))

Explanation:

Create a function called volume that takes three parameters, n1, n2, n3

Multiply the n1, n2, n3 and set it to product

Return the product

Create a function called sum_of_nums that takes *args as parameter (Since the function may take one or more arguments, we may use *args)

Initialize the total as 0

Create a for loop that iterate through args. Add each number to the total (cumulative sum)

When the loop is done, return the total

Call the functions with given numbers and print the results

*See the output in the attachment.

What is Interface in computers

Answers

Answer:

An interface could be the design of the homescreen or the way a shell of a computer is designed. I could be wrong tho......

Explanation:

what is an operating system​

Answers

Answer:

Explanation:

Online Dictionary defines 'Operating System' as "the software that supports a computer's basic functions, such as scheduling tasks, executing applications, and controlling peripherals.''

Hope this helps!

You're a ticket agent for a commercial airline and responsible for checking the identification for each passenger before issuing their boarding pass. Due to federal regulations, there is a total of three different forms of ID that can potentially be used. You must determine whether the passenger has the sufficient identification to board the plane or not. Facts: ⢠A passport is enough for a boarding pass ⢠Without a passport, passengers must have two other forms of ID: driver's license birth certificate ⢠If the above two conditions are not met, then they are denied. Input Your solution must take in three boolean inputs. The first input represents whether they have a passport or not. The second input represents whether they have a driver's license or not. The third input represents whether they have a birth certificate or not Output The output should display as a boolean result whether they can board the plane or not. Sample Input Sample output true false false true false true true true false false false false

Answers

Answer:

Follows are the code to this question:

import java.util.*;//import package for user input  

public class Main //defining class  

{

  public static void main(String[] as)//main method

  {

      boolean x,y,z;//defining boolean variable

      Scanner ox= new Scanner(System.in);//create Scanner class object for user input

      System.out.println("input value: "); //print message  

      x=ox.nextBoolean();//input value

      y=ox.nextBoolean();//input value

      z=ox.nextBoolean();//input value

      System.out.println("Output: ");//print message

      System.out.println(x || (y &&z));//use print method to check value and print its value  

  }

}

Output:

1)

input value:  

true

false

false

Output:  

true

2)

input value:  

false

true

true

Output:  

true

3)

input value:  

false

false

false

Output:  

false

Explanation:

In the given code, inside the class three boolean variable "x,y, and z" is declared, that uses the scanner class for input the value from the user end, and in the next print, the method is declared, that uses " OR and AND" gate for calculating the input value and print its value.

In the AND gate, when both conditions are true. it will print the value true, and in the OR gate, when one of the conditions is true, it will print the value true.  

ASAP.
13. How do distracters impact your study time? They cause you to lose focus and lose time. They make studying almost impossible. They cause you to lose focus and that results in lower grades. They make you drowsy and distracted.​

Answers

Answer:

A

Explanation:

You could pick any answer and make a case for it. It depends on what you have been told.

I would pick A but I wouldn't be surprised if the answer isn't the last one.

Write a program that calculates and displays the amount ofmoney available in a bank account that initially has $8000 deposited in it and that earns interest atthe rate of 2.5 percent a year. Your program should display the amount available at the end of eachyear for a period of 10 years. Use the relationship that the money available at the end of each yearequals the amount of money in the account at the start of the year plus 0.025 times the amountavailable at the start of the year [20 points].

Answers

Answer:

Written in Python

import math

principal = 8000

rate = 0.025

for i in range(1, 11):

    amount = principal + principal * rate

    principal = amount

    print("Year "+str(i)+": "+str(round(amount,2)))

Explanation:

This line imports math library

import math

This line initializes principal amount to 8000

principal = 8000

This line initializes rate to 0.025

rate = 0.025

The following is an iteration from year 1 to 10

for i in range(1, 11):

    This calculates the amount at the end of the year

    amount = principal + principal * rate

    This calculates the amount at the beginning of the next year

    principal = amount

    This prints the calculated amount

    print("Year "+str(i)+": "+str(round(amount,2)))

What is the tag used for?

Answers

Answer:

The title tag is an HTML title element critical to both SEO and user experience that is used to briefly and accurately describes the topic and theme of an online document. The title tag is displayed in two key places: Internet Browser – Title Tags display in the top bar of internet browsers.

What do you use for soaking hands and holding soapy water​

Answers

Answer:

a bowl

Explanation:

a round, deep dish or basin used for food or liquid.

plz mark brainliest

how do you write 4 copies of 3 tenths in standard form

Answers

Answer:

four copies of three tenths

Explanation

just like you did it but its all in words

four copies of three tenths

just right it out

Class description: A MyString class should behave much like the c++ string class. The class should use a dynamically allocated char array to hold a character string. If the amount of memory allocated to the array is too small to complete some necessary task (e.g., assigning a new character string to the object) the object should automatically double its capacity until it is large enough to complete the task. If it's discovered that the object is using less than 25% of its capacity the object should shrink to half its capacity until it is using more that 25% of its capacity.
Assignment: Implement the MyString class using a header and implementation file named MyString.h and MyString.cpp respectively. Even though MyString.h will be provided on the upload site, create own version for testing code locally. Make sure to properly test code on by creating a test driver that fully tests every function created in the MyString class
Memory Requirements: MyString should start with 10 bytes of allocated memory and should grow in size by doubling. So, we should be able to predict the capacity of MyString as acquiring a patten of 10, 20, 40, 80, ⦠bytes of memory depending of the number of characters stored.
Attributes:
int size â the number of characters currently stored in the string object. Do NOT count the NULL character.
int capacity â the number of bytes currently allocated. This should always be at least size + 1. The extra byte is needed to store the NULL character.
char *data â character pointer that points to an array of characters.
Member Functions:
MyString( ) Constructor
MyString(const char *) Constructor with an initialization character string
~MyString( ) Destructor
MyString(const MyString &) Copy constructor
MyString& operator = (const MyString&) Overloaded assignment operator, make a copy of MyString object
bool operator == (const MyString&) const overloaded equivalence relational operator
char& operator [ ] (int) overloaded [ ] should return a char by reference
void operator += (const MyString&) overloaded += operator, use to concatenate two MyStrings
MyString operator + (const MyString&) const Create a new MyString object that is the concatenation of two MyString objects
void getline(istream&, char delimit = â\nâ); reads an entire line from a istream. Lines are terminated with delimit which is newline â\nâ by default
int length( ) const; return the length of the string
friend ostream& operator<< (ostream&, MyString&); overloaded insertion operator

Answers

You should do 40 points for this

What does binary mean?
Os and 1s
O Decimals
O Digital
O User data

Answers

Answer:

0s and 1s

Explanation:

Answer:

0s and 1s

Explanation: when you talk about binary codes you are talking about the codes made up of 1s and 0s

Is a i5 2400 and a GeForce GTX 1060 6GB bottlenecking?

Answers

Answer:

In terms of memory, the GTX 1060 6GB 's 6144 MB RAM is more than enough for modern games and should not cause any bottlenecks. This combination between GTX 1060 6GB and Intel Core i5-2400  3.10GHz has less than 15% bottleneck in many games and can cause minor FPS loss.

Explanation:

i wish i had one of these lol

Answer:

Yes very Much

Explanation:

Please No

Why was the newspaper readership the highest in 1995?

Answers

Because more people read the news paper back then
Because not everyone could afford a computer and because newspapers were more easy and accessible to get

kelly wants to buy a new operating system for a laptop. under which category will it be in online store?

Answers

Answer:

Kelly should look at the electronics section, where the laptops are because a laptop is an electronic. Just like an iPhone, iPad, and a TV.

Answer:

Application Software

Explanation:

The text help readers understand the relationship between gender and sports?THESE PUMPKINS SURE CAN KICK!

Answers

Answer:

What's the question?????I don't understand

In which of the following scenarios would it be best to use a for loop?
1. When you need to stop looping based on input from the user
2. When you need to check that a user's input is valid.
3. When you want to ask the user for 10 numbers
4. When you need to be able to use the block of code in many places in your program

Answers

Answer:

I would say 3 is the most likely answer ("When you want to ask the user for 10 numbers").

You use for loops to perform a task x times usually.

Lifelong learning ____?
A. stops when your career is over
B. only occurs in a classroom setting
C. begins after you retire
D. can be informal

Answers

B is the right answer

Answer:

can be informal

Explanation:

just took the Unit Test

Write a program that prompts the user to input two POSITIVE numbers — a dividend (numerator) and a divisor (denominator). Your program should then divide the numerator by the denominator, and display the quotient followed by the remainder.Hint: If you use division (/) to calculate the quotient, you will need to use int() to remove the decimals. You can also use integer division (// ), which was introduced in Question 10 of Lesson Practice 2.3.Once you've calculated the quotient, you will need to use modular division (%) to calculate the remainder. Remember to clearly define the data types for all inputs in your code. You may need to use float( ) , int( ), and str( ) in your solution.float( ): Anything inputted by a user should be transformed into a float — after all, we are accepting ALL positive numbers, integers and those with decimals.int( ): When you divide the numerator and the divisor using /, make sure that the result is an integer.str( ): After using modular division, you can transform the quotient and remainder back into strings to display the result in the print() command.

Answers

Answer:

did you end up getting an answer

Explanation:

give the imporntance of having standard funiture in the laboratory​

Answers

Answer:

I guess if there is experiment going on in absence one of those furniture then the experiment isn't successful

Can I publish my book on Google?

Answers

Publish to Google Play and Google Books will display your book both on Google Books and in the Google Play Store. Publish to Google Books only will display your book on Google Books, with the full text searchable and the specified percentage available to read online.

Answer:

☆|《HOPE IT WILL HELP YOU 》>☆

Explanation:

YES YOU CAN PUBLISH YOUR BOOK ON GOOGLE

please mark my ans as BRAIN LIST

What’s command do we use to update a file on MySQL?

Answers

Answer:

The MySQL update command/query is used to update existing records in a table in a MySQL database.

If the machine executes 5000 instructions every microsecond (millionth of a second), how many instructions does the machine execute during the time between the typing of two consecutive characters?

Answers

Answer:

5*10^9 instructions

Explanation:

Let's apply logic to solve this particular problem.

If 5000 instructions get executed in a millionth of a second, then this means that

5000 instructions gets executed every 1*10^-6 second

5000*10^6 instructions get executed every second, or say

5*10^9 instructions get executed after every second.

Going forward, it isn't stated how long it takes to type two consecutive characters, so will assume it's just 1 second(since it's consecutively).

So, succinctly put, if it takes 1 second to type the two characters consecutively, then the machine executed 5*10^9 instructions. And if it takes 2 seconds to type the two characters, then the machine would have executed 10*10^9 instructions

What is a copyright?

Answers

the exclusive legal right, given to an originator or an assignee to print, publish, perform, film, or record literary, artistic, or musical material, and to authorize others to do the same.

A copy right is when someone is taking credit away from someone who made it first

Why would a user select More Items for mail merge fields? to manually set an IF-THEN logic for the data field to manually change what merge field data is shown to manually select the format of the name in the greeting line to manually select and place additional fields at an insertion point

Answers

Answer:to manually select and place additional fields at an insertion point

Explanation:

Answer:

D. to manually select and place additional fields at an insertion point

Explanation:

edg. 2020

Java Homework:(The Person, Student, Employee, Faculty, and Staff classes) Design a class named Person and its two subclasses named Student andEmployee. Make Faculty and Staff subclasses of Employee. A person has a name, address, phone number, and email address. A student has a class status (freshman, sophomore, junior, or senior). Define the status as a constant. An employee has an office, salary, and date-hired. Define a class named MyDate that contains the fields year, month, and day. A faculty member has office hours and a rank. A staff member has a title. Override the toString method in each class to display the class name and the person's name.
class Person{
//A person has a name, address, phone number, and email address.
String name;
String address;
String phone;
String email;
}
class Student extends Person{
//A student has a class status
//(freshman,sophomore, junior, or senior).
//Define the status as a constant.
final int freshman =1;
final int sophomore =2;
final int junior=3;
final int senior=4;
int status=freshman;
}
class Employee extends Person{
//An employee has an office, salary, and date hired.
String office;
double salary;
java.util.Date dateHired;
}
class Faculty extends Employee{
//A faculty member has office hours and a rank.
String officeHours;
String rank;
}
class Staff extends Employee{
//A staff member has a title
String title;
}
public class ex112{
}
The outline is given above. Fill in between brackets to finish! Thank you :)

Answers

Answer: Wait, so what is the question exactly..?

100 POINTS!!!
Suppose a program requires a password that is a combination of numbers and letters but is not key sensitive. However, the user input is received as a string with letters that can have arbitrary cases. What code can be used to validate user input, u_pass, against the actual password, a_pass?

u_pass.upper() == str(a_pass).upper()
u_pass == a_pass
u_pass == str(a_pass)
u_pass is a_pass

Answers

The code that can be used to validate user input, u_pass, against the actual password, a_pass is u_pass.upper() == str(a_pass).upper().

How do one validate user input?

The act of input validation is  also called data validation. This is said to be  the right testing of any input that has been supplied by a user or application.

Conclusively, In  Input validation, there is prevention in term of improperly formed data from entering into the information system.

Learn more about coding from

https://brainly.com/question/22654163

Explain the five most important things that should be taken into consideration when designing a computer network.

Answers

Explanation:

Many computer experts (networkers) believe that you consider the following when designing a computer network:

Budget: By considering the amount available to be spent on setting up the computer network, it allows buying the best quality equipment considering the available funds.Type of network connectivity: This involves determining whether the network would only be a wireless connection or wired connection using cables, or involves both combinations.Type of security: This involves deciding the type of network security to be installed. Answering: Would it cloud systems be used? What type of firewall systems to use, etc?The type of hardware and software: This is very important in other to determine how optimal the network would be.Disaster recovery plan: For example, what type of back-up power would be required or affordable, solar power, or generator?

Other Questions
PLZ HELP ME Make ONE connection to any Depth & Complexity icon. Explain in two or three sentences. BTW ITS ABOUT 9/11 attack 2001 Please help the picture is above. PLZZZZZZZZZZZZZZZZ HELP ME i begging YOUUUUU !!!!!!!!!!!!!!!!!!!!!!!!!!!By the year 1500, Europeans had mainly been staying in one part of the world Europe- for almost a thousand years. However, at the end of the 15th century, European explorers began sailing to the far ends of the Earth, seeking out places they thought no one had ever been. The Dangers of Exploration Sailing out into uncharted waters was an incredibly dangerous thing to do. No Europeans really knew what was out there. Uneducated people still thought the world was flat and that sailing too far could mean falling off the end of the world. The explorers and sailors knew better, but they still were only guessing at where they were going. Sailing into unknown territory could lead to attack by enemy ships or pirates. The explorers also didnt know how long their trips would take, so they were risking starvation and dying of thirst (drinking the ocean water would kill them). They also risked death by diseases such as scurvy, caused by lack of Vitamin C (known for its symptoms of bloody gums). All ocean ships were still made out of wood, and the high winds and ferocious waves of sea storms could crush their ships or flip them over and sink them. Since the explorers didnt really know where they were going, they could easily get lost at sea. Finally, when the crew of a ship grew angry, they would sometimes have a mutiny a rebellion against the captain, which would cause chaos on a ship. Why would men want to make such dangerous trips?Reasons for Exploration One main motive was trade. Europe had long been interested in trading with Asia, so they could have access to the exotic spices that could keep food fresh and preserved. A problem arose when the Ottoman Turks conquered many lands between Europe and Asia. The Turks and Arabs had set up middlemen that Europeans would have to pay if they wanted Asian goods. Instead of paying these middlemen, some Europeans had the idea of finding new ways of getting to Asia over the oceans. They figured that if they sailed far enough west, they could reach China and India by wrapping around the globe. Besides seeking spices in Asia, the Europeans were also hoping to find precious metals, such as gold, in new lands. Another motive was that the European countries were competing with each other for new territory. Each of them wanted to claim new lands in making their country bigger and more powerful. They wanted to spread the glory of their nation by taking over new lands. When one country takes over or controls another it is called imperialism. Along with these conquerors went missionaries people sent to spread religious messages and convert others to their faith. In short, the reasons for European exploration can be summarized by the 3 Gs:God, Glory and Gold1. In the chart below, list 3 risks that came with exploring the oceans. On the other side, explain three benefits, rewards, or motivations for exploring.RISKSBENEFITS (MOTIVATIONS)a.a.b.b.c.c.2. What is imperialism?3. What are missionaries and what did they want?How was Exploration Made Possible?New Technologies Johann Guttenbergs invention of the printing press made maps and geographic information much more available. Since gunpowder had been introduced to the Europeans by the Arabs in the 1200s, Europeans developed new weapons that could keep their ships safe from invaders. Spanish and Portuguese ships were the first to perfect very powerful canons that made their ships deadly to any other on the sea. Naval technology was also extremely important. Mapmakers, or cartographers, created better maps and charts of the seas. Also, European sailors learned to use the magnetic compass to find better directions at sea. Europeans also built bigger and better ships. The Portuguese used ships whose sails, masts, and rudders allowed explorers to sail across or against the wind. Strong Monarchies European countries were also becoming ruled by monarchies (governments led by a king or queen) that built up their armies and navies and wanted to use them. The kings and queens of Europe were increasing their power and resources, and they could focus beyond their borders. They were willing to pay for the expensive and risky trips explorers were willing to make at sea, hoping they could make their kingdoms richer. 4. What were 3 new technologies in the 1400s that would allow explorers to sail farther out to sea?New TechnologyWhy was this important?1)2)3)5. What is a monarchy?6. Why would strong monarchies in Europe lead to more sea exploring? You are a contractor and charge $65 for a site visit plus an additional $15 per hour for each hour you spend working at the site. Write and solve an equation to determine how many total hours you have to work to earn $950 working at two separate work sites 4. Why did Buddha's father shelter him? A U.S. business has hired workers in China to manufacture its products. This is an example of: A: outsourcingB: DiversityC: IndustrializationD: Exporting Find the value of x. PLEASE HELP - test tomorrowThe answer is 62I need to show my work.THANK YOU!!!!! 1/2 of 12 = 1/4 of ?1/3 of 90 = 2/3 of? 2 + 3x = 8Write the quadratic equation in standard form If the prefix anti means "against," then what is an antigovernment newspaper?1.one which supports government2.one which condemns government3. one which does not discuss government4.one which is run by government In FGH, FH FG. Which angles are congruent? Select both angles that are congruent Explain how do you know whether the relationship between two quantities is a proportional relationship. * What were the first animals to exist in the world? Over time, the value of the property at 397 West Lake Street increased by 275%. If the initial value of the property was P, which expression represents the propertys current value? The y -intercept of the line whose equation is 3 x + 2 y = 7:A. 7/2B. 7/3C. -3/2 Help me!!!! PLEASE 1. Contaminated water is subjected to a cleaning process. The concentration of thepollutants is initially 5 mg per liter of water. If the cleaning process can reduce thepollutant by 10% each hour, define a function that can represent the concentrationof pollutants in the water in terms of the number of hours that the cleaning processhas taken place. true or false? Every individual can interpret emotions accurately. SOLVE FOR DS=D/TTHANK YOU Help me please..Help me with the ones which are marked 8 points and brainliest