Given integer values for red, green, and blue, subtract the gray from each value.

Computers represent color by combining the sub-colors red, green, and blue (rgb). Each sub-color's value can range from 0 to 255. Thus

(255, 0, 0) is bright red, (130, 0, 130) is a medium purple,(0,0,0) is black, (255, 255, 255) is white, and (40, 40, 40) is a dark gray. (130, 50,

130) is a faded purple, due to the (50, 50, 50) gray part. (In other words, equal amounts of red, green, blue yield gray).

Given values for red, green, and blue, remove the gray part.

Answers

Answer 1

Answer:

Here is the C++ program:

#include <iostream>   //to use input output functions

using namespace std;   //to identify objects cin cout

int main() {   //start of main method

int red,green,blue,smallest;   //declare variables to store integer values of red,green, blue and to store the smallest value

cout<<"Enter value for red: ";  //prompts user to enter value for red

cin>>red;  //reads value for red from user

cout<<"Enter value for green: ";  //prompts user to enter value for green

cin>>green;  //reads value for green from user

cout<<"Enter value for blue: "; //prompts user to enter value for blue

cin>>blue;   //reads value for blue from user

//computes the smallest value

if(red<green && red<blue) //if red value is less than green and blue values

smallest=red;   //red is the smallest so assign value of red to smallest

else if(green<blue)   //if green value is less than blue value

smallest=green;   //green is the smallest so assign value of green to smallest

else  //this means blue is the smallest

smallest=blue;  //assign value of blue to smallest

//removes gray part by subtracting smallest from rgb

red=red-smallest;  //subtract smallest from red

green=green-smallest;  //subtract smallest from green

blue=blue-smallest;  //subtract smallest from blue

cout<<"red after removing gray part: "<<red<<endl;  //displays amount of red after removing gray

cout<<"green after removing gray part: "<<green<<endl;  //displays amount of green after removing gray

cout<<"blue after removing gray part: "<<blue<<endl;  } //displays amount of blue after removing gray

Explanation:

I will explain the program using an example.

Lets say user enter 130 as value for red, 50 for green and 130 for blue. Sp

red = 130

green = 50

blue = 130

First if condition if(red<green && red<blue)   checks if value of red is less than green and blue. Since red=130 so this condition evaluate to false and the program moves to the else if part else if(green<blue)  which checks if green is less than blue. This condition evaluates to true as green=50 and blue = 130 so green is less than blue. Hence the body of this else if executes which has the statement: smallest=green;  so the smallest it set to green value.

smallest = 50

Now the statement: red=red-smallest;  becomes:

red = 130 - 50

red = 80

the statement:  green=green-smallest;  becomes:

green = 50 - 50

green = 0

the statement: blue=blue-smallest; becomes:

blue = 130 - 50

blue = 80

So the output of the entire program is:

red after removing gray part: 80                                                                                                 green after removing gray part: 0                                                                                                blue after removing gray part: 80

The screenshot of the program along with its output is attached.

Given Integer Values For Red, Green, And Blue, Subtract The Gray From Each Value.Computers Represent

Related Questions

will clearing cache and cookies resolve this issue

Answers

Answer:

not all of them no but it will help

Explanation:

Pleaseee need help ASAP!!

Will mark BRAINLIEST!! :)

Pleaseee need help ASAP!!Will mark BRAINLIEST!! :)

Answers

Answer:

The correct option is Option B

Explanation:

We need to find examples of client-side code.

Client Side code: The part of code, that doesn't require server for performing specific task

SO, The correct option is Option B

Prompt for special characters in user name

Reason: We can use alert to generate prompt using JavaScript or through validation and it can be done on client side.

All other options, we need to hit the server to perform the task, So they are not client-side code.

give an example that shows that coordinate descent may not end the optimum of a convex function.

Answers

Coordinate descent is an iterative optimization method that iteratively minimizes the objective function along one coordinate at a time while holding all other coordinates fixed.

While this method is widely used for optimizing convex functions, there are situations where it may not converge to the global optimum. In other words, coordinate descent may end up at a suboptimal solution when optimizing a convex function.Let us take an example to understand this.

Suppose we want to minimize the following convex function f(x, y) = x^2 + 100y^2. Using coordinate descent, we start with an initial guess (x0, y0) and iteratively update the values of x and y as follows:x_{i+1} = argmin_{x} f(x, y_i)y_{i+1} = argmin_{y} f(x_{i+1}, y)At each iteration, we choose the coordinate that minimizes the objective function while holding all other coordinates fixed.

Therefore, we have the following update rules:x_{i+1} = 0y_{i+1} = 0However, it is easy to see that (x=0, y=0) is not the global optimum of f(x, y) = x^2 + 100y^2. The global optimum is at (x=0, y=0), which is not reached by coordinate descent in this case. Therefore, we can conclude that coordinate descent may not always converge to the global optimum of a convex function.

To know more about fixed visit:

https://brainly.com/question/29818792

#SPJ11

in c++ Write a program that will read in an array of 10 numbers. Have the program find the largest, the smallest, find the numbers above 0, find how many numbers = 0, or find the numbers less than 0.

Answers

Using the knowledge in computational language in C++ it is possible to write a code that have the program find the largest, the smallest, find the numbers above 0, find how many numbers = 0, or find the numbers less than 0.

Writting the code:

#include<stdio.h>

main()

{

int a[10],i,sum=0;

printf("enter array\n");

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

{

scanf("%d",&a[i]);

sum=sum+a[i];

}

printf("sum of array =%d",sum);

}

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

#SPJ1

in c++ Write a program that will read in an array of 10 numbers. Have the program find the largest, the

A C++ program is one that is used to create high-performance programs. A program that will read an array of 10 numbers can be created by using a chart array.

What is a program?

A program is a specified set of codes that are used to run the computer. They are set instructions for the computer.

The C++ program is;

#include<stdio.h>

main()

{

int a[10],i,sum=0;

printf("enter array\n");

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

{

scanf("%d",&a[i]);

sum=sum+a[i];

}

printf("sum of array =%d",sum);

}

Therefore, a C++ program that will read an array of 10 numbers is given above.

To learn more about the program, refer to the below link:

https://brainly.com/question/28959658

#SPJ1

Question 4 of 10 Taylor wants a mobile device they can use to make phone calls, check email, and interact on social media. They also want both their current devices (MacBook and iPad) to work seamlessly with their new mobile device. Which operating system would be best for Taylor? A. Android
B. Windows OS
C. Chrome OS
D. iOS​

Answers

Answer:

D. iOS

Explanation:

iOS deviced works together better like with the copy and pasta from another device to another and other cool functions

STREAMING SERVICES (NETFLIX, AMAZON, HULU e From the question above provide 2 Reasons why you are arguing whether the Streaming Service
NG SERVICES (NETFLIX, AMAZON, HULU etc) - SUBSTITUTES OR COMPLEMENTS? ons why you are arguing whether the Streaming Services (Netflix, Amazon, Hulu ete) are substitutes or complements - briefly rationalize why using concepts related to cross elasticity

Answers

The substitutes in terms of content offerings & competing for consumers' attention, but they are also complemented for the ability to enhance each other's through bundled subscriptions and content partnerships.

When considering whether streaming services are substitutes or complements, the concept of cross elasticity of demand comes into play. Cross elasticity measures the responsiveness of demand for one product to a change in the price of another product. Streaming services such as Netflix, Amazon Prime Video, and Hulu can be considered both substitutes and complements.

From a substitution perspective, streaming services can be seen as substitutes. If the price of Netflix increases significantly, some consumers may choose to switch to a cheaper alternative like Hulu or Amazon Prime Video. This demonstrates a negative cross elasticity, as an increase in the price of one service leads to an increase in demand for another.

However, streaming services also exhibit complementarity. Many consumers subscribe to multiple services to access a wider range of content. This is especially true as exclusive content and original productions become more prevalent. Streaming platforms recognize this and often offer bundled subscriptions or joint promotions to enhance their value proposition. For example, Amazon Prime Video is bundled with the broader benefits of Amazon Prime membership, and Disney+ has partnered with Hulu to offer a discounted bundle. This shows a positive cross elasticity, as an increase in the availability or quality of content on one service leads to an increase in demand for other services.

In conclusion, while streaming services can be substitutes in terms of content offerings and competing for consumers' attention, they also act as complements through bundled subscriptions and content partnerships. The concept of cross elasticity helps explain how changes in price and content availability affect the demand for different streaming services, highlighting both their substitutability and complementarity in the market.

Learn more about content here:
https://brainly.com/question/32612379

#SPJ11

Which three of the following will be printed?

c = 7

while (c > 0):
print(c)
c = c - 3
Group of answer choices

0

1

3

4

5

6

7

Answers

In the above code snippet, The following numbers will be printed:

7

4

1

What is the explanation for the above?

The initial value of c is 7, which is greater than 0, so the loop starts. The print(c) statement inside the loop prints the current value of c, which is initially 7. Then, the statement c = c - 3 subtracts 3 from the current value of c, so c becomes 4.

On the second iteration of the loop, the condition c > 0 is still true, so the loop continues. The print(c) statement inside the loop prints the current value of c, which is now 4. Then, the statement c = c - 3 subtracts 3 from the current value of c, so c becomes 1.

On the third iteration of the loop, the condition c > 0 is still true, so the loop continues. The print(c) statement inside the loop prints the current value of c, which is now 1. Then, the statement c = c - 3 subtracts 3 from the current value of c, so c becomes -2.

On the fourth iteration of the loop, the condition c > 0 is false, because c is now -2, so the loop ends. Therefore, only 7, 4, and 1 will be printed.

Learn more about code at:

https://brainly.com/question/30772469

#SPJ1

major, large city newspaper endorsements often carry important weight, especially in down ballot races for local offices.

Answers

Answer:

Explanation:

because they have the most electoral college votes up for grabs.

It is true that major, large city newspaper endorsements often carry important weight, especially in down ballot races for local offices.

What is endorsement?

Endorsements are public statements of support or approval made by an individual, group, or organisation for a specific person, product, or service.

Endorsements are especially important in politics during elections because they can influence voters' opinions and decisions.

In down ballot races for local offices, major, large city newspaper endorsements can carry a lot of weight.

This is due to the fact that these newspapers frequently have a large readership and a reputation for publishing well-researched and informed opinions.

Voters who are undecided or have limited information about a particular candidate or race may find these endorsements useful in making their decision.

Thus, the given statement is true.

For more details regarding endorsements, visit:

https://brainly.com/question/13582639

#SPJ2

Computer _ rely on up to date definitions?

A. Administrators
B. Malware Scan
C. Firmware updates
D. Storage Drivers

Answers

Answer:  The correct answer is B. Malware Scan

Explanation:

The word "definition" only applies to antivirus and malware removal applications that scan for patterns using the definitions. The other choices do not use definitions. Firmware updates rely on images, storage drives use drivers and administrators are user privilege type.

Drag the correct label to the appropriate bin to identify the type of cartilage that forms each body structure. ResetHelp Cartilage in external ear Selected Hyaline Cartilage Elastic Cartilage Fibrocartilage Request Answer Provide Feedback

Answers

Each bodily cartilage is made up of one of the following types of cartilage:Cartilage fibrosis.The ECM has a substantial collagen bundle.

Explain each body cartilage ?Each bodily cartilage is made up of one of the following types of cartilage:Cartilage fibrosis.The ECM has a substantial collagen bundle.The perichondrium is absent.In the articular discs are where it is found.It supports and connects structures, which is its job.It is the cartilage that is stronger.Flexible cartilage.ECM is a network of fibers that resembles a thread.It is found in the ear and nose tips.It works is to elasticity and strengthen and maintains shape. .Hyaline cartilage.It has chondrocytes in the lacunae and perichondrium covers the outer layer.Flexibility, support for the weakest, and stress absorption are its functions.It can be found in the nose tip and ends of bones in the fetal skeleton.

To learn more about body cartilage refer

https://brainly.com/question/10600094

#SPJ1

If someone want to type race with me :

https://play.typeracer.com?rt=21mvsi61s8

Let's improve our typing speed.
Reccomendation:(Use computer)

Answers

I’d beat you in a race my boy no cap

During the first six months of his job, Enrique's boss gave him weekly feedback about his performance. What component of effective feedback does this demonstrate?


being timely

being specific

being direct

being sincere

Answers

Being direct I think because Enrique’s boss is being direct about his work and making sure he does his job. The other options don’t sound right

Answer:

Being Timely

Explanation:

just finished the quiz and got it right

imagine that a breach of the system prevents a store's point-of-sale device from accessing the bank network to verify purchases. if some purchases are allowed to continue if they are under a specified dollar amount, then we can say the store's system is fail-secure.

Answers

Yes, if a breach of the system prevents a store's point-of-sale device from accessing the bank network to verify purchases, and some purchases are still allowed to continue if they are under a specified dollar amount, then we can say that the store's system is fail-secure.

A fail-secure system is designed to default to a secure state when a failure or breach occurs. In this case, the store's system is fail-secure because it allows purchases under a specified dollar amount to proceed even if the point-of-sale device cannot verify them with the bank network.

To implement a fail-secure system, the store would need to set a threshold dollar amount. Any purchase below this amount would be considered low-risk and allowed to proceed without verification. However, any purchase exceeding this threshold would be blocked until the system is able to connect to the bank network and verify the transaction.

By implementing this fail-secure mechanism, the store can ensure that low-value purchases can still be made during a breach, providing convenience to customers while maintaining a level of security for higher-value transactions.

To know more about breach visit:

https://brainly.com/question/30627650

#SPJ11

Which of the following are best and safe practices for shutting down a computer or disconnecting a device? Check all of the boxes that apply.

Which of the following are best and safe practices for shutting down a computer or disconnecting a device?

Answers

D and A because in order to be safe you need to unplug it to be safe

Answer:

I'm not 100% sure, but I think I'd be B and D.

Write a method that takes two circles, and returns the sum of the areas of the circles.

This method must be named areaSum() and it must have two Circle parameters. This method must return a double.

For example suppose two Circle objects were initialized as shown:

Circle circ1 = new Circle(6.0);
Circle circ2 = new Circle(8.0);
The method call areaSum(circ1, circ2) should then return the value 314.1592653589793.

You can call your method in the program's main method so you can test whether it works, but you must remove or comment out the main method before checking your code for a score.

Answers

Answer:

public static double areaSum(Circle c1, Circle c2){

 double c1Radius = c1.getRadius();

 double c2Radius = c2.getRadius();

 return Math.PI * (Math.pow(c1Radius, 2) + Math.pow(c2Radius, 2));

public static void main(String[] args){

 Circle c1 = new Circle(6.0);

 Circle c2 = new Circle(8.0);

  areaSum(c1,c2);

 }

Explanation:

The function calculates the sum of the area of two circles with their radius given. The program written in python 3 goes thus :

import math

#import the math module

def areaSum(c1, c2):

#initialize the areaSum function which takes in two parameters

c1 = math.pi * (c1**2)

# calculate the area of the first circle

c2 = math.pi * (c2**2)

#Calculate the area of the second circle

return c1+c2

#return the sum of the areas

print(areaSum(6.0, 8.0))

A sample run of the program is attached

Learn more : https://brainly.com/question/19973164

Write a method that takes two circles, and returns the sum of the areas of the circles.This method must

the input that causes insertion sort to take the most number of steps is...

Answers

The most number of steps insertion sort can take is 4n+2. The time spent running the algorithm is n-linear.The running time of insertion sort is therefore (n)Theta, left parenthesis, n, right parenthesis, if each element is greater than or equal to each element to its left.

The straightforward sorting algorithm known as insertion sort functions similarly to how you would arrange playing cards in your hands. In a sense, the array is divided into sorted and unsorted parts.

Values are chosen and assigned to the appropriate positions in the sorted part of the data from the unsorted part.

One of the simplest algorithms, with straightforward implementation, is this one. For modest data values, insertion sort is generally effective. Insertion sort is adaptive in nature, hence it is suitable for data sets that have already undergone some degree of sorting.

To know more about Insertion sort:

brainly.com/question/13326461

#SPJ4

Which of the following describe the characteristics of a good logo? Choose all that apply. It is a complex design It is memorable. It utilizes the elements of design. O It is trendy​

Answers

Answer:

It is memorable.

It utilizes the elements of design.

Explanation:

IMO these 2 will determine a good logo. Since everyone should remember it if they come across it again in the future

i need help look below

Answers

Answer:

What was the question actually?

Explanation:

A constructor must have a return statement.

True

False

Answers

Answer:

False

Explanation:

this is false not true

The purpose of this discussion is to evaluate and discuss the value in using charts to visualize data. Graphs and charts are used every day though we may not think about them.

Think about a time when you utilized data visualization. This could be a time when you needed to create a chart or graph at work in order to present information, or a time in your personal life when you had to read a chart or graph in order to obtain information.

Answers

Data visualization, such as charts and graphs, plays a valuable role in presenting and understanding information.

Data visualization is a powerful tool that enhances the understanding and communication of complex information. In a professional setting, I remember a time when I needed to present sales data to stakeholders in a company meeting.

To effectively convey the trends and patterns in sales performance, I created a line chart illustrating the monthly sales figures over a specific period.

The chart allowed the audience to grasp the fluctuations and identify any notable patterns, making it easier to analyze the sales performance and discuss strategies.

In a personal context, I recall using a graph to monitor my progress in a fitness journey. I tracked my weight loss progress over several months and plotted the data points on a line graph.

This visualization allowed me to visually observe the trend and overall trajectory of my weight loss journey, making it easier to identify periods of significant progress and areas that needed improvement.

The graph served as a motivating tool, providing a clear visual representation of my achievements and helping me stay on track towards my goals.

In both instances, data visualization played a crucial role in enhancing understanding and facilitating decision-making.

Whether in professional or personal scenarios, charts and graphs enable the effective communication and interpretation of data, allowing for more informed analysis and decision-making processes.

learn more about stakeholders here:

https://brainly.com/question/32720283

#SPJ11

A water park will let a visitor on a ride if they are 48 or more inches tall OR they are 14 years old or older. WILL MARK BRAINLIEST ANSWER!


Make a flowchart for this decision. Make sure to use comparison operators ( , ==, etc. ) and logical operators (&&, ||, !) when you write your Boolean expression.

Answers

Answer:

function waterPark() {

   var age = parseInt(prompt("Enter your Age: "));

   var height = parseInt(prompt("Enter your Height (in inches): "));

   if ( age >= 14 || height >= 48){

       console.log("You can ride in our park");

   } else {

        console.log("You are not eligible to ride in the park");

   }

}

waterPark( );

Explanation:

The Javascript function "waterPark" prompts users for their age and height to check if they are eligible to ride in the park. The prompt is parsed to an integer and assign respectively to the age and height variable.

The if conditional statement compares the age and height of the user to know if they are eligible to ride in the park or not.

What is the keyboard shortcut for the Undo command?
Choose the answer.
CTRL+X
CTRL+Z
CTRL+U
CTRL+V​

Answers

Answer:

CTRL+Z is Undo

Explanation:

CTRL+X: Cut

CTRL+Z: Undo

CTRL+U: Underline

CTRL+V: Paste

middle of test help pls
Which of the following could be a possibility in the future?


A voice-activated computers

B computerized glasses

C holographic messages

D computerized watches

Answers

Answer:

I'm thinking d

Explanation:

i dont think we are advanced enough to do a,b, or c.

so imma say d

Answer:

all

Explanation:

can a 0.90 GB storage left android phone download an app of 28 MB plsssss fast I will give you brainliest why and why not?

Answers

Answer:

Yes

Explanation:

0.9 GB = 900 MB. That is a plenty of space for a 28 MB app.

How did tribes profit most from cattle drives that passed through their land?
A.
by successfully collecting taxes from every drover who used their lands
B.
by buying cattle from ranchers to keep for themselves
C.
by selling cattle that would be taken to Texas ranches
D.
by leasing grazing land to ranchers and drovers from Texas

Answers

The way that the tribes profit most from cattle drives that passed through their land is option D. By leasing grazing land to ranchers and drovers from Texas.

How did Native Americans gain from the long cattle drives?

When Oklahoma became a state in 1907, the reservation system there was essentially abolished. In Indian Territory, cattle were and are the dominant economic driver.

Tolls on moving livestock, exporting their own animals, and leasing their territory for grazing were all sources of income for the tribes.

There were several cattle drives between 1867 and 1893. Cattle drives were conducted to supply the demand for beef in the east and to provide the cattlemen with a means of livelihood after the Civil War when the great cities in the northeast lacked livestock.

Lastly, Abolishing Cattle Drives: Soon after the Civil War, it began, and after the railroads reached Texas, it came to an end.

Learn more about cattle drives from

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

List out first 10 decimal equivalent numbers in binary, octal
hexadecimal number systems.

Answers

Answer:

Explanation:Base 10 (Decimal) — Represent any number using 10 digits [0–9]

Base 2 (Binary) — Represent any number using 2 digits [0–1]

Base 8 (Octal) — Represent any number using 8 digits [0–7]

Base 16(Hexadecimal) — Represent any number using 10 digits and 6 characters [0–9, A, B, C, D, E, F]

In any of the number systems mentioned above, zero is very important as a place-holding value. Take the number 1005. How do we write that number so that we know that there are no tens and hundreds in the number? We can’t write it as 15 because that’s a different number and how do we write a million (1,000,000) or a billion (1,000,000,000) without zeros? Do you realize it’s significance?

First, we will see how the decimal number system is been built, and then we will use the same rules on the other number systems as well.

So how do we build a number system?

We all know how to write numbers up to 9, don’t we? What then? Well, it’s simple really. When you have used up all of your symbols, what you do is,

you add another digit to the left and make the right digit 0.

Then again go up to until you finish up all your symbols on the right side and when you hit the last symbol increase the digit on the left by 1.

When you used up all the symbols on both the right and left digit, then make both of them 0 and add another 1 to the left and it goes on and on like that.

If you use the above 3 rules on a decimal system,

Write numbers 0–9.

Once you reach 9, make rightmost digit 0 and add 1 to the left which means 10.

Then on right digit, we go up until 9 and when we reach 19 we use 0 on the right digit and add 1 to the left, so we get 20.

Likewise, when we reach 99, we use 0s in both of these digits’ places and add 1 to the left which gives us 100.

So you see when we have ten different symbols, when we add digits to the left side of a number, each position is going to worth 10 times more than it’s previous one.

True or false? To help improve SEO, your URL should match the title of your blog post, word for word.

Answers

Improving SEO, by ensuring the URL matches the title of your

blog post, word for word is False.

What is SEO?

This is referred to as Search engine optimization. It is used to

improve a site by ensuring that is more visible when people

search for certain things or words.

The URL should contain only key words and unnecessary ones

should be eliminated which is why it isn't compulsory for the title

to be word for word.

Read more about Search engine optimization here https://brainly.com/question/504518

Every complete C program must have a ________. Group of answer choices cout statement symbolic constant comment function named main preprocessor directive

Answers

Every complete C program must have a function named main. The main function serves as the entry point for the program, and is where the program begins executing. The main function is required because it provides a starting point for the program's execution.

The main function is defined with the following syntax:

int main(void) {

// code goes here

return 0;

}

This code declares a function named main that returns an integer value (in this case, 0) and takes no arguments (void). The body of the function is where the program logic is placed. When the program is run, the operating system loads the program into memory and starts executing it at the beginning of the main function. From there, the program can perform any necessary operations, such as input/output, computation, and data manipulation, before returning an exit status to the operating system.

To learn more about program; https://brainly.com/question/28959658

#SPJ11

Select the correct answer from each drop-down menu A manipulator and the end effector work together to execute a robot's tasks A manipulator is a series of joined segments, whose function is to capable of The manipulator is thus​

Select the correct answer from each drop-down menu A manipulator and the end effector work together to

Answers

The end effector and the manipulator collaborate to carry out a robot's operations. A manipulator is made up of a number of connected segments that are used to position and direct the end effector.

Which area of the robotic manipulator is utilized for object positioning within the robot work volume?

The robot manipulator is divided into two parts: Body-and-arm - for positioning things within the work volume of the robot. Wrist assembly for object orientation.

Where is the manipulator's end effector connected?

An end effector is an accessory that fastens to a robot's wrist and enables it to interact with the task at hand.

To know kore about manipulator visit:-

https://brainly.com/question/30002364

#SPJ1

i need help with Mikhail is working in an IDE and needs to test a program one step at a time to find and fix errors. What tool should he use?

Answers

Answer:

Read below

Explanation:

Other Questions
A/an ________ is a variable that affects both variables of interest and may falsely give the impression of a cause-and-effect relationship. Graph the ordered pair ( -2, 5) and its reflection over the y-axis. Name the coordinates for the reflection Simion wants to have $500,000 in an investment account 6 years from now. The account will pay 6.96 percent annually If he saves money every month, starting one month from now, how much will he have to save each month to reach his goal? A) $5,614.90 B) $6,049.86 C) $5,391.05 D) $5,053.86 E) $5,360.94 Based on his transcendental beliefs and "Civil Disobedience," it is most reasonable to assume that Thoreau would have liked to create his own government, which would not require taxes. was unwilling to follow any law created by the government. believed following his conscience was more important than following the law. wished to be completely separate from society and those around him. Help~...it's "Science". ^W^ I NEED THIS FOR TODAT :)Which of the following correctly compares UV rays and infrared waves? A. Infrared waves have higher energy than UV rays.B. Infrared waves have the same wavelength as UV rays.C. Infrared waves have lower frequency than UV rays.D. Infrared waves have shorter wavelength than UV rays.I will give brainliest. Based On The Evidence in the song, what would you predict the character in the song would do if they received very bad ews?A. They would fall apartB. They would overcome the bad ewsC. They would laugh at the bad ewsD. They would go hang out with friends until they felt better(This is talking about the song Happy by Pharrell Williams)Just saying and please help fast thank you :)! (Marking someone as brainliest!) Let S be the surface of revolution of the curve C: z = x^2 - x, 0 < x < 1 about the x-axis.(a) Find a parametrization of the surface. Below are 4 reactions. For each, indicate what reaction pathway lead to each major product shown. Discuss the factors that led you to each decision. Use each pathway (SN1, SN2, E1, and E2) only one time. Where there any reactions where you had a more difficult time deciding versus others? Draw an arrow-pushing mechanism for each reaction to clearly show the electron movement which led to each major product shown. Mendelian genetics Practice problems Calculating Loan Payments You want to buy a new sports coupe for $69,300, and the finance office at the dealership has quoted you a loan with an APR of 5.6 percent for 48 months to buy the car. What will your monthly payments be? What is the effective annual rate on this loan? Input area: Amount borrowed $69,300 APR 5.6% # of years 4 # of times compounded per year 12 (Output area) Complete the following analysis. Do not hard code values in your calculations. All answers should be positive. Loan Payment __________Effective Intrest Rate ____________ PLZZ HELP IM CONFUSED I NEED HELP ASAP!!!!!!! Fred and his parents are having a movie night. His parents told him he could choose one snack and one movie. The following table lists the movies and snacks he can choose.Snacks Movieslicorice Across the Linepopcorn Franticsour sticks Maxed OutWhich of the following diagrams correctly shows all of Fred's choices of combinations? what is meant by the statement that two variables are related? choose the correct answer. two variables are related when a scatterplot can be made of points using the two variables as values. two variables are related when a change in one can be shown to cause a change in the other. two variables are related when a discernible pattern exists between them. two variables are related when the value of one can be derived mathematically from the value of the other. 4.00 g of a certain Compound X, known to be made of carbon, hydrogen and perhaps oxygen, and to have a molecular molar mass of 152. gimol, is burned completely in excess oxygen, and the mass of the products carefully measured: product mass carbon dioxide 5.79 g water 2.84 g Use this information to find the molecular formula of X. Samir is single and 55 years of age, and has gross income of $58,000 in 2019. His expenses are as follows: Alimony paid (divorced in 2013) $15,000; Charitable contributions 3,000 Contribution to a traditional IRA 5,000, Interest on home mortgage and property taxes on residence 6,000: and State income tax 3,200. What is Samir's AGI for 2019? A.$19,800, B.$30,000. C$35,000. D.S38,000 E.None of these answers. Dude I have no idea what Im doing can someone explain this to me Can someone help me out with this? Which phrase best completes the table?Achievements of Postclassical ChinaCreated impressive art and potteryExpanded China's borders through conquest?A. Let citizens vote for their leadersB. Ended all trade along the Silk RoadC. Added Japan to its territoryD. Experienced huge population growth Point (-1,-3) is on the terminal side of angle A in standard position. what is the value of tan A? A. -1/3 B. 1/3 C. -3 D. 3 How long does it take for one red blood cell to go round the body?o 20 secondso 20 minuteso 24 hourso 24 minutes The picture shown is an example of gel electrophoresis, which is used to compare bands of DNA. What biomolecule does gel electrophoresis analyze?