Write an algorithm to calculate the average
value of array of integer elements

Answers

Answer 1

Answer:

Explanation: Input : arr[] = {1, 2, 3, 4, 5}

Output : 3

Sum of the elements is 1+2+3+4+5 = 15

and total number of elements is 5.

So average is 15/5 = 3

Input : arr[] = {5, 3, 6, 7, 5, 3}

Output : 4.83333

Sum of the elements is 5+3+6+7+5+3 = 29

and total number of elements is 6.

So average is 29/6 = 4.83333.


Related Questions

Write a function that accepts an int array and the array’s size as arguments.
The function should create a new array that is twice the size of the argument array.
The function should copy the contents of the argument array to the new array, and initialize the unused elements of the second array with 0.
The function should return a pointer to the new array.
Demonstrate the function by using it in a main program that reads an integer N (that is not more than 50) from standard input and then reads N integers from a file named data into an array.
The program then passes the array to your array expander function, and displays the values of the new expanded array, one value per line.
You may assume that the file data has at least N values. There are no prompts for the integer and no labels for the expanded reversed array that is printed out. If the integer read in from standard input exceeds 50 or is less than 0 the program terminates silently.

Answers

Using the knowledge in computational language in C++ it is possible to write a code that the  function that accepts an int array and the array’s size as arguments.

Writting the code:

#include<iostream>

#include<fstream>

// Use the standard namespace.

using namespace std;

// Define the function to expand the given array

// to twice its capacity.

int *Array_Expander(int arr[], int size)

{

// Create a new array of double size.

int *new_array = new int[2*size];

int i = 0;

// Start the loop to copy the values of the

// given array into the new array.

while(i < size)

{

// Copy the value in the new array.

new_array[i] = arr[i];

// Increment the value of the variable i.

i = i + 1;

}

// Start the loop to set the value of the second half

// of the new array to 0.

while(i < 2*size)

{

// Set the value to 0.

new_array[i] = 0;

// Increment the value of the variable i.

i = i + 1;

}

// Return the new array.

return new_array;

}

// Define the main() function.

int main()

{

// Create an integer to store the size of the array.

int N;

// Store the size of the array from the standard input.

cin >> N;

// Return if the value of N is less than 0

// or greater than 50.

if(N < 0 || N > 50)

return 0;

// Create an array of size N.

int *arr = new int[N];

// Open the file in read mode.

ifstream infile;

infile.open("data");

// Display the error message if the file is not found

// and return.

if(!infile)

{

cout << "Error: File not found!" << endl;

return 0;

}

int i = 0;

// Start the loop to read the values from the file.

while (!infile.eof() && i < N)

{

// Read the value from the file and store

// it in the array.

infile >> arr[i];

// Increment the value of the variable i.

i = i + 1;

}

// Close the input file.

infile.close();

// Call the function and store the new array.

arr = Array_Expander(arr, N);

// Start the loop to print the values of the

// array, one value per line.

for(int i = 0; i < 2*N; i++)

{

cout << arr[i] << endl;

}

// Return 0 and exit the program.

return 0;

}

See more about C++ at brainly.com/question/12975450

#SPJ1

Write a function that accepts an int array and the arrays size as arguments.The function should create

After separating from Mexico, Texas passed laws that made it harder for slave owners to _____________ slaves.
a.
emancipate
b.
own
c.
abuse
d.
sell

Answers

Answer: b.

Explanation:

Answer:

b

Explanation:

own slaves

Zoom,Adobe connect and webinar are examples of teleconferencing tools___

Answers

Zoom, Adobe connect and webinar are examples of teleconferencing tools is a true statement.

What varieties of teleconferencing that exist?

The term or tool teleconferencing is one that allows a group of individuals to meet up from various areas.

It helps them in Conference calls, videoconferences, as well as in web-based conferences and these are the three most popular varieties of teleconferences.

Companies utilize Adobe Connect, a web conferencing software program, to hold online meetings, webinars, as well as training sessions.

Therefore, Zoom, Adobe connect and webinar are examples of teleconferencing tools is a true statement.

Learn more about teleconferencing from

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

Zoom,Adobe connect and webinar are examples of teleconferencing tools___ True or false

How many discussion posts must you complete to meet the Expectations of the replies category

Answers

Answer:

I want to take this time to discuss a few expectations and helpful information about how to participate in the weekly online discussions. You can scroll down the page or use the links here to navigate to each section.  All Discussions can be found by clicking on the Discussions link located on the left-hand side of the course.

Explanation:

Participation in the discussion forums is critical for maximizing student learning in this course, both because your participation is graded and because it's a chance to engage in a dialogue about course material.  In this course, students are required to be a part of an online community of learners who collectively interact, through discussion, to enhance and support the professional performance of each other. Part of the assessment criteria for the course includes evaluating the quality and quantity of your participation in the discussion forum.

The TAS will facilitate student discussions, although they likely will not address every single post. In most cases, they might share a related idea, intervene when the discussion goes off-track, or tie student comments together to help deepen student learning.  Remember, if you have a specific question, pose

How do i print a float using string

Answers

Explanation:

you have this answer in your book look lukmance

which is the horizontal axis of a coordinate grid?
A. z-axis
B. x-axis
C. y-axis
D. both B and C

Answers

The horizontal line on a grid would be called the y axis

Answer: x-axis

Explanation: The horizontal axis is usually called the x-axis. The vertical axis is usually called the y-axis. 

4) Create a text file (you can name it sales.txt) that contains in each line the daily sales of a company for a whole month. Then write a Java application that: asks the user for the name of the file, reads the total amount of sales, calculates the average daily sales and displays the total and average sales. (Note: Use an ArrayList to store the data).

Answers

Answer:

Here's an example Java application that reads daily sales data from a text file, calculates the total and average sales, and displays the results:

import java.util.ArrayList;

import java.util.Scanner;

import java.io.File;

import java.io.FileNotFoundException;

public class SalesDemo {

   public static void main(String[] args) {

       // Ask the user for the name of the file

       Scanner input = new Scanner(System.in);

       System.out.print("Enter the name of the sales file: ");

       String fileName = input.nextLine();

       // Read the daily sales data from the file

       ArrayList<Double> salesData = new ArrayList<>();

       try {

           Scanner fileInput = new Scanner(new File(fileName));

           while (fileInput.hasNextDouble()) {

               double dailySales = fileInput.nextDouble();

               salesData.add(dailySales);

           }

           fileInput.close();

       } catch (FileNotFoundException e) {

           System.out.println("Error: File not found!");

           System.exit(1);

       }

       // Calculate the total and average sales

       double totalSales = 0.0;

       for (double dailySales : salesData) {

           totalSales += dailySales;

       }

       double averageSales = totalSales / salesData.size();

       // Display the results

       System.out.printf("Total sales: $%.2f\n", totalSales);

       System.out.printf("Average daily sales: $%.2f\n", averageSales);

   }

}

Assuming that the sales data is stored in a text file named "sales.txt" in the format of one daily sale per line, you can run this program and input "sales.txt" as the file name when prompted. The program will then calculate the total and average sales and display the results.

I hope this helps!

Explanation:

Select the pseudo-code that corresponds to the following assembly code. Assume that the variables a, b, c, and d are initialized elsewhere in the program. You may want to review the usage of EAX, AH, and AL (IA32 registers). Also recall that the inequality a > b is equivalent to b < a. i.e. If A is greater than B, that's equivalent to saying that B is less than A.
.data
; General purpose variables
a DWORD ?
b DWORD ?
c BYTE ?
d BYTE ?
upperLevel DWORD 18
lowerLevel DWORD 3
; Strings
yes BYTE "Yes",0
no BYTE "No",0
maybe BYTE "Maybe",0
code
main PROC
mov eax, 1
cmp AH, c
jg option1
jmp option3
option1:
mov edx, OFFSET yes
call WriteString
jmp endOfProgram
option2:
mov edx, OFFSET no
call WriteString
jmp endOfProgram
option3:
mov edx, OFFSET maybe
call WriteString
endOfProgram:
exit
main ENDP
END main
a) if (c > 0)
print (yes);
else
print (maybe);
b) if (c < 0)
print (yes);
else
print (maybe);
c) if (c < 1)
print (yes);
else
print (maybe);
d) if (c > 1)
print (yes);
else
print (maybe);

Answers

Answer:

ae

Explanation:

The pseudo-code that corresponds to the given assembly code is:

b) if (c < 0)

print (yes);

else

print (maybe);

What is the pseudo-code

In assembly code, the command cmp AH, c checks if the high byte of the EAX register (AH) has the same value as the variable c. Then, if the value in AH is more than the value in c, the instruction jg option1 will move to option1.

Therefore, In the pseudo-code, one can check if c is smaller than 0. If it happens, we say "yes". If not, we say "maybe"

Read more about   pseudo-code here:

https://brainly.com/question/24953880

#SPJ2

One of the common tests used to evaluate the accessibility of a web page consists of

using an Internet search engine to see if the page can be found easily.
clicking all hyperlinks in the page to test for broken or inaccurate links.
using the TAB and ENTER keys to move through the page’s content.
comparing the page with others in the website to find inconsistent layout.

Answers

The statement provided is True. An Internet search engine examination is a comprehensively employed method to evaluate the accessibility of a webpage, gauging if the page can be expeditiously found by users.

Other methods of accessing data

Furthermore, all hyperlinks in the page are clicked upon to weed out broken or inaccurate links which may negatively affect user experience by leading them astray. This rubric helps identify any links that may pose difficulties in accessing an accurate destination or even incorrect one, thus excluding any possibility of misunderstanding or degradation of user satisfaction.

An additional arbiter frequently employed to determine the accessibility of a webpage is using TAB and ENTER keys on a keyboard only interface. Loopholes for a comfortable exploration via keyboards when digital displays cannot help decipher is demonstrated in this manner; important for those susceptible to low vision or motor impairments obeying disability codes with accessible requirements or anyone else lacking interaction means save the keyboard.

Learn more about Internet search engine at

https://brainly.com/question/26488669

#SPJ1

Help me with this digital Circuit please

Help me with this digital Circuit please
Help me with this digital Circuit please
Help me with this digital Circuit please
Help me with this digital Circuit please

Answers

A subset of electronics called digital circuits or digital electronics uses digital signals to carry out a variety of tasks and satisfy a range of needs.

Thus, These circuits receive input signals in digital form, which are expressed in binary form as 0s and 1s. Logical gates that carry out logical operations, including as AND, OR, NOT, NANAD, NOR, and XOR gates, are used in the construction of these circuits.

This format enables the circuit to change between states for exact output. The fundamental purpose of digital circuit systems is to address the shortcomings of analog systems, which are slower and may produce inaccurate output data.

On a single integrated circuit (IC), a number of logic gates are used to create a digital circuit. Any digital circuit's input consists of "0's" and "1's" in binary form. After processing raw digital data, a precise value is produced.

Thus, A subset of electronics called digital circuits or digital electronics uses digital signals to carry out a variety of tasks and satisfy a range of needs.

Learn more about Digital circuit, refer to the link:

https://brainly.com/question/24628790

#SPJ1

What is the best example of how computers have changed the way people communicate?
A.
A smart device can track every place you go and be accessed by people who shouldn't see this information.
B.
Internet influencers share their experiences in order to gain more followers.
C.
Most people have smartphones, and they can be reached wherever they go.
D.
Social media is used to find friends or relatives after a natural disaster.

Answers

Answer:

c since it is very important that people reached where ever they are

Hope This Helps!!!

The best example of how computers have changed the way people communicate is,

D. Social media is used to find friends or relatives after a natural disaster.

Hence option D is true.

Ask about the best example of how computers have changed the way people communicate.

In the past, during natural disasters, it could be challenging to locate and connect with loved ones due to limited communication channels.

However, with the advent of social media platforms, people can quickly share information about their safety, and whereabouts, and seek help in real-time.

Social media acts as a powerful tool for reuniting families and friends during such challenging times.

Therefore, the correct option is, D.

To learn more about computers visit:

https://brainly.com/question/22495842

#SPJ3

PLEASE HELP

What is the MOST likely reason for Karla to set an alarm on her work computer for 50 minutes past the hour every hour?

Answers

Karla may have set an alarm on her work computer to go off at 50 minutes past each hour as a means of prompting herself to take a brief intermission, during which she might engage in stretching or light physical activity.

What is the alarm?

The popular strategy called the "Pomodoro Technique" involves dividing work into brief periods (usually 25 minutes) followed by brief pauses (usually lasting 5-10 minutes).

After working for two Pomodoro periods, which lasts about 50 minutes, Karla takes a longer break before continuing with her work. The 50-minute alarm acts as a reminder for her to take a break.

Learn more about  alarm  from

https://brainly.com/question/30735244

#SPJ1

Using the SELECT statement, query the track table to find the total cost of the tracks on album_id 10, rounded to the nearest cent.

Answers

Using the select statement, the query of the track table to find the total cost of the tracks on album_id 10, rounded to the nearest cent is found to be 15.

What is the select statement?

The select statement may be defined as the type of statement that is significantly used to select data from a database. The data returned is stored in a result table, called the result set.

The SQL SELECT statement returns a result set of records, from one or more tables. These statements retrieve records from a database table according to clauses (for example, FROM and WHERE ) that specify criteria.

Therefore, using the select statement, the query of the track table to find the total cost of the tracks on album_id 10, rounded to the nearest cent is found to be 15.

To learn more about Select statement, refer to the link:

https://brainly.com/question/15849584

#SPJ1

Excel

Please explain why we use charts and what charts help us to identify.
Please explain why it is important to select the correct data when creating a chart.

Answers

1) We use chart for Visual representation, Data analysis, Effective communication and Decision-making.

2. It is important to select the correct data when creating a chart Accuracy, Credibility, Clarity and Relevance.

Why is necessary to select the correct data in chart creation?

Accuracy: Selecting the right data ensures that the chart accurately represents the information you want to convey. Incorrect data can lead to misleading or incorrect conclusions.

Relevance: Choosing the appropriate data ensures that your chart focuses on the relevant variables and relationships, making it more useful for analysis and decision-making.

Clarity: Including unnecessary or irrelevant data can clutter the chart and make it difficult to interpret. Selecting the correct data helps to maintain clarity and simplicity in the chart's presentation.

Credibility: Using accurate and relevant data in your charts helps to establish credibility and trust with your audience, as it demonstrates a thorough understanding of the subject matter and attention to detail.

Find more exercises related to charts;

https://brainly.com/question/26501836

#SPJ1

Can anyone do this I can't under stand

Can anyone do this I can't under stand
Can anyone do this I can't under stand
Can anyone do this I can't under stand
Can anyone do this I can't under stand
Can anyone do this I can't under stand

Answers

Answer:

I think u had to take notes in class

Explanation:

u have yo write 4 strings

Compare Ethernet frames to other frames.


•Most frames use CRC, but Ethernet does not. •Most frames use a protocol called CSMA/CD.

•Ethernet frames generally do not have stop frames.

•Ethernet frames have more parts in their frame footers.

Answers

Most frames use crux and I can only do a couple

Which of the following if statements uses a Boolean condition to test: "If you are 18 or older, you can vote"? (3 points)

if(age <= 18):
if(age >= 18):
if(age == 18):
if(age != 18):

Answers

The correct if statement that uses a Boolean condition to test the statement "If you are 18 or older, you can vote" is: if(age >= 18):

In the given statement, the condition is that a person should be 18 years or older in order to vote.

The comparison operator used here is the greater than or equal to (>=) operator, which checks if the value of the variable "age" is greater than or equal to 18.

This condition will evaluate to true if the person's age is 18 or any value greater than 18, indicating that they are eligible to vote.

Let's analyze the other if statements:

1)if(age <= 18):This statement checks if the value of the variable "age" is less than or equal to 18.

However, this condition would evaluate to true for ages less than or equal to 18, which implies that a person who is 18 years old or younger would be allowed to vote, which is not in line with the given statement.

2)if(age == 18):This statement checks if the value of the variable "age" is equal to 18. However, the given statement allows individuals who are older than 18 to vote.

Therefore, this condition would evaluate to false for ages greater than 18, which is not correct.

3)if(age != 18):This statement checks if the value of the variable "age" is not equal to 18.

While this condition would evaluate to true for ages other than 18, it does not specifically cater to the requirement of being 18 or older to vote.

For more questions on Boolean condition

https://brainly.com/question/26041371

#SPJ8

Choose the correct vocabulary term from each drop-down menu
Education that focuses on skills that can be used in the workplace is
Creating curriculum around learning goals established by the training or learning department is
The continued pursuit of knowledge for either personal or professional reasons 16
Learning that focuses on goals established by the learner is

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

Education that focuses on skills that can be used in the workplace is work-based learning.

Creating curriculum around learning goals established by the training or learning department is formal learning.

The continued pursuit of knowledge for either personal or professional reasons is lifelong learning.

Learning that focuses on goals established by the learner is informal learning.

Answer:

work-based learning.

formal learning.

lifelong learning.

informal learning.

Explanation:

user intent refers to what the user was trying to accomplish by issuing the query

Answers

Answer:

: User intent is a major factor in search engine optimisation and conversation optimisation. Most of them talk about customer intent ,however is focused on SEO not CRO

Explanation:

Read the Python program below:
1 num1 = int(input())
2
num2 = 10 + num1 * 2
3
print(num2)
4 num1 = 20
5 print(num1)
Question 2
When this program is executed, if the user types 10 on the
keyboard, what will be displayed on the screen as a result of
executing line 5?
A. 10
B. 20
C. 10 and 20
D. There is an error in the program because a variable cannot
hold two values at the same time

Answers

When the program is executed and the user types 10 as input, the program will display the following on the screen as a result of executing line 5:  20 (Option B)

How does this work?

Line 5 print(num1) will print the value stored in the variable num1, which is 20 at that point in the program.

The variable num1 was reassigned the value 20 in line 4, so the updated value of num1 is printed, which is 20. Therefore, the output will be 20.

Learn more about program at:

https://brainly.com/question/23275071

#SPJ1


simple machines reduce the amount of work necessary to perform a task.
true or false?

Answers

True.

Simple machines are devices that are used to make work easier. They can reduce the amount of force, or effort, required to perform a task by increasing the distance over which the force is applied, or by changing the direction of the force. Examples of simple machines include levers, pulleys, wheels and axles, inclined planes, wedges, and screws. By using simple machines, the amount of work required to perform a task can be reduced.

Audio texts use:

A. Sound and music
B. More than a medium
C. Media that activates all the senses
D. Color and Images

Answers

Answer:

a

Explanation:

If one employee is assigned to a project and each project has only one employee working on it, there is a(n) ____ relationship between employees and projects.

a. many-to-many
b. many-to-one
c. one-to-one
d. one-to-many

Answers

Answer:

One-to-one is the answer because there is one project and one employee working on one project.

1
Select the correct answer from each drop-down menu.
What Is DHTML?
DHTML Is
It allows you to add functionality such as
Reset
Next

Answers

Answer:

DHTML (Dynamic HTML) is a collection of a few different languages

Explanation:

Dynamic HTML is a collection of HTML, DOM, JavaScript, and CSS.

It allows for more customizability than regular HTML. It allows scripts (JavaScript), webpage styling (CSS), manipulation of static objects (DOM), and building of the initial webpage (HTML).

Since the question is incomplete, I'm not really sure what all you need answered - please leave a comment if you would like something else explained. :)

64 bit numbers require how many
adders?

Answers

Explanation:

Figure 5(b) shows the block diagram of 64-bit Common Boolean Logic based adder. There are 4 blocks, having 16 blocks each, which means 64 blocks of Common Boolean Logic.

Answer:

16 blocks each

Explanation:

what is the difference between delete and backspace key?​

Answers

they are the same thing

Answer: delete what's in front (right) vs behind (left) of cursor

Explanation:

Delete allows you to remove whats in front of the cursor while backspace allows you to remove whats behind the cursor.

in the situation above, what ict trend andy used to connect with his friends and relatives​

Answers

The ICT trend that Andy can use to connect with his friends and relatives​ such that they can maintain face-to-face communication is video Conferencing.

What are ICT trends?

ICT trends refer to those innovations that allow us to communicate and interact with people on a wide scale. There are different situations that would require a person to use ICT trends for interactions.

If Andy has family and friends abroad and wants to keep in touch with them, video conferencing would give him the desired effect.

Learn more about ICT trends here:

https://brainly.com/question/13724249

#SPJ1

Write a function longer_string() with two string input parameters that returns the string that has more characters in it. If the strings are the same size, return the string that occurs later according to the dictionary order. Use the function in a program that takes two string inputs, and outputs the string that is longer.

Answers

Answer:

Here you go :)

Explanation:

Change this to your liking:

def longer_string(s1, s2):

   if len(s1) > len(s2):

       return s1

   elif len(s1) < len(s2):

       return s2

   else:

       return s2

x = input("Enter string 1: ")

y = input("Enter string 2: ")

print(longer_string(x, y))

Briefly explain the mapping of human thinking to artificial intelligence components?

Answers

Answer:

The technique is mind mapping and involves visual representation of ideas and information which makes it easier to remember and memorize facts even in complex subjects. Here is an example of a mind map with the essential elements of AI and the industries where Artificial Intelligence is applied.

Artificial is a term utilized to elaborate something that isn't natural or we can say unnatural (opposite to natural). Whereas, definition of "intelligence" is a bit complex as the term enclose many different and specific corporeal tasks, like learning, problem-solving, reasoning, perception, and language understanding.

Mind mapping technique involves the representation of information and ideas visually which concludes in much easier and friendly way to remember and imprints the facts even in complex subjects.

Below is the example in how the A.I applies in fields like health care, educations, financials etc.

Learn More:

https://brainly.com/question/23131365?referrer=searchResults

 Briefly explain the mapping of human thinking to artificial intelligence components?

2. Write a C program that generates following outputs. Each of the

outputs are nothing but 2-dimensional arrays, where ‘*’ represents

any random number. For all the problems below, you must use for

loops to initialize, insert and print the array elements as and where

needed. Hard-coded initialization/printing of arrays will receive a 0

grade. (5 + 5 + 5 = 15 Points)

i)

* 0 0 0

* * 0 0

* * * 0

* * * *

ii)

* * * *

0 * * *

0 0 * *

0 0 0 *

iii)

* 0 0 0

0 * 0 0

0 0 * 0

0 0 0 *

2. Write a C program that generates following outputs. Each of the outputs are nothing but 2-dimensional

Answers

Answer:

#include <stdio.h>

int main(void)

{

int arr1[4][4];

int a;

printf("Enter a number:\n");

scanf("%d", &a);

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

{

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

{

 if(j<=i)

 {

  arr1[i][j]=a;

 }

 else

 {

  arr1[i][j]=0;

 }

}

}

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

{

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

{

 printf("%d", arr1[i][j]);

}

printf("\n");

}

printf("\n");

int arr2[4][4];

int b;

printf("Enter a number:\n");

scanf("%d", &b);

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

{

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

 {

  if(j>=i)

  {

   arr1[i][j]=b;

  }

  else

  {

   arr1[i][j]=0;

  }

 }

}

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

{

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

 {

  printf("%d", arr1[i][j]);

 }

 printf("\n");

}

printf("\n");

int arr3[4][4];

int c;

printf("Enter a number:\n");

scanf("%d", &c);

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

{

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

 {

  if(j!=i)

  {

   arr1[i][j]=c;

  }

  else

  {

   arr1[i][j]=0;

  }

 }

}

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

{

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

 {

  printf("%d", arr1[i][j]);

 }

 printf("\n");

}

printf("\n");

return 0;

}

Explanation:

arr1[][] is for i

arr2[][] is for ii

arr3[][] is for iii

2. Write a C program that generates following outputs. Each of the outputs are nothing but 2-dimensional
2. Write a C program that generates following outputs. Each of the outputs are nothing but 2-dimensional
Other Questions
Write the following equation in slope-intercept form and then graph: 4x + 3y = 12 Galena's specific gravity is 7.5, that of quartz 2.65, and that of liquid mercury 13.6. Given equal-sized samples (volumes) of galena and quartz, which will feel heavier? Choose one: A. galena B. The same volume of water will feel heavier than both of them. C. They will feel about equal. D. quartz You flip a coin twice.What is the probability of getting heads and then getting heads?Simplify your answer and write it as a fraction or whole number. What is the result when the sun 4x^2+8x-1 and 7x^2-3x+8 is multiplied by 5x^2? Which characteristics best describe Aaron Douglass's painting, Song of theTowers? A. Still and peacefulO B. Exaggerated and humorous C. Realistic and detailedD. Abstract and geometric Write an equation for the transformation of y=x; vertical by a factor of 1/10 An unknown metal sample with a mass of 14.8 g was obtained. The sample displaces 0.767 mL of water. The densities of several metals are listed in the table.Metal Density (g/mL)aluminum 2.70 iron 7.87 cobalt 8.90 copper 8.96 gold 19.3 What is the possible identity of this metal sample?coppergoldcobaltaluminum 5.15 Change the following sentence into the negative form SAFA announced on Thursday that Desirea is the new Banyana Banyana coach $16 Rewrite the following sentence in indirect speech, starting with the given words. "It has always been a dream of mine to be the head coach of Banyana Banyana." Start with Els said... 5.1.7 The following sentence is in the active voice. Change it to the passive voice, starting with the given words They will play their first match against Slovakia next Wednesday. Show: The first malich... Solve the following systems of linear equations using the method of your choosing.y = 2x - 13y = 6x - 5Select one:a.(2, 5)b.Infinite Solutionsc.No solution _____ is the planned elimination of large numbers of personnel designed to enhance organizational effectiveness.A) HomesourcingB) DownsizingC) RetirementD) RetrainingE) Work sharing Susan's cell phone plan includes unlimited texting. The amount she pays for texting eachmonth can be described by the function y = 20, where y is the number of dollars spent ontexting as a function of x, the number of texts.What is true about the function?It is linear because the rate of change is zero.It is linear because the rate of change is increasing.It is nonlinear because the rate of change is zero.It is nonlinear because the rate of change isincreasing. On average what is the time between collisions of a xenon atom at 300 K and (a) one torr pressure; (b) one bar pressure. What iconic sitcom did actress cindy williams star in? Solve equation by using the quadratic formula. 15x + 31x = -10 Read the excerpt from Greta Thunbergs speech at the United Nations Climate Action Summit. My message is that well be watching you.This is all wrong. I shouldnt be up here. I should be back in school on the other side of the ocean. Yet you all come to us young people for hope. How dare you!You have stolen my dreams and my childhood with your empty words. And yet Im one of the lucky ones. People are suffering. People are dying. Entire ecosystems are collapsing. We are in the beginning of a mass extinction, and all you can talk about is money and fairy tales of eternal economic growth. How dare you!Which type of rhetorical device is used in this excerpt?A. pathos, because the language used emphasizes the personal nature of the damage that the audience is causingNOT B- logos, because the speaker uses facts to support her conclusion that the audience is intentionally harming othersC. kairos, because the speaker emphasizes how important it is for the audience to immediately address problems in the environment D. ethos, because the speaker highlights her qualifications to authoritatively address the audience about how they have neglected to protect the environment Northerners wanted a law that would ___ 1.admit California as a slave state2.force the return of runaway slaves3.abolish the slave trade in Washington, D.C.4.allow slavery in the new territories cross-cultural studies of culture and cognition show that east asians prefer whereas americans prefer .group of answer choicesholistic thinking / analytic thinkinglogical deterministic thinking / dialectical thinkingdialectical thinking / logical deterministic thinkingdialectical thinking / analytic thinking please anyone who knows Ill give the first to answer brainliest. 5 trillion in scientific notation