Write a program that calculates the average number of days a company's employees are absent. The program should have the following functions: A function called by main that asks the user for the number of employees in the company. This value should be returned as an int. (The function accepts no arguments.) A function called by main that accepts one argument: the number of employees in the company. The function should ask the user to enter the number of days each employee missed during the past year. The total of these days should be returned as an int. A function called by main that takes two arguments: the number of employees in the company and the total number of days absent for all employees during the year. The function should return, as a double, the average number of days absent. (This function does not perform screen output and does not ask the user for input.) Input Validation: Do not accept a number less than 1 for the number of employees.Do not accept a negative number for the days any employee missed.

Answers

Answer 1

The program that calculates the average number of days a company's employees are absent will be:

#include <iostream>

using namespace std;

// function prototypes

void GetNumEmployees(int&);

int TotalDaysMissed(int);

float AverageDaysMissed(int,int);

// testing main code

int main(){

int count=0;

GetNumEmployees(count);

cout << endl;

int total = TotalDaysMissed(count);

cout << endl;

float average = AverageDaysMissed(count,total);

cout << "Average Days Missed: " << average << endl;

return 0;

}

// function definitions

void GetNumEmployees(int &count){

do{

cout << "Enter Number of Employees: ";

cin >> count;

}while(count < 1);

}

int TotalDaysMissed(int count){

int total = 0;

int missing = 0;

for(int i=0; i<count; i++){

do{

cout << "Enter Employee " << i+1 << " Missing days: ";

cin >> missing;

}while(missing<0);

total = total+missing;

}

return total;

}

float AverageDaysMissed(int count,int total){

float average = (float)total/count;

return average;

}

How is the program illustrated?

Coding generates a set of instructions that computers can use. These instructions specify which actions a computer can and cannot perform. Coding enables programmers to create programs like websites and apps.

Computer programmers can also instruct computers on how to process data more efficiently and quickly. In this case, the program is illustrated above.

Learn more about program on:

https://brainly.com/question/26642771

#SPJ1


Related Questions

Choose the parts of the browser window.
1. [ web form, keyword list, pliers, status bar ]
2. [ url repo, scissors tool, display window, mail bar ]
3. [ exclamation bar, address bar, menu button, lucky button ]
4. [ title bar, back button, forward bar, enter bar ]

Answers

Answer:

It's number 4.

Explanation:

In your browser you have a title bar, where you input the web address or search query. You have the Forward and Back button to navigate between the history of the current tab.

The other guy didn't even try sorry about that :/

My best guess is the following

1.

keyword list

2.

display window

3.

address bar

4.

back button

Five Star Retro Video rents VHS tapes and DVDs to the same connoisseurs who like to buy LP record albums. The store rents new videos for $3.00 a night, and oldies for $2.00 a night.

Write a program that the clerks at Five Star Retro Video can use to calculate the total charge for a customer’s video rentals.

The program should prompt the user for the number of each type of video and output the total cost.

An example of the program input and output is shown below:

Enter the number of new videos: 3
Enter the number of oldies: 2

The total cost is $13.0

Answers

The clerks at Five Star Retro Video can use to calculate the total charge for a customer’s video rentals is of three types.

What is Five Star Retro Video ?

The same discerning individuals who enjoy purchasing LP record albums may rent VHS tapes and DVDs from Five Star Retro Video. The shop offers current DVD rentals for $3.00 per night and vintage titles for $2.00 per night.

n1 is same to eval(input("Enter the number of new videos: "))

Enter the number of seniors in the box below.

print("The whole expense is $%.1f"%(n1*3+n2*2))

Thus, the clerks at Five Star Retro Video can use to calculate the total charge for a customer’s video rentals is of three types.

To learn more about  Five Star Retro Video, refer to the link below:

https://brainly.com/question/13138157

#SPJ1

What is the error in the following pseudocode?

// This program displays the highest value in the array.

Declare Integer SIZE = 3

Declare Integer values[SIZE] = 1, 3, 4

Declare Integer index

Declare Integer highest



For index = 0 To SIZE − 1

If values[index] > highest Then

Set highest = values[index]

End If

End For

Display "The highest number is ", highest

Answers

The error is in line 4: Declare Integer highest

Answer:

The error in the pseudocode is that the variable "highest" is not initialized to any value before the for loop starts. This means that when the first comparison is made in the if statement, the value of "highest" will be undefined and could potentially cause unexpected behavior. To fix this error, the variable "highest" should be initialized to a value before the for loop, such as the first element in the array:

Declare Integer SIZE = 3

Declare Integer values[SIZE] = 1, 3, 4

Declare Integer index

Declare Integer highest = values[0] // Initialize highest to the first element in the array

For index = 1 To SIZE - 1 // Start loop from index 1, since highest is already initialized to index 0

If values[index] > highest Then

Set highest = values[index]

End If

End For

Display "The highest number is ", highest

Explanation:

Write a complete Java program that prompts the user to input two integer values and outputs the largest and smallest numbers. The program includes JOptionPane for both the input and output statements.

Answers

Using the knowledge in computational language in JAVA  it is possible to write a code that complete Java program that prompts the user to input two integer values and outputs the largest and smallest numbers.

Writting the code:

import javax.swing.JOptionPane;

public class Main

{

public static void main(String[] args) {

     String firstNumber = JOptionPane.showInputDialog("Enter first integer");

     String secondNumber = JOptionPane.showInputDialog("Enter second integer");

     int number1 = Integer.parseInt(firstNumber);

     int number2 = Integer.parseInt(secondNumber);

     

     int largestNumber = Math.max(number1, number2);

     int smallestNumber = Math.min(number1, number2);

     

     JOptionPane.showMessageDialog(null, "Largest Number is: " + largestNumber + "\nSmallest Number is :" + smallestNumber);

}

}

See more about JAVA at brainly.com/question/12975450

#SPJ1

A small piece of data that some websites save which contains information such as websites that you visited and everything you clicked is called

Answers

A small piece of data that some websites save which contains information such as websites that you visited and everything you clicked is called  cookie.

What is a piece of data about a user from a website?Cookies are little data files that websites save on the user's device. Cookies are frequently used by websites to remember user preferences and provide a personalized experience, as well as to gather information for advertising purposes.Cookies, often known as "HTTP cookies," are little text files stored on your computer by websites to assist track your activities. The majority of cookies are used to keep track of the sites you're logged in to and your local settings on those sites.Cookies are text files that include small amounts of data, such as a login and password, and are used to identify your machine when you connect to a computer network. HTTP cookies are used to identify unique users and to improve your web browsing experience.

To learn more about  Cookies refer,

https://brainly.com/question/1308950

#SPJ1

Operations security requires the implementation of physical security to control which of the following?

A. Unauthorized personnel access

B. Incoming hardware

C. Contingency conditions

D. Evacuation procedures

Answers

Answer:

A. unauthorized personnel access

Explanation:

like key card readers to control the opening of doors.

¿Que ess ready player one?

Answers

The interpretation or translation of the following phrase is: "Are you ready player one?"

Why are translations important?

Translation is necessary for the spreading new information, knowledge, and ideas across the world. It is absolutely necessary to achieve effective communication between different cultures. In the process of spreading new information, translation is something that can change history.

In this example, it is possible that a flight simulation has just displayed the above message. It is important for the trainee in the simulator to be able to interpret the following message.

Learn more about interpretation:
https://brainly.com/question/28879982
#SPJ1

Full Question:

What is the interpretation of the following:
¿Que ess ready player one?

Which of the following best describes the purpose of a design specification?
A. Tracking errors that arise through user testing
B. Documenting comments that will need to be added to a program
C. Describing the requirements for how a program will work or users will interact with it
D. Listing detailed questions that will be asked of users during interviews

Answers

The answer is B). Documenting a comments that will need to be added to a program on your computer and also a phone too

which of the following compliance standards was introduced to provide a minimum degree of security to organizations who handle customer information such as debit card and credit card details daily?
a. PCIDSS
b. SOX
c. FISMA
d. GLB

Answers

A.) PCIDSS

Is used to handle,store and that has information regarding the details of debit card and credit card details in a safe and secure environment.

Jamal wants to download a software program that is free to use. What should he do?

Jamal should download the software from ??? and should then ???.
The Free website] install the software]
a reputable website] scan the download for viruses]
the first pop-up] copy the download on a flesh drive]

please just please help me

Answers

Answer:

The Free website] install the software]

a reputable website] scan the download for viruses]

THIS is the correct answer I think

"In a(n) ________ database, any action on one element immediately affects the elements related to it.
A) Hierarchical
B) Multidimensional
C) Object-Oriented
D) Relational"

Answers

In Hierarchical database, option A, any action on one element immediately affects the elements related to it.

What is the purpose of a hierarchical database?

Geographical data and file systems are the two main uses of the hierarchical structure in modern computing. Currently, hierarchical databases are still frequently used, particularly in applications like banking, healthcare, and telecommunications that demand extremely high performance and availability.

Therefore, A data model in which the data are arranged in a tree-like form is called a hierarchical database model. The information is kept in records that are linked to one another by links. A record is a group of fields, each of which has a single value.

Learn more about Hierarchical database from

https://brainly.com/question/13261071
#SPJ1

"Which of the following is a true statement regarding privacy?
An individual’s right to control the use of and disclosure of personal information
Private personal information may become public under the Freedom of Information Act
A security service we provide to our customers
All of the above"

Answers

A true statement regarding privacy is that: A. An individual’s right to control the use of and disclosure of personal information.

What is a PII?

PII is an abbreviation for personally identifiable information and it can be defined as any type of information that can be used by individuals or business organizations (companies) on its own or with other relevant data, so as to identify an individual.

This ultimately implies that, all personally identifiable information (PII) connotes the privacy of an individual and as such, they are under the control of individuals with the exclusive right on whether or not to be disclosed others.

Read more on PII here: https://brainly.com/question/28165974

#SPJ1

while configuring a ssl vpn connection using cisco asdm, if you do not have a tacacs server configured for authentication, which other option will you have to choose?

Answers

While configuring a ssl vpn connection using cisco asdm, if you do not have a tacacs server configured for authentication, the other option will you have to choose is Local user database.

A local user database is what?

A virtual private network (VPN) known as a Secure Sockets Layer Virtual Private Network (SSL VPN) is one that is created using the Secure Sockets Layer (SSL) protocol to establish a secure and encrypted connection over a less-secure network, such as the Internet.

Therefore, establishing and managing a local user database. For on-box authentication, access control, user segmentation, and data storage, you can set up multiple local user databases. You have access to a local user database during access policy operation and can read from and write to it.

Learn more about ssl vpn connection  from

https://brainly.com/question/28404013
#SPJ1

what member of an organization should decide where the information security function belongs within the organizational structure? why?

Answers

Answer:

Chief Information Officer (CIO) should be responsible for the overall management of information and data within the organization, and as such, is in the best position to understand the risks and vulnerabilities associated with this information.

The CIO can ensure that the information security function is able to effectively protect the organization's information and data, while also supporting the organization's business objectives.

"Which of the following is a true statement regarding “privacy”?
An individual’s right to control the use of and disclosure of personal information
Private personal information may become public under the Freedom of Information Act
A security service we provide to our customers
All of the above"

Answers

The statement  regarding  privacy  is An individual’s right to control the use of and disclosure of personal information.

What is meant by privacy ?

It has to do with a person's capacity to decide for themselves when, how, and why others handle their personal information. To ensure human dignity, safety, and self-determination, privacy must be protected. People are able to freely create their own personalities.

In general, the right to privacy refers to the freedom from interference or intrusion and the right to be left alone. The right to some level of control over the collection and use of your personal information is known as information privacy.

Human dignity and other fundamental principles like free speech and association are supported by privacy. It is currently one of the most crucial human rights issues in history. This report's release is a reflection of the fundamental right's expanding significance, diversity, and complexity.

To learn more about privacy refer to:

https://brainly.com/question/27034337

#SPJ1

you have a layer 3 switch that is capable of intervlan routing. which process must you complete to allow intervlan routing on a layer 3 switch interface?

Answers

A process which you must complete to allow interVLAN routing on a Layer 3 switch interface is configuring the interface as a switch virtual interface.

What is a switch?

A switch can be defined as a network device which is designed and developed for the programmatic redirection of request traffic of a client from one server.

What is a Layer 3 switch?

In Computer networking, a Layer 3 switch can be defined as a type of network device that is designed and developed to use ASICs to handle packet switching for interVLAN routing (communication) on an active network.

This ultimately implies that, a Layer 3 switch must be configured as a switch virtual interface in order to enable interVLAN routing (communication).

Read more on switch here: brainly.com/question/14850209

#SPJ1

why dose it go to a new tab when I look something up?

Answers

Answer:

Try opening Terminal and pasting this in:

defaults write com.apple.Safari TargetedClicksCreateTabs -bool false

A compound conditional is a type of selection that uses statements with _______3_____ or more logical conditions.

Answers

A compound conditional is a type of selection that uses statements with AND 3 OR or more logical conditions.

What is decision process?

Selection structures are statements that use conditions to choose which group of statements to run. Only when a given circumstance is met is a specific action taken; otherwise, it is not.

Hence, It is possible to test two conditions with compound conditionals in a single sentence. In Blockly, there are two ways to complete this with just one block! You can check to see if a statement's two conditions are true or just the first one.

Learn more about compound conditional from

https://brainly.com/question/29406811

#SPJ1

a support technician is installing a new sata hard drive on a new computer. what is the best type of cable connector the technician will plug in to supply power to the drive

Answers

Thee best type of cable connector the technician will plug in to supply power to the drive is a 15-pin connector.

What is a cable connector?

The part you attach to the end of a cable so it can plug into a port or an interface of an electrical system is called a cable connector. Most connectors fall into one of two genders: male or female. Male connectors have one or more exposed pins, while female connectors have holes for the male pins to fit into.

Therefore, For computer visual output, there is a standard connector called the Video Graphics Array (VGA). The 15-pin connector was first used with the 1987 IBM PS/2 and its VGA graphics technology, and it later appeared on many monitors, projectors, and high-definition televisions.

Learn more about cable connector from

https://brainly.com/question/29387419
#SPJ1

Small organizations with only a few computers can manage each device in an ad hoc way without standardization. Larger organizations need to use standardization to scale their ability to support many users. Consider what you’ve learned about Active Directory and Group Policy and how they can be used to simplify user support and desktop configuration. You can search the Internet for examples. Create a posting that describes your thoughts on how Active Directory and Group Policy improve management in large organizations.

Answers

Organizational security is the principal application of Group Policy Management. Group policies, also known as Group Policy Objects (GPOs), enable decision-makers and IT professionals to deploy critical cybersecurity measures throughout an organization from a single place.

What is an Active Directory?

Microsoft Active Directory has a feature called Group Policy. Its primary function is to allow IT administrators to manage people and machines throughout an AD domain from a single location.

Microsoft Active Directory is a directory service designed for Windows domain networks. It is featured as a set of processes and services in the majority of Windows Server operating systems. Active Directory was initially exclusively used for centralized domain management.

Group Policy is a hierarchical framework that enables a network administrator in charge of Microsoft's Active Directory to implement specified user and computer configurations. Group Policy is essentially a security tool for applying security settings to people and machines.

Learn more about Active Directories:
https://brainly.com/question/14469917
#SPJ1

Which of the following statements generates a random number between 0 and 50?

Choices;

a. srand(time(0));

num = rand() % 50;

b. srand(time(0));

num = rand()50;

c. srand(time(10));

num = rand() % 50;

d. srand(time(10));

num = rand()/50;

Answers

Srand(time(0)); num = rand() %50 is statements generates a random number between 0 and 50

What are the functions of time and Srand?A distinct sequence results from changing the seed value. The computer's internal clock is used by srand(time(NULL)); to regulate the seed selection. The seed is always changing since time is a moving target.Time(0) provides the amount of time in seconds since the Unix epoch, making it a decent "unpredictable" seed (you can be sure your seed will only be the same once, unless you run your application more than once in the same second).Because the rand() function always produces the same sequence of numbers, the results are not truly random.

To learn more about Srand refer to:

https://brainly.com/question/16792424

#SPJ1

which statement can be used to handle some of the runtime errors in a program?
a. a try statement
b. a try/except statement
c. an exception statement
d. an exception handler statement

Answers

Answer:

B

Explanation:

The answer is B, a try/except statement. This can be used to handle some of the runtime errors in a program.

In golf, par represents a standard number of strokes a player needs to complete a hole. Instead of using an absolute score, players can compare their scores on a hole to the par figure. Families can play nine holes of miniature golf at the Family Fun Miniature Golf Park. So that family members can compete fairly, the course provides a different par for each hole based on the player’s age.

Pars by Age and by Hole

Develop the logic for a program that accepts a player’s name, age, and nine-hole score as input. Display the player’s name and score on each of the nine holes, with one of the phrases Over par, Par, or Under par next to each score.

Answers

Using the knowledge in computational language in pseudocode it is possible to write a code that accepts a player’s name, age, and nine-hole score as input.

Writting the code:

groups={4:[8, 8, 9, 7, 5, 7, 8, 5, 8],5:[7, 7, 8, 6, 5, 6, 7, 5, 6],8:[6, 5, 6, 5, 4, 5, 5, 4, 5],

12:[5, 4, 4, 4, 3, 4, 3, 3, 4],16:[4, 3, 3, 3, 2, 3, 2, 3, 3]}

print(groups[4][3])

n=int(input("Enter No.of players"))

player_list=[]

scores={}

for i in range(n):

player_list.append([input("name"),int(input("age"))])

for i in player_list:

lst=[]

for j in range(9):

print("Score for hole ",j+1)

lst.append(int(input("")))

scores[i[0]]=lst

for i in player_list:

index=0

See more about pseudocode at brainly.com/question/13208346

#SPJ1

all of the following are popular linux distributions, except:_______.
A. Red Hat
B. Ubuntu
C. Debian
D. Deviant

Answers

The option that are popular Linux distributions, except option D. Deviant.

What does Linux distribution refer to?

A Linux distribution, also known as a "Linux distro," is a version of the free and open-source Linux operating system that includes additional software, such as the KVM hypervisor, as well as installation programs, management tools, and other software.

Therefore, There are commercially supported distributions like Fedora (Red Hat), openSUSE (SUSE), and Ubuntu (Canonical Ltd.), as well as distributions that are solely community-driven like Debian, Slackware, Gentoo, and Arch Linux.

Learn more about Linux distributions from

https://brainly.com/question/13139061
#SPJ1

Kaleb is looking at the list of WiFi devices currently connected to the network. He sees a lot of devices that all appear to be made by the same manufacturer, even though the manufacturer name is not listed on the screen. How could he have determined that they were made by the same manufacturer?

Answers

Kaleb can determined that they were made by the same manufacturer by the use of option c. There are a large number of devices that have addresses ending in the same 24 bits.

What unidentified devices are linked to my network, and how can I identify them?

How to locate unfamiliar devices on a network manually

Open the Terminal or the Command window on your Windows, Linux, or macOS computer.Use the command prompt to look up every network setting, including the default gateway and IP address.To obtain a list of all IP addresses linked to your network, type the command "arp -a".

Nowadays, every router has a distinct Wi-Fi password that is practically impossible to crack. It denotes that your mysterious devices are likely appliances you've neglected, such your DVR (perhaps a Freeview or Sky box), a smart thermostat, plug, or other smart home appliance.

Learn more about WiFi from

https://brainly.com/question/13267315
#SPJ1

See full question below

Kaleb is looking at the list of WiFi devices currently connected to the network. He sees a lot of devices that all appear to be made by the same manufacturer, even though the manufacturer name is not listed on the screen. How could he have determined that they were made by the same manufacturer?

a. There are a large number of devices that have the same OUI.

b. The first four characters are the same for a large number of the device MAC addresses.

c. There are a large number of devices that have addresses ending in the same 24 bits.

d. There are a large number of devices using the same WiFi Channel.

Expert Answer

flow chart to read 50 numbers and print summation of even numbers only

Answers

The sum of terms in an arithmetic progression formula is used to get the sum of even numbers formula. Sum of Even Numbers Formula is written as n(n+1), where n is the total number of entries in the series.

What is print summation of even numbers only?

Python comes with a built-in method called sum() that adds up the values in the list. Syntax: sum (iterable, start) (iterable, start) Iterable:

Most importantly, iterable should be numbers. Start: This start is added to the total of the iterable's numbers.

Therefore, By definition, when a number is divided by two, there is never a remainder. There will therefore be no residue when it is added to another even integer.

Learn more about summation here:

https://brainly.com/question/29334900

#SPJ1

1. Add a new sales rep named Tina Webb with a number of 85. When complete, type your construct here. Then, display the contents of the rep table. Insert your query and results here. Be sure all columns display.
2. Change Tina Webb’s last name to Perry. When complete, type your construct here. Then, display the contents of the rep table. Insert your query and results here.
3. Delete sales rep 85. When complete, copy and paste your construct here. Then, display the contents of the rep table. Insert your query and results here.

Answers

Using the knowledge in computational language in python it is possible to write a code that complete, type your construct here. Then, display the contents of the rep table.

Writting the code:

INSERT INTO part value ('AT94', 'Iron', 50, 'HW', '3', 24.95);

INSERT INTO part value

INSERT INTO part value

INSERT INTO part value

INSERT INTO part value ('

INSERT INTO part value ('

INSERT INTO part value (

INSERT INTO part value ('KL62', 'Dryer', 12, 'AP', '1', 349.95);

INSERT INTO part value ('KT03', 'Dishwasher', 8, 'AP', '3', 595.00);

INSERT INTO part value ('KV29', 'Treadmill', 9, 'SG', '2', 1390.00);

#-- Populate order_line table

INSERT INTO order_line value ('21608', 'AT94', 11, 21.95);

INSERT INTO order_line value ('21610', 'DR93', 1, 495.00);

INSERT INTO order_line value ('21610', 'DW11', 1, 399.99);

INSERT INTO order_line value ('21613', 'KL62', 4, 329.95);

INSERT INTO order_line value ('21617', 'BV06', 2, 794.95);

INSERT INTO order_line value ('21617', 'CD52', 4, 150.00);

INSERT INTO order_line value ('21623', 'KV29', 2, 1290.00);

See more about python at brainly.com/question/18502436

#SPJ1

A specialized database programming language.is ____ a. C++ b. C# 20 c. Java d. SQL

Answers

A specialized database programming language is SQL. The correct option is d.

What is SQL?

SQL (Structured Query Language) is one of the most well enough and longest-running database languages.

It includes data definition and data manipulation languages, as well as the ability to write queries in a database.

C#, C++, and JAVA are programming languages created by, whereas SQL is a database query language created by Oracle for creating and managing databases.

Structured Query Language (SQL) is a programming language that is used to manage relational databases and perform various operations on the data contained within them.

Thus, the correct option is c.

For more details regarding SQL, visit:

https://brainly.com/question/13068613

#SPJ1

One of your colleagues, and good friends, is a technical application architect and has been instrumental in architecting the core infrastructure that runs some of the most important processes for your company. He is widely acknowledged as a technical Subject Matter Expert (SME) by his peers. You run into him one day at lunch and he tells you: "I don't care what Gartner and Forrester think, data cannot be secure in the cloud. The cloud is inherently less safer than our own data centers" What would you tell your colleague that makes him rethink his position on data security in the Cloud?

Answers

The Subject Matter Expert (SME) must understand that for starters, cloud servers are often housed in warehouses that most employees do not have access. Second, all files on cloud servers are encrypted. This means they are jumbled, making it far more difficult for thieves to access them. Hence data on the cloud is relatively more secure.

What are Cloud Servers?

A cloud server is a pooled, centralized server resource that is hosted and distributed across a network—typically the Internet—and may be accessed by numerous users on demand. Cloud servers may provide all of the same services as traditional physical servers, including processing power, storage, and applications.

Because any software faults are isolated from your environment, a cloud server provides the business user with reliability and security. Other cloud servers will have no effect on your cloud server, and vice versa. Unlike physical servers, if another user overloads their cloud server, this has no effect on your cloud server.

Cloud servers are reliable, quick, and secure. They avoid the hardware concerns that physical servers have, therefore they are likely to be the most dependable solution for organizations that wish to keep their IT spend as low as possible.

Cloud servers offer better service for less money. You'll receive more resources and a quicker service than you would with a physical server at comparable pricing. A website hosted in the cloud will load quicker.

Cloud servers provide scalability. It is relatively simple and quick to upgrade by adding memory and storage space, and it is also less expensive.

Learn more about data Security:
https://brainly.com/question/28321601
#SPJ1

the user interface design principle that places an emphasis on making sure the users know where they are in the system at all times and what information is being displayed is:

Answers

The user interface design principle that places an emphasis on making sure the users know where they are in the system at all times and what information is being displayed is option c. content awareness.

What is content awareness?

This is seen as the capacity to identify the data that is present in a given file, folder, program, or other data store, whether that data is at rest, in use, or in transit.

Therefore, Users should have control over the interface, according to UI design principles. Ensure that using a product is comfortable. lessen the cognitive load. Consistently design user interfaces .

Learn more about user interface design principle  from
https://brainly.com/question/17372400
#SPJ1

See full question below

6. The user interface design principle that places an emphasis on the user's ability to always know where he/she is in the system and what information is being displayed is _____.

a. aesthetics

b. consistency

c. content awareness

d. layout

e. user experience

Other Questions
transient microorganisms are less associated with the skin than resident microorganisms true or false which type of physiologic change in the kidney would the nurse associate with nocturnal polyuria in older adults The ____ method of a file object inputs a line of text and returns it as a string, including the newline. a.line c.readline b.read d.readLine. What did the Supreme Court decide in New York Times Co vus ?. if hurrevac indicates that your community has a 15% probability of having hurricane winds when landfall is expected 72 hours from now, you can be reasonably confident that you will probably only have tropical-storm-force winds. When must the cleaning step occur when cleaning and sanitizing in a three compartment sink before rinsing?. Nerida Kyle is thinking of buying a car to avoid taking Lyft to work. She is using the cost-benefit principle to evaluate this decision and is calculating the costs and benefits to owning the car over the next year. She's gathered the following information to help her make her decision: The car costs $15,000 to purchase, but she can resell it after a year of use for $13,500. She thinks gas will cost her about $1,200 for the year. The annual insurance premium for her car is $800. Maintenance and repairs will cost about $300 for the year. Using Lyft to get to work would cost her $4,000 for the year. The cost of the car for the year is: which of the following plant pigments would absorb light at 420 nm. check all that apply.chlorophyll aphycocyaninphycoerythrinbeta carotene A local school administrator observes an increase in the number of flu cases in the public schools over the last two years. She is concerned that some families cannot afford flu vaccine and are therefore not having children vaccinated. She is also concerned that the failure to vaccinate some children is putting other children at risk, so she proposes that the state subsidize vaccines to increase coverage rates. a. Determine whether the failure to vaccinate some children is an external benefit or an external cost. If an external cost is present, move point A and point B to show the marginal social cost curve. If an external benefit is present, move point A and point B to show the marginal social benefit curve. Place point C at the equilibrium outcome. Place point D at the socially optimal outcome. Measle vaccines Supply (marginal private col) Price Demand (marginal private benelit) Quantity b. From an efficiency perspective, subsidizing vaccines make sense because without the subsidy, the equilibrium quantity is the socially optimal quantity. The school nurse suggests publishing a list of which kids did not get a flu vaccine, in the hope that public shaming will lead people to vaccinate their children. c. The school nurse is hoping that social norms will act like a and lead the market to a outcome. d. What flaws might the school nurse's suggestion have? Select all that apply. Parents with immunocompromised children will know which students are not vaccinated and can take precautions to keep their kids safer by knowing if a student in their child's class is a potential carrier. People that feel passionate about not vaccinating are typically doing so for medical or religious reasons and will not sway to social norms or peer pressure. The school would potentially face a lawsuit because sharing protected health information (PHI), like immunization records, without parents' consent could be a violation depending on regulations of the state. using the terman archives, friedman and his colleagues found that___children tended to live longer, while____children tended to die earlier. a car is traveling at $$50 mi/hr when the brakes are fully applied, producing a constant deceleration of $$22 ft per sq sec. what is the distance (in feet) covered before the car comes to a stop? be mindful of the units being used in this problem Which cranial nerve is in charge of the motor control of the muscles that move the tongue?. Is a higher return on investment better?. under what circumstances is it necessary to use the modified internal rate of return (mirr) instead of the internal rate of return (irr)? explain. suppose that the demand and supply of money are initially in equilibrium, and that the demand for money increases. a monetary authority interested in keeping the money supply constant and the interest rate low must a recent article posted to the journal of nutritional science surveyed dog owners to ask about their dog walking habits in order to find out whether the dogs were getting enough exercise. of course, the necessary amount of exercise varies by breed; results were categorized according to breed. read (or glance through) the article below; the study design and results sections are the most relevant. What is military intervention?. how far will it go, given that the coefficient of kinetic friction is 0.10 and the push imparts an initial speed of 3.6 m/s ? What was the dance that became popular during the Roaring Twenties?. a pollster is going to sample a number of voters in a large city and construct a 90% confidence interval for the proportion who support the incumbent candidate for mayor. find a sample size so that the margin of error will be no larger than 0.05. be sure to round up to the next whole number.