1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
kap26 [50]
3 years ago
5

Which of the following is a Dashboard Scoreboard for alignment of the business where information is constantly flowing through t

he Tiers so immediate actions can be taken?
Engineering
1 answer:
Setler79 [48]3 years ago
8 0

Answer:

What is a dashboard?

A dashboard is an information management tool used to track KPIs, metrics, and key data points that are relevant to your business, department, or a specific process. Dashboards aggregate and visualize data from multiple sources, such as databases, locally hosted files, and web services. Dashboards allow you to monitor your business performance by displaying historical trends, actionable data, and real-time information.

Dashboards actually take their name from automobile dashboards and they are used in much the same way. For the sake of an analogy, let’s look at a car. There may be hundreds of processes that impact the performance of your vehicle if you look under the hood. Your car’s dashboard summarizes this using visualizations so you can focus on what matters most: safely driving your vehicle.

For businesses, there are hundreds of processes that impact your performance if you look ‘under the hood’, so to speak. And with a wealth of data made available these days, managing and extracting value from it can be difficult. Simplifying data analysis and distribution through tools like dashboards is a way to help businesses rev their engines and make smarter, better, faster data-driven decisions.

And a well designed dashboard levels up your approach to information management. Everyone in the business, regardless of role, has questions about your company performance, whether it be campaign performance, new wins, or churn rate. Dashboards bring everyone (and your metrics) together in one place to answer these questions.

Explanation:

You might be interested in
Air is pumped from a vacuum chamber until the pressure drops to 3 torr. If the air temperature at the end of the pumping process
malfutka [58]

Answer:

The final pressure is 3.16 torr

Solution:

As per the question:

The reduced pressure after drop in it, P' = 3 torr = 3\times 0.133\ kPa

At the end of pumping, temperature of air, T = 5^{\circ}C = 278 K

After the rise in the air temperature, T' = 20^{\circ}C = 293 K

Now, we know the ideal gas eqn:

PV = mRT

So

P = \frac{m}{V}RT

P = \rho_{a}RT          (1)

where

P = Pressure

V = Volume

\rho_{a} = air\ density

R = Rydberg's constant

T = Temperature

Using eqn (1):

P = \rho_{a}RT

\rho_{a} = \frac{P}{RT}

\rho_{a} = \frac{3 times 0.133\times 10^{3}}{0.287\times 278} = 0.005 kg/m^{3}

Now, at constant volume the final pressure, P' is given by:

\frac{P}{T} = \frac{P'}{T'}

P' = \frac{P}{T}\times T'

P' = \frac{3}{278}\times 293 = 3.16 torr

7 0
4 years ago
1. The system must be able to manage multiple students (max of 15) and their grades for assignments from three different assignm
mr_godi [17]

Answer:

#include<iostream>

#include<string.h>

using namespace std;

class gradebook;

class student

{

friend class gradebook;

char name[20]; // std name

int homework_grades[6], quiz_grades[6], exam_grades[4]; //grades array

float homework_avg, quiz_avg, exam_avg, final_avg;

};

class gradebook

{

student list[16];

public:

char gb_name[20]; // gradebook name

int max, total;

// Constructor

gradebook()

{

strcpy(gb_name,"noname");

max = 5;

total = 0;

for(int i=1;i<=15;i++)

{

strcpy(list[i].name,"noname");

for(int j=1;j<=5;j++)

{

list[i].homework_grades[j] = -1;

list[i].quiz_grades[j] = -1;

}

list[i].exam_grades[1] = list[i].exam_grades[2] = list[i].exam_grades[3] = -1;

}

}

// Member functions

void display_std_name();

void display_grades(int, int);

int add_std(char *new_name);

int remove(int);

//int ch_grade(int, int);

};

// Define all functions

// Remove a student from list and adjust remaining

int gradebook::remove(int std_id)

{

if(total==0 || std_id>total || std_id<=0)

return 0;

if(std_id==total)

{

cout<<"\n“"<<list[std_id].name<<"” has been successfully removed! (New class size: 2)";

strcpy(list[total--].name,"noname");

return 1;

}

cout<<"\n“"<<list[std_id].name<<"” has been successfully removed! (New class size: 2)";

for(int i=std_id; i<total; i++)

{

list[i]=list[i+1];

}

total--;

return 1;

}

// Add student to gradebook

int gradebook::add_std(char *new_name)

{

if(total<15)

{

strcpy(list[++total].name, new_name);

return 1;

}

return 0;

}

// Display student name list

void gradebook::display_std_name()

{

for(int i=1;i<=total;i++)

{

cout<<"\n"<<i<<" "<<list[i].name;

}

}

/* Display grades of students

// (grade_id, student_number_in_list)

homework(1), quiz(2), exam(3)

*/

void gradebook::display_grades(int g_id, int std_id)

{

int i;

if(std_id<=total)

{

if(g_id==1)

{

for(i=1;i<6;i++)

{

cout<<"\n"<<i<<". ";

if(list[std_id].homework_grades[i]==-1) cout<<"<ungraded>";

}

}

else if(g_id==2)

{

for(i=1;i<6;i++)

{

cout<<"\n"<<i<<". ";

if(list[std_id].quiz_grades[i]==-1) cout<<"<ungraded>";

}

}

else if(g_id==3)

{

for(i=1;i<4;i++)

{

cout<<"\n"<<i<<". ";

if(list[std_id].exam_grades[i]==-1) cout<<"<ungraded>";

}

}

}

else

cout<<"\nNo such std exists";

}

/****************************** MAIN ****************************/

int main()

{

int main_choice, grade_choice, std_id, new_grade;

char g_name[20], s_name[20];

float a,b,c;

gradebook g;

do

{

cout<<"\n\n-=| MAIN MENU |=-";

cout<<"\n1. Add a student\n2. Remove a student\n3. Change a student’s grade\n4. Change group weights\n5. Change the gradebook name\n6. Display class averages\n7. Display full report\n0. QUIT\n";

cout<<"\nEnter an action: ";

cin>>main_choice;

switch(main_choice)

{

case 0:

break;

case 1:

cout<<"\n-=| ADDING STUDENT |=-";

cout<<"\nPlease enter the student’s name: ";

cin>>s_name;

if(g.add_std(s_name))

cout<<"\n"<<s_name<<" was successfully added to the gradebook!";

else

cout<<"\nStudents cannot be added because the gradebook is full!";

break;

case 2:

cout<<"\n-=| REMOVING STUDENT |=-";

if(g.total!=0)

{

g.display_std_name();

cout<<"\n Enter student to remove: ";

cin>>std_id;

if(!g.remove(std_id))

cout<<"\nCannot remove students";

}

else

cout<<"\nStudents cannot be added because the gradebook is full!";

break;

case 3:

cout<<"\n-=| CHANGING GRADE |=-\n1. Change a homework grade\n2. Change a quiz grade\n3. Change an exam grade";

cout<<"\nWhat type of grade would you like to change: ";

cin>>grade_choice;

g.display_std_name();

cout<<"\nWhich student’s grade would you like to change? ";

cin>>std_id;

//ch_grade(grade_choice, std_id);

g.display_grades(grade_choice, std_id);

break;

/*

case 4:

cout<<"\n-=| CHANGING WEIGHTS |=-";

while(1)

{

cout<<"\nEnter the weights, separated by spaces, in the order of homework, quizzes, and exams (total must add up to 1.0):";

cin>>a>>b>>c;

if(a+b+c==1.00)

break;

else

cout<<"\n Weights do not add up to 1.0, try again...";

}

break;

case 5:

cout<<"\n-=| CHANGING NAME |=-\nPlease enter the new name for the gradebook: ";

cin>>g_name;

cout<<"\n Gradebook name changed from “ ” to "<<g_name;

break;

case 6:

cout<<"\n-=| CLASS AVERAGES |=-";

cout<<"\nHomework average of class: ";

cout<<"\nQuiz average of class: ";

cout<<"\nExam average of class: ";

cout<<"\nFinal average of class: ";

break;

case 7:

break;

*/

default:

cout<<"\n\nInvalid input\n\n";

}

}while(main_choice!=0);

return 0;

}

Explanation:

6 0
3 years ago
Are commonly made out of cast iron and connect directly to the engine
iren [92.7K]

Answer:

The engine block.

Explanation:

3 0
3 years ago
What is this spray pattern defect most likely caused by:
DiKsa [7]

Answer:

fluid nozzle that is too large

6 0
2 years ago
A safety interlock module operates by monitoring the voltage from the
In-s [12.5K]

Answer: its an Ignition coil

8 0
4 years ago
Other questions:
  • Most motor vehicle crashes in Florida in 2016 occurred on
    13·2 answers
  • Explain the two advantages and the two disadvantages of fission as an energy source.
    12·1 answer
  • Explain what entropy is in relation to the second law of thermodynamics?
    9·1 answer
  • Use the drop-down menus to choose the correct term or words to complete the statements.
    10·1 answer
  • A 2-m3 rigid tank initially contains air at 100 kPa and 22°C. The tank is connected to a supply line through a valve. Air is flo
    14·1 answer
  • When you first start a car after it has been sitting for more than an hour, it pollutes up to ......times more than when the eng
    7·2 answers
  • Water is leaking out of an inverted conical tank at a rate of 11700.0 cubic centimeters per min at the same time that water is b
    11·1 answer
  • At what angle should you place your elbows while at your workstation? Above 120 degrees At 60 degrees Below 90 degrees Between 9
    15·2 answers
  • How might a field like philosophy of history help scientists​
    14·1 answer
  • 10 tasks and 5 exercises. How many ways are there to build the test?
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!