11. Stationary Expenditure
A stationery store sells pencils at $1.20 each, erasers at $2 each, and compasses at $5 each. Write a program that asks the user for the number of each of these items purchased, calculates the total expenditure made by the user, and then displays the result on the screen.

Answers

Answer 1

Answer:

What type of program python?


Related Questions

A size of a jumbo candy bar with rectangular shape is l x w x h. Due to rising costs of cocoa, the volume of the candy bar is to be reduced by p%.

To accomplish this, the management decided to keep the height of the candy bar the same, and reduce the length and width by the same amount.

For example, if l = 12, w = 7, h = 3, and p = 10, then the new dimension of the candy bar is 11.39 x 6.64 x 3.

Below is an example of how the completed program should work:

Enter the length, width, and height of the candy bar separated by space(s): 12 7 3

Enter the amount of the reduced volume as a percentage: 10

The new dimensions of the candy bar is: 11.38 x 6.64 x 3.00


Format your output with setprecision(2) to ensure the proper number of decimals for testing!

Answers

Please wait until more research is discovered...

Question

A size of a jumbo candy bar with rectangular shape is l x w x h. Due to rising costs of cocoa, the volume of the candy bar is to be reduced by p%.

To accomplish this, the management decided to keep the height of the candy bar the same, and reduce the length and width by the same amount.

For example, if l = 12, w = 7, h = 3, and p = 10, then the new dimension of the candy bar is 11.39 x 6.64 x 3.

Below is an example of how the completed program should work:

Enter the length, width, and height of the candy bar separated by space(s): 12 7 3

Enter the amount of the reduced volume as a percentage: 10

The new dimensions of the candy bar is: 11.38 x 6.64 x 3.00

Format your output with setprecision(2) to ensure the proper number of decimals for testing!

2. The base of binary number system is 3. are used in groups to represent all other numbers. 4. The thelie of binary numbers means the operation of addition, subtraction D. S??​

Answers

2) The base of the binary number system is 2, not 3.

3)  Binary numbers represent numbers using only 0 and 1 digits.

What is the binary system?

A binary number is a number stated in the base-2 numeral system, often known as the binary numeral system, which is a way of mathematical representation that employs just two symbols, generally "0" and "1".

The base-2 number system has a radix of 2 and is a positional notation. Each digit is known as a bit, or binary digit.

Most historians of mathematics and/or mathematicians regard Gottfried Wilhelm Leibniz (1646-1716) to be the self-proclaimed originator of the binary system.

Learn more about binary number system at:

https://brainly.com/question/16612919

#SPJ1

fill in the blank. ___ are text-based systems. Users must key in commands to tell the computer what to do. The primary method of inputs is the keyboard. A mouse is not needed.

Answers

Computers are text-based systems. Users must key in commands to tell the computer what to do. The primary method of input is the keyboard; a mouse is not needed.

In order to interact with the computer, a user must input commands into the system in order to give the computer instructions. The commands are usually in the form of words, numbers, and symbols. After the user enters the command, the computer will process the command and respond accordingly. The user can then type in more commands and the computer will repeat the process until the user is finished. This method of input allows users to be very precise in their instructions, as each individual command is processed and executed by the computer.

For more such questions on Computers

https://brainly.com/question/28498043

#SPJ11

What formatting changes do spreadsheet applications permit in the rows and columns of a spreadsheet?

Answers

Answer: There are manny ways, best is to extract a document from excel sheets and change the spreadsheet to a number to organise it.

Message: If this was helpful, let me know by giving me a thanks! :)

Write a program that prompts a user to enter the number of elements to store in an array. Then prompt the user to enter all the numbers stored in the array.
The program should then cycle through the array to see if any numbers are divisible by 5. If any number is divisible by 5 print out which ones are and identify them in the output.

Answers

Answer:

Here's an example of a program that does what you've described:

# Get the number of elements in the array

n = int(input("Enter the number of elements to store in the array: "))

# Initialize the array

arr = []

# Get the elements of the array from the user

print("Enter the elements of the array:")

for i in range(n):

   arr.append(int(input()))

# Print out which numbers are divisible by 5

print("The following numbers are divisible by 5:")

for i, x in enumerate(arr):

   if x % 5 == 0:

       print(f"{i}: {x}")

This program will first prompt the user to enter the number of elements in the array. It then initializes an empty array and prompts the user to enter each element of the array. Finally, it loops through the array and prints out the index and value of any element that is divisible by 5.

Explanation:


Complete the paragraph describing the purpose and benefits of informational serviews by selecting the missing words.
When you set up an informational interview, you need to think about your objectives. For one thing, you want to gain
from the person that you're interviewing to help you learn about the career field. The questions that you
m

Answers

The correct text is: When you set up an informational interview, you need to think about your objectives. For one thing, you want to gain insights and information from the person that you're interviewing to help you learn about the career field.

The questions that you choose to ask will help you learn the information that interests you most. You can also expand your professional network, which will help you have a better chance of receiving a job offer in the future. You can follow up with this individual and learn about positions that become available.

What is the interview?

During an interview, asking relevant questions can provide valuable information about the daily tasks and qualifications required to excel in a particular profession.

Moreover, conducting informational interviews is a chance to broaden your professional connections and establish relationships that may lead to potential job offers or guidance from a mentor.

Learn more about  interview from

https://brainly.com/question/8846894

#SPJ1

See text below

Select the correct answer from each drop-down menu.

Complete the paragraph describing the purpose and benefits of informational interviews by selecting the missing words.

1

When you set up an informational interview, you need to think about your objectives. For one thing, you want to gain

from the person that you're interviewing to help you learn about the career field. The questions that you

choose to ask will help you learn the information that interests you most. You can also

which will help you have a better chance of receiving a job offer in the future. You

can follow up with this individual and learn about positions that become available.

You just bought a new car and want to use the built-in stereo to make and receive calls on your smartphone. Which of the following should you perform to connect your smartphone to the car stereo?
Pairing the devices
turn off the car
filling up the gasoline

Answers

Answer:

Pairing the devices

Explanation:

Pairing the devices will allow the car to recognize you phone, so that you can connect them

What should I do instead of listen to music?

Answers

You could watch a movie
Learn something new that you are interested in

write a c++ program to find the factorial of a number.

Answers

Answer:

I'm not gonna use recursion for this program.

#include <iostream>

using namespace std;

int main()

{

int input,factorial=1;

cout<<"Enter a number to get it's factorial: ";

cin>>input;

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

{

factorial *=i;

}

cout<<"The factorial of the number you entered is: "<<factorial;

return 0;

}

#include
using namespace std;
int main() {
int num,factorial=1;
cout<<" Enter Number To Find Its Factorial: ";
cin>>num;
for (int a=1;a<=num;a++) {
factorial=factorial*a;
}
cout<<"Factorial of Given Number is ="< return 0;
}

can you just answer this ​

can you just answer this

Answers

Answer:

html there you go it's very noice I'm learning ai

Which data type requires the greatest number of bytes in computer memory?

Answers

Answer:

Double precision number

Explanation:

The IEEE has given some Standards for representing numbers

IEEE Standards for floating point numbers is common convention for representing numbers in binary on Computers.

Double precision number format takes up 64 bits.

Single precision number format takes up 32 bits

pleas help with this

pleas help with this

Answers

Answer:

points = dict(Harris=24, Butler=11, Embiid=31, Simmons=15, Reddick=9, Scott=8, Ennis=7, Marjanovic=4, Bolden=1, McConnell=2)

total_points = 0

highest_scorer = ""

highest_score = 0

for player, score in points.items():

 print(player + ": " + str(score) + " points")

 total_points += score

 if score > highest_score:

   highest_score = score

   highest_scorer = player

print("Total points: " + str(total_points))

print("Highest scorer: " + highest_scorer + " (" + str(highest_score) + " points)")

What is the correct mathematical order of operations?

Answers

PEMDAS means is order of operations for mathematical expressions involving more than one operation. It stands for P- Parentheses, E- Exponents, M- Multiplication, D- Division, A- Addition, and S- Subtraction.

cuemathcom

the correct mathematical order is PEMDAS
P- parentheses
E- exponents
M- multiplication
D- division
A- addition
S- subtraction

Remember partially filled arrays where the number of elements stored in the array can be less than its capacity (the maximum number of elements allowed). We studied two different ways to represent partially filled arrays: 1) using an int variable for the numElems and 2) using a terminating value to indicate the end of elements called the sentinel value. In the code below, please fill in the details for reading values into the latter type of array that uses a sentilnel value. Don't forget to complete the printArray function.
#include
using namespace std;
void printArray(int array[]);
// Implement printArray as defined with one array parameter
int main()
{
const int CAPACITY=21;
int array[CAPACITY]; // store positive/negative int values, using 0 to indicate the end of partially filled array
cout <<"Enter up to " << CAPACITY-1 << " non-zero integers, enter 0 to end when you are done\n";
//To do: Write a loop to read up the int values and store them into array a.
// Stop reading if the user enters 0 or the array a is full.
//To do: store 0 to indicate the end of values in the array
//Display array function
printArray(array);
return 0;
}
// To do: implement display for the given array
void printArray(int array[])
{
}

Answers

Answer:

Complete the main method as follows:

int num;

cin>>num;

int i = 0;

while(num!=0){

array[i] = num;  

cin>>num;

i++;

}

Complete the printArray function as follows:

void printArray(int array[]){

int i =0;

while(array[i]!=0){

   cout<<array[i]<<" ";

   i++;

}}

Explanation:

Main method

This declares a variable that gets input from the user

int num;

This gets input from the user

cin>>num;

This initializes a count variable to 0. It represents the index of the current array element

int i = 0;

while(num!=0){

This inserts the inputted number to the array

array[i] = num;

This gets another input  

cin>>num;

The counter is incremented by 1

i++;

}

The above loop is repeated until the users enters 0

printArray method

This declares the array

void printArray(int array[]){

This initializes a counter variable to 0

int i =0;

This is repeated until array element is 0

while(array[i]!=0){

Print array element

   cout<<array[i]<<" ";

Increase counter by 1

   i++;

}}

See attachment for complete program

The final step of the decision-making model is to make your decision and take action.​

Answers

Answer:

No, it is not the final step in decision-making model. It is rather the penultimate stage of the model of decision making.

Explanation:

The final step of the decision-making model is reviewing your decision and its consequences. The decision-making model has total of 7 steps. One should follow these all the steps to make it error free and more efficient then it rather would have been when the decision was made without following it.

The very first step of this model is to identify the decision. And it is one of the most important steps to be followed to avoid any error.  

https://www.celonis.com/solutions/celonis-snap

Using this link

To do this alternative assignment in lieu of Case 2, Part 2, answer the 20 questions below. You
will see on the left side of the screen a menu for Process Analytics. Select no. 5, which is Order
to Cash and click on the USD version. This file is very similar to the one that is used for the BWF
transactions in Case 2, Part 2.
Once you are viewing the process analysis for Order to Cash, answer the following questions:
1. What is the number of overall cases?
2. What is the net order value?
Next, in the file, go to the bottom middle where you see Variants and hit the + and see what it
does to the right under the detail of variants. Keep hitting the + until you see where more than a
majority of the variants (deviations) are explained or where there is a big drop off from the last
variant to the next that explains the deviations.
3. What is the number of variants you selected?
4. What percentage of the deviations are explained at that number of variants, and why did you
pick that number of variants?
5. What are the specific variants you selected? Hint: As you expand the variants, you will see on
the flowchart/graph details on the variants.
6. For each variant, specify what is the percentage of cases and number of cases covered by that
variant? For example: If you selected two variants, you should show the information for each
variant separately. If two were your choice, then the two added together should add up to the
percentage you provided in question 4 and the number you provided in question 3.
7. For each variant, how does that change the duration? For example for the cases impacted by
variant 1, should show a duration in days, then a separate duration in days for cases impacted
by variant 2.
At the bottom of the screen, you see tabs such as Process, Overview, Automation, Rework, Benchmark,
Details, Conformance, Process AI, Social Graph, and Social PI. On the Overview tab, answer the
following questions:
8. In what month was the largest number of sales/highest dollar volume?
9. What was the number of sales items and the dollar volume?
10. Which distribution channel has the highest sales and what is the amount of sales?
11. Which distribution channel has the second highest sales and what is the amount of sales?
Next move to the Automation tab and answer the following questions:
12. What is the second highest month of sales order?
13. What is the automation rate for that month?
Nest move to the Details tab and answer the following questions:
14. What is the net order for Skin Care, V1, Plant W24?
15. What is the net order for Fruits, VV2, Plant WW10?
Next move to the Process AI tab and answer the following questions:
16. What is the number of the most Common Path’s KPI?
17. What is the average days of the most Common Path’s KPI?
18. What other information can you get off this tab?
Next move to the Social Graph and answer the following questions:
19. Whose name do you see appear on the graph first?
20. What are the number of cases routed to him at the Process Start?

Answers

1. The number of overall cases are 53,761 cases.

2. The net order value of USD 1,390,121,425.00.

3. The number of variants selected is 7.4.

4. Seven variants were selected because it provides enough information to explain the majority of the deviations.

5. Seven variants explain 87.3% of the total variance, including order, delivery, credit limit, material availability, order release, goods issue, and invoice verification.

10. January recorded the highest sales volume, with 256,384 items sold for USD 6,607,088.00. Wholesale emerged as the top distribution channel, followed by Retail.

12. December stood out as the second-highest sales month,

13. with an automation rate of 99.9%.

14. Notable orders include Skin Care, V1, Plant W24 (USD 45,000.00) and

15. Fruits, VV2, Plant WW10 (USD 43,935.00).

17. The most common path had a KPI of 4, averaging 1.8 days.

18. This data enables process analysis and improvement, including process discovery, conformance, and enhancement.

19. The Social Graph shows Bob as the first name,

20. receiving 11,106 cases at the Process Start.

1. The total number of cases is 53,761.2. The net order value is USD 1,390,121,425.00.3. The number of variants selected is 7.4. The percentage of the total variance explained at 7 is 87.3%. Seven variants were selected because it provides enough information to explain the majority of the deviations.

5. The seven specific variants that were selected are: Order, Delivery and Invoice, Check credit limit, Check material availability, Order release, Goods issue, and Invoice verification.6. Below is a table showing the percentage of cases and number of cases covered by each variant:VariantPercentage of casesNumber of casesOrder57.2%30,775Delivery and Invoice23.4%12,591Check credit limit5.1%2,757

Check material availability4.2%2,240Order release4.0%2,126Goods issue2.4%1,276Invoice verification1.7%9047. The duration of each variant is as follows:VariantDuration in daysOrder24Delivery and Invoice3Check credit limit2Check material availability1Order release2Goods issue4Invoice verification1

8. The largest number of sales/highest dollar volume was in January.9. The number of sales items was 256,384, and the dollar volume was USD 6,607,088.00.10. The distribution channel with the highest sales is Wholesale and the amount of sales is USD 3,819,864.00.

11. The distribution channel with the second-highest sales is Retail and the amount of sales is USD 2,167,992.00.12. The second-highest month of sales order is December.13. The automation rate for that month is 99.9%.14. The net order for Skin Care, V1, Plant W24 is USD 45,000.00.15.

The net order for Fruits, VV2, Plant WW10 is USD 43,935.00.16. The number of the most common path’s KPI is 4.17. The average days of the most common path’s KPI is 1.8 days.18. Additional information that can be obtained from this tab includes process discovery, process conformance, and process enhancement.

19. The first name that appears on the Social Graph is Bob.20. The number of cases routed to Bob at the Process Start is 11,106.

For more such questions deviations,Click on

https://brainly.com/question/24251046

#SPJ8

USPS stuck on "We are preparing your order for shipment" for 3 days. What does this mean?

Answers

What the message  "We are preparing your order for shipment" for 3 days means is that it is stuck on a loop.

What is a loop in computer science?

In programming the word loop is used to refer to the fact that an instruction or a sequence is repeated for a period that is longer or than is necessary. In order for this to change, certain modifications may have to be done on the program, else it may continue to run till it gets to when it is completed.

The condition would then be checked in order to show that it has been able to reach the prescribed number that it was supposed to for the message to terminate.

Read more on loops here: https://brainly.com/question/16922594

#SPJ1

Acróstico sobre mouse

Answers

this is a PICTURE

i HOPE IT'S HELP
Acrstico sobre mouse

unit 2 lesson 1 coding activity 2

Answers

The output based on the information will be credulousdifferently

primitive data types hold only one piece of information at a time.

class data types can hold several pieces of data and have methods to work on that data.

What is a primitive data?

Primitive data, in computer programming, refers to basic data types that are supported by programming languages natively. These data types are simple and are not composed of other data types.

Examples of primitive data types include:

Integer - used for whole numbers, such as 1, 2, 3, etc.

Floating point - used for decimal numbers, such as 1.5, 2.7, etc.

Boolean - used to represent true or false values.

Character - used to represent a single character, such as 'a', 'b', etc.

Byte - used to represent a small integer value between -128 to 127.

These primitive data types are used to build more complex data structures and algorithms in programming languages.

Learn more about data on

https://brainly.com/question/26711803

#SPJ1

Consider the following code:

String a = "credulous";

String b = "differently";

System.out.println(a + b);

What is output?

______ data types hold only one piece of information at a time.

______ data types can hold several pieces of data and have methods to work on that data.

Declare an array to store objects of the class defined by the UML. Use a method from the JOPTIONPANE class to request the length of the array the use

Answers

Here's the code snippet that declares an array to store objects of a class defined by a UML and uses the showInputDialog method from the JOptionPane class to request the length of the array from the user:

The Code Snippet

import javax.swing.JOptionPane;

public class MyClass {

   public static void main(String[] args) {

       int length = Integer.parseInt(JOptionPane.showInputDialog("Enter the length of the array:"));

      MyUMLClass[] array = new MyUMLClass[length];

       

       // Rest of the code...

   }

}

class MyUMLClass {

   // Class definition...

}

This instance entails that the user is requested to provide the quantity of items in the array with the use of the showInputDialog method, and subsequently, the input value is saved into the length variable. Subsequently, a collection of MyUMLClass instances is generated with a predetermined size.

Read more about arrays here:

https://brainly.com/question/29989214

#SPJ1

A victimless crime is committed when
|. Select 3 options.
someone downloads a pirated song or video
a copyrighted image is used without permission
a stranger accesses your internet banking
a person downloads and uses pirated software
a hacker sells a company's financial statements

Answers

Someone downloads a pirated song or video a copyrighted image is used without permission and a person downloads and uses pirated software.

A victimless crime is committed when a copyrighted image is used without permission 2. a stranger accesses your internet banking 3. a hacker sells a company’s financial statements.

Victimless crimes are illegal acts that break the laws, but there is no single victim of the crime. They are against social values and laws. A copyrighted image is used without permission

Examples are gambling, traffic violations, etc. Thus, Victimless crimes differ from other types of crime because it does not have an identifiable victim. This crime is against laws and social values and beliefs.

To know more about victimless crimes, visit:

brainly.com/question/17251009

#SPJ6

I need a C++ program to ask the user to put in different numbers until zero is pressed then the program counts the numbers that are put in and finds the sum of the numbers and the negative numbers.

Answers

Answer:

#include <iostream>

using namespace std;

int main()

{

int input = 0;

int count = 0;

int sum = 0;

int sumNegative = 0;

while (true) {

 cout << "Enter a number: ";

 cin >> input;

 if (input == 0) break;

 count++;

 sum += input;

 if (input < 0) {

  sumNegative += input;

 }

}

cout << "Count of the numbers: " << count << endl;

cout << "Sum of all the numbers: " << sum << endl;

cout << "Sum of the negative numbers: " << sumNegative << endl;

}

Explanation:

Your requirements regarding the sum and the negative numbers was a bit vague so I just did something you can probably adjust easily to your liking.

Organizations must protect their sensitive information through digital security measures and their _____ through physical security measures. Select 4 options.
IT infrastructure
equipment
employees
customers
RFID systems

Answers

Answer:

IT infrastructure

Explanation:

and their IT infrastructure through physical security measures. There are two main ways of "hacking" a system. One is through a flaw in the software that is someone skilled enough can manipulate in order to gain access to the system and retrieve data or manipulate the system as they see fit. The second method is physically by accessing the IT infrastructure. If you were able to do so and there are no physical security measures you could simply plug into the infrastructure and access all the information that you want because you would be completely bypassing the digital security measures by doing so. That is why physical security measures are placed so that only qualified and vetted individuals have access to the infrastructure.

HEY DO U LIKE TRAINS!

Answers

Answer:

yes

Explanation:

yes

A 2D array can be constructed using a 1D array in which each row of the 2D array is placed one after another.

If a 2D array with mm rows and nn columns is stored in this fashion, what will be the index of the element at row i and column j of the 2D array.

Note: Assume all zero-based indexing *

Answers

Use the knowledge in computational language in python to write the array with mm rows and nn columns is stored in this fashion.

How to define array in Python?

Arrays are similar data structures to Python lists, but not as flexible. In an array all elements must be of the same type, typically numeric, such as int or float. Also, the size of an array cannot be modified, unlike lists that can grow dynamically. In contrast, using arrays is much more efficient and makes it easier to compute large volumes of numerical data. This makes arrays particularly useful in scientific computing.

So in an easier way we have that the code is:

int my2dArr[10][10];  

int (*myPtr)[100] = my2dArr;  

for (int i=0;i<10;i++)

 for (int j=0;j<10;j++)

   my2dArr[i][j]=i*10+j;  

for (int i=0;i<10;i++)

 for (int j=0;j<10;j++)

   printf("[%d][%d] = %d\n", i, j, myPtr[i*10+j);

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

A 2D array can be constructed using a 1D array in which each row of the 2D array is placed one after

Write the syntax.

1. for loop

2. while loop

3. function definition

4. function call

5. do while loop​

Answers

Answer:

Explanation:

The following syntax's are written in Python and perform a very basic arithmatic operation within the loop of call as an example

1.    for x in range(3):

       print(x)

2.    count = 0

      while True:

          print(count)

          count += 1

          if count == 4:

              return False

3. def next_pow2():

       return 3**2

4. next_pow2()

5. i = 1

while True:

   print(i)

   i = i + 1

   if(i > 3):

       break

#Python doesn't have an explicit do-while loop but can be emulated exactly as a do-while loop using the format written in answer 5.

Dropdown Which shape is used for input and output?

Answers

Answer:

Parallelogram

Explanation:

Input/output Box The input/output box is represented by a parallelogram. This symbol indicates any function of an input/output device such as keyboard or printer.

OBJECTIVE QUESTIONS
1. In a computer keyboard the Alt, Ctrl, Shift, Del & Insert
keys are known as

Answers

Answer:

A modifier

Explanation:

because this modified a computer keyboard

You just figured out the root cause of an application error. You changed some configurations on the affected machines and verified that the users have full functionality. What should you do next?

Answers

After resolving the application error and verifying that users have full functionality,the next step   is to document the changes made and the steps taken to resolve the issue.

How is this so?

This documentation   is crucial for future reference, troubleshooting, and knowledge sharing within the team.

Also, it is important tocommunicate the resolution to the relevant stakeholders,such as users or supervisors, to ensure they are aware of the resolution and can provide f  eedback if necessary.

Learn more about application error at:

https://brainly.com/question/30062195

#SPJ1

How is effective communication defined as it applies to media?

Answers

It should be noted that communication is said to be effective when the information is passed across successfully to the receiver.

What is communication?

Communication simply means the process of sending a message through a particular medium from the sender to the receiver.

Effective communication as it applies to media means that information is passed across successfully to the receiver and it's understood by the receiver.

Learn more about communication on:

https://brainly.com/question/7142635

Other Questions
Consult Multiple-Concept Example 10 in preparation for this problem. Traveling at a speed of 16.1 m/s, the driver of an automobile suddenly locks the wheels by slamming on the brakes. The coeffi cient of kinetic friction between the tires and the road is 0.720. What is the speed of the automobile after 1.30 s have elapsed A total of $8000 is invested: part at 6% and the remainder at 10 %. How much is invested at each rate if the annual interest is $750? For a linear programming problem, assume that a given resource has not been fully used. We can conclude that the shadow price associated with that constraint:A. will have a positive valueB. will have a value of zeroC. will have a negative valueD. could have a positive, negative or a value of zero (no sign restrictions). there is a number that if you multiple it by 5 first, and then add 6 to the result, you get 91. whats the number? resistance is a force that Solve 1/2 + (- 3/4) = Please answer this as fast as you and it needs to be common denominators before you can add the fractions. If the definite integral from 0 to 2 of e^(x^2) is first approximated by using two inscribed rectangles of equal width and then approximated by using the trapezoidal rule with n=2, the difference between the two approximations is:(A) 53.60(B) 30.51(C) 27.80(D) 26.80(E) 12.78 1. How do the words defense and liberation contrast with aggression and conquest? for a party you make a gelatin dessert in a rectangular pan and cut the dessert into equal-sizes pieces, as shown below. The desert consists of 5 layers of equal height. Each layer is a different flavor, as shown be,ow by a side view of the pan. Your guests eat 3/5 of the pieces of dessert. Part A. Write the amount of cherry gelatin that your guests eat as fraction of the total dessert. Part b. Write the amount of the cherry gelatin that your guests eat as a percent of the total dessert. Which letter of the Spanish Alphabet makes the same sound as the letter LL?A) YB) KC) LD) Ch Is giving last minute instruction to players is that a consulative speech? Hey. I need help in my career HW now! What is the difference between a short-term goal and a long-term goal? Give an example of each. I'm in middle school grade 6 and I NEED HELLLP NOWW! Ok Idk where the career subject is so I'll put SAT. FYI, IDK what that means lol. For a series RLC circuit R = 20 ohms, L=0.6 H, the value of C will be (CD-critically damped, OD-overdamped, UD -underdamped) CD OD UD (A) C=6 mF C> 6 mF C 6 mF C> 6 mF C = 6 mF C 6 mF What are the y-intercepts of this conic section?(0, 4) and (0, 4)(0, 2) and (0, 2)no y-intercepts(2, 0) and (2, 0) There is a balanced three-phase load connected in delta, whose impedance per line is 38 ohms at 50, fed with a line voltage of 360 Volts, 3 phases, 50 hertz. Calculate phase voltage, line current, phase current; active, reactive and apparent power, inductive reactance (XL), resistance and inductance (L), and power factor. A student in your class whom you kind-of like asks you come to watch a meteor shower. What exactly are you being invited to? a. something your mom would not approve of, involving streams of dirty water b. the closest approach of an active bright comet to the Earth c. a once-in-a-lifetime experience at the end of which you will be completely covered with dust particles from space d. watching the left-over dirt from a comet burn up by friction as the pieces hit the Earth's atmosphere e. something quite dangerous where you are likely to be hit when many larger rocks fall from above Submit Your Answer Find x- and y-intercepts. Write ordered pairs representing the points where the line crosses the axes. 2x+3y=6 Solve the quadratic equation by completing the square. (Enter your answers as a comma-separated list. If an answer does not exist, enter DNE.)x2 + 8x + 14 = 0 If the time in London is 08.00 hours GMT and the local time in Addis Ababa is 12.00 noon, on what longitude is Addis Ababa? Which house of the legislative branch makes the final decision regarding impeachment?