PYTHON QUESTION

Exercise 9.3.9: Full Name & Citation
points
Write a program that asks a user for their first and last name and save them
to two variables.
Then print out their full name (First_name Last_name) and then a citation
(Last name, First name)
For example, if the user input the following:
First name: Roger
Last Name: Brown
Your program output should be the following:
Full name : Roger Brown
Citation: Brown, Roger
Use swapping to switch the order of your variables!

Answers

Answer 1

Final answer:

To handle the exercise, gather the user's first and last name, print the full name, perform variable swapping, and print the citation in the format 'Last name, First name'.

Explanation:

To complete this exercise in Python, we will prompt the user to enter their first name and last name, save these values to variables, and then utilize variable swapping to generate the desired output with full name and citation format. Here is a step-by-step solution:

Ask the user for their first name and save it to a variable called first_name.Ask the user for their last name and save it to a variable called last_name.Print the full name by concatenating first_name and last_name with a space between them.Use variable swapping to switch the values of first_name and last_name.Print the citation format by concatenating last_name, a comma, a space, and then first_name.

Here is an example of the code:

first_name = input('Enter your first name: ')
last_name = input('Enter your last name: ')
print('Full name:', first_name, last_name)
first_name, last_name = last_name, first_name # This is the swapping
print('Citation:', first_name + ',', last_name)
Answer 2

Final answer:

A Python program can ask for a user's first and last names, display them, and then print the citation by swapping the name order. The 'input' function is used to collect names, and the swap is done by reassigning variables.

Explanation:

To write a Python program that asks a user for their first name and last name, you can use the input() function. After that, you will print the full name and citation, with the order of the names swapped using variable swapping.

Example Python Program

first_name = input("Enter your first name: ")
last_name = input("Enter your last name: ")
# Display full name
print("Full name :", first_name, last_name)
# Swap the variables to get the citation format
first_name, last_name = last_name, first_name
# Display citation
print("Citation:", first_name, ",", last_name)

When running this program, after the user provides their first and last names, it will show the full name as 'First_name Last_name' and the citation as 'Last_name, First_name'.


Related Questions

Type the correct answer in the box. Spell the word correctly.
An online job portal asks you to upload your official photograph for better job matches. Which data type stores images and audio visual clips?
The
data type stores images and audio visual clips.
Reset
Next

Answers

Answer:

i think it is mp4

Explanation:

Final answer:

The data type that stores images and audio-visual clips is known as binary data or BLOB (Binary Large Object), which encodes the information into binary code for storage and processing.

Explanation:

The data type that stores images and audio-visual clips is commonly referred to as binary data or BLOB (Binary Large Object). When you upload your official photograph to an online job portal, the image file is stored in the form of binary data.

This type of data can include various formats like JPEG, PNG, GIF for images, and MP4, AVI for videos. Each format has a different way of encoding the graphical or audio-visual information into binary code that computers can store and process.

how to do pseudocode and flowchart in BMI ( computer programming ​

Answers

Answer:

You need to find out what is the units of measurement of the height and weight. You also need to find that the weight is in Kilogram or pounds, and whether the height is in feet and inches, or inches, or meters and centimeters.

Part1: You need to read the values of the weight and height, and validate it as required.

Part2: Now you need to convert those findings into English measures or metrics for computation.

Part3: Output: You need to display as well as echo the input as well as the BMI; and you need to mention the supplementary message which is based on the BMI findings related to Obesity, borderline overweight, normal and overweight, etc.

The program is as below:

import java.io. *;

class Main

{

// weight in pounds and heights are in inches

private double your_wght;

private double your_hght;

Main ( double ht, double wt)

{

your_wght = wt; your_hght = ht;

}

public double GetHght() { return(your_hght); }

public double GetWght() { return(your_wght); }

public double CalculBMI() { return(your_wght*703/(your_hght*your_hght)); }

public double PrintDouble( String promptMessage) throws IOException

{

double Num=0;

String x=null;

Console console = System.console();

System.out.print(promptMessage);  

x = console.readLine();  

Num = Double.parseDouble(x);

return(Num);  

}  

public static void main( String args[])

{

double heightinFeet=0,heightinInch=0,w=0;

Main Input = new Main(0,0);

try

{

System.out.println(" Please input the height(feet/inches) \n");

heightinFeet = Input.PrintDouble(" In feet :> ");

heightinInch = Input.PrintDouble(" In inches :> ");

w = Input.PrintDouble(" Please enter the weight(pounds) :>");

}

catch (IOException ex) { System.out.println("occurred Input Exception"); }  

Main BMI_value = new Main(heightinFeet*12+heightinInch,w);  

System.out.println(" Weight = " + BMI_value.GetWght() );  

System.out.println(" Height(inches) " + BMI_value.GetHght() );

System.out.println(" BMI is " + BMI_value.CalculBMI() );  

}

}

Explanation:

Rest of the fields and properties are self understood, however, PrintMessage needs explanation. It takes a string as input, which calls for entering some double value like in feet, and in inches, and returns that value, which is assigned to relevant double variable. And Main is the class with Main constructor, which is a parameterized constructor, and takes height and weight as input.

Joann wants to insert a table of contents to her document so readers can easily navigate to the different parts of her document.

Which option of Quick Parts does she use?

Answers

Answer:

d

Explanation:

edge 2020

Joann should use the "Table of Contents" option from the Quick Parts menu to insert a table of contents into her document.

What is Table of Contents

In Microsoft Word, the "Table of Contents" option in the Quick Parts menu helps users make a list to help them  find different parts of their document. This is how it works:

Joann must make sure she chooses the right heading styles for the different parts of her document in order to use the "Table of Contents" feature. These styles are called "Heading 1," "Heading 2," and so on. These styles make it easier for Word to organize the content in a specific order.

Read more about Table of Contents here:

https://brainly.com/question/1493356

#SPJ3

what is the relationship between binary and modern technology

Answers

Answer:

Explanation:

Binary numbers are in our technology life, this is because the data in the cellphone, computer, printer, and on the internet are binary numbers, the data is represented in 0 and 1, only that is the binary numbers, people cannot see this numbers in their routines because these numbers are coded, for example, in mp3 or mp4 code, nowadays we hear about 8K resolution and artificial intelligence, and even these technologies are binary numbers.

Which of the following is an example of an appropriate name for a control?

Answers

Answer:

btnExit

Explanation:

What are the advantages of businesses using Twitter ?

Answers

Answer:Through Twitter, businesses can reach a larger target audience within their key demographics through the use of hashtags and applicable media.

Explanation:

Compose one paragraph (three to four sentences) explaining the difference between a courtesy copy and a blind courtesy copy.

Answers

Answer:

Courtesy copy CC and Blind Courtesy Copy BCC are two terminology used in while sending email to someone/group of people.

Explanation:

When you send emails to a group of people.  While sending email there are two options carbon copy CC and Blind Carbon Copy Bcc. Those names are mentioned in CC are visible to all other recipients whereas those names/email addresses mentioned in BCC are not visible to anyone.

That means the receiver of email can see the CC recipients except for the BCC recipient. While CSS and BCC can't see the receiver reply.

Jasmine needs to select the first sentence of a paragraph and the last sentence of a paragraph simultaneously. The text is nonadjacent. Which of the following should she do?a. Select the first sentence, then press and hold ALT while selecting the second sentence.
b. Select the first sentence, then press and hold SHIFT while selecting the second sentence.
c. Select the first sentence, then press and hold SHIFT+ALT while selecting the second sentence.
d. Select the first sentence, then press and hold CTRL while selecting the second sentence.

Answers

Answer:

d. Select the first sentence, then press and hold CTRL while selecting the second sentence.

Explanation:

In MS word, we need to select text sometimes from different places of the document or paragraph at the same time. To select the text from different place that are not adjacent to each other. we can follow the following steps.

Select the first sentence or text that you need. Now press control button and hold until select the other sentence or text.

In this way, jasmine can also select the first sentence of a paragraph and the last sentence of the paragraph simultaneously, whether text is not adjacent.

Question #1
Which of the following shows the correct evolution of marketing
over time?
Marketing Era - Selling Era - Production Era - Relationship
Era
Production Era - Selling Era - Marketing Era - Relationship
Era
Relationship Era - Selling Era - Marketing Era - Production
Era
Selling Era - Relationship Era - Production Era - Marketing
Era

Answers

The correct evolution is the production era-selling era-marketing era-relationship era

Explanation:

Evolution of marketing is the systematic way in which the marketing industry developed and hence the various developments and the modifications are systematically defined in each of the era

There are four major stages of development the product life cycle, the introduction, the growth and the maturity and finally the decline of the product. Philip Kotler is the founder of this modern method of marketing

What’s the lcm compare and making equivalent fractions 4/5 and 5/6

Answers

Answer:

For the two fractions 4/5 and 5/6, the least common denominator is 30. The fraction 4/5 is equivalent to 24/30 (To get this I multiplied both the numerator and denominator by 6). The fraction 5/6 is equivalent to 25/30 (To get this I multiplied both the numerator and denominator by 5).

Explanation:

Gian wants to add audio to his presentation whichaude ves not supported
MIDI file
MP3 audio file
Windows Media Aude File
TIFF file​

Answers

Answer:

TIFF file is not audio format file rather it is graphic container that stores raster images.

Explanation:

Gain can add all other audio files (MIDI, MP3, Windows media audio file) to his presentation.

What are MIDI, MP3 and WMA :

MIDI:

Musical Instrument Digital Interface (MIDI) is a protocol that is designed for recording and playback music on digital synthesizers that is supported by many computer sound cards. Gian can add MIDI audio format file in his presentation.

MP3:

This audio file format technology compress a sound technology into very small file while preserving the original quality of sound when it is played. Gian can add this audio format in presentation to play audio in presentation.

WMA

This audio format is developed by Microsoft. It contains a series of audio codecs and their corresponding audio formats.

Gian can add WMA extension audio file to his presentation to play audio.

Answer:

D.TIFF File on tezt

Explanation:

How do you start an HTML webpage?
Lots of details will be nice

Answers

Answer:

The HTML page code starts with <!Doctype html>, and it confirms the version of HTML you are coding in. Remember HTML 4.01 was based on SGML, and hence a reference to a DTD is required. However, HTML 5 is not based on SGML, and hence it is not required to refer to a DTD in that case. Also, Doctype is not a tag. Hence, the first tag used is the next in the list, and that is the head tag. It comprises of a title, meta keywords, meta description, styles if used any, and scripts. However, remember, in modern-day coding script is pasted at the last portion of a web page. And this is to ensure that the web page gets loaded once at least just in case the script does not gets loaded. However, style ( CSS, Bootstrap, etc) is part of the head tag only, and always. And finally comes the body. And in the body, we use all the popular HTML tags. The form tag is also a part of the body. Remember a form can be a GET or POST, and these are the two methods. Also, the action is used to set the URL where the data needs to be sent when the form is loaded. You should study Form tag deeply, and the rest of the tags are easy, and you should know how to add the styles and javascript functions to each of them. Also, knowledge of jQuery and JavaScript is a must these days.

Explanation:

A simplest of HTML code will look like:

<!DOCTYPE html>

<html>

<head>

<title>Title</title>

<meta charset="UTF-8">

<meta name="description" content="">

<meta name="keywords" content="">

<meta name="author" content="">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

</head>

<body>

The content

</body>

</html>

Remember viewport above is meant for making the page responsive, and we mention here width= device width, and this means it will set to the width of the device on which it is running. And there is a media tag in CSS, which we use for making the page responsive as well. Or else you can make use of Bootstrap. And initial scale sets the initial zoom level.

What is the process for creating a new merge document for address labels?

Answers

Answer:

- open a new document

- start mail merge and click labels

- click label options and select the correct type

- select the recipient file

- click arrange labels; insert and address block

Explanation:

right on edg

To create a merge document for address labels, open a new document, use the 'Mailings' tab to start a mail merge, select 'Labels,' choose your label vendor and product number, and insert merge fields before printing.

Creating a New Merge Document for Address Labels

To create a new merge document for address labels, you can follow these steps:

Open a new (blank) document. If you have a template available, you can use that as well.        

Go to the "Mailings" tab and click on "Start Mail Merge".Select "Labels" from the drop-down menu.Choose the appropriate label vendor and product number that matches your labels.Click "OK" to format your document for the labels.Click on "Select Recipients" and choose how you want to select your address list (e.g., by using an existing list or creating a new one).Click "Insert Merge Field" to insert fields for the recipient's name, address, etc., into the labels.Once all fields are inserted, click "Preview Results" to see how your labels will look.When satisfied, click "Finish & Merge" and select "Print Documents" to print your address labels.

Following these steps will ensure that your new merge document for address labels is correctly set up and ready for printing.

What are the answers to everfi

Answers

Final answer:

The answers to Everfi exercises can be found in resources provided by Everfi, including answer keys, instructor guides, and student resources.

Explanation:

The answers to Everfi exercises can be found in resources provided by Everfi. These resources include answer keys, instructor guides, and student resources. Answer keys are often available at the end of the book or in the instructor resources. Students can also access resources such as Getting Started Guides and PowerPoint slides to supplement their learning.

What is the default left margin in word 2003 document ?

Answers

Answer:

1.25 inches

Explanation:

It is 1.25 inches or 3.17 cm which is the left and right margin in the " Word 2003 document". And 1 inch or the 2.54 cm is being set as both sides left and right standard margin and 1.25 inches are also set for the top and bottom margin in the "Word 2003 document". And hence, by default, the left margin in Word 2003 document happens to be 1.25 inches.

Drag the tiles to the boxes to form correct pairs.
Match the devices to their functional requirements.
an overhead projector
a laptop
a computer
an external monitor
requires a CD-ROM drive to run presentation CDs
arrowRight
requires a port to connect to the laptop
arrowRight
requires an external monitor to project high-resolution images
arrowRight
requires slides to project images

Answers

Answer:

An overhead projector: requires slides to project images

A laptop: requires an external monitor to project high-resolution images

A computer: requires a CD-ROM drive to run presentation CDs

An external monitor: requires a port to connect to the laptop

Explanation:

The correct pair has been formed above. An overhead projector requires the slides for projecting images. A Laptop for projecting high-resolution images requires an external monitor. And a computer requires a CD-ROM drive for running presentation CDs, and an external monitor requires a port to a port which can be an HDMI port to connect to a laptop.

Answer:

an overhead projector-requires slides to project images

a laptop-requires an external monitor to  project high-resolution images

a computer-requires a CD-ROM drive  to run presentation CDs

an external monitor-requires a port to  connect to the laptop      

<<
<
2
3
4
5
6
7
8
9
10
11
12
To include a hyperlink in a document, use the shortcut key combination
Alt+Ctrl+F
Alt+Ctrl+D
Alt+Shift they
Ctrl+K

Answers

Answer:

The Keyboard shortcut: Ctrl+K is almost always the default to include a link in an application

Explanation:

For example in Microsoft Word pressing Ctrl+K will open a window for you to type a link.

IN YOUR OWN WORDS, create a new thread and compare and contrast paraphrasing, summarizing, and quoting and how to do each successfully.

Answers

Answer:

Such three ways to include the work of other writers in your own writing differ depending on whether you are close to the source.

Explanation:

Quotations must be the same as the original, using a narrow source segment. We must be word for word on the source document and the original author must be credited.

Paraphrasing means putting your own words into a line from the source material. The original source should also be assigned a paraphrase. Paraphrased material usually is shorter than the original one, which takes and slightly condenses a somewhat broader part of the source.

In summary, you have to put the main idea(s), including only the main point(s), in your own words. Again, summarized ideas must be attributed to the source. Summaries are much shorter than the original and give a broad overview of the source documents.

Where would be the best place to obtain a master's degree?

Answers

Answer:

Collage

Explanation:

It all depends on what your preferences are I want to be a vet so when I graduate I'm going to go to Texas state because they have a great vet program

Final answer:

Choosing the best place to obtain a master's degree requires considering personal educational goals and specific study areas. Online programs and traditional institutions both offer diverse options, like the award-winning GIS program at Penn State. Contacting universities directly and utilizing resources such as graduate rankings can assist in making an informed decision.

Explanation:

The best place to obtain a master's degree depends on your educational goals and the specific area of study you wish to pursue. Whether it is a traditional institution or an online program like the one at UMN for Parent and Family Ed, it is important to choose a school that aligns with your career aspirations and educational needs. For example, the Penn State Professional Masters Degree in GIS was recognized with the 2009 Sloan Consortium award for Most Outstanding Online Program, suggesting that some online programs can offer exceptional educational experiences.

If your interest lies in teacher certification, an alternative pathway might be through a master's degree program that allows you to work in a school while studying, as mentioned in the historical context of graduate programs which first emerged as Masters of Arts in Teaching (MAT) in the 1970s. Moreover, graduate economics rankings and resources provided by organizations like the American Economics Association can be invaluable when researching graduate degree program options in specific fields.

It's essential to consider different institutions for your advanced degrees, as this can offer a broader scope of education and potential opportunities. Remember to thoroughly research and engage with colleges or universities to understand the nuances of their graduate programs.

Where can you place CSS statements in an HTML file?
You can place CSS statements within the
section.

Answers

The CSS statement are usually placed in the head section of our HTML file.

HTML and CSS

HTML is known as hypertext markup language and it is used to structure a web page and its content.

HTML describes the structure of a Web page

CSS is the language we use to style an HTML document. CSS describes how HTML elements should be displayed. CSS describes the colour, text structure, arrangement of our HTML.

The CSS statement are usually placed in the head section of our HTML document.

learn more on HTML/CSS here:https://brainly.com/question/14054531

#SPJ2

Why is it important to record audio of silence in the area in which you are filming?

Answers

Answer:

To make sure that there is no other outside/excess noise while you are filming your actual film

Hoped this helped !

Cheers, Z

Answer:

That depends. The answer I would give is so if something does arise, such as a really big noise accompanied by a really big animal, then you'd have more than just video. If a natural disaster occurs, the only way to tell may be through audio.

Jacobson furniture pseudo-code

Use the following planning chart, create the pseudo-code for the btncalc_click event handling procedure. This procedure should calculate and display the Sales Tax on the Sales Amount and then the Total Due (Sales Amount + Sales Tax). Place the pseudo-code (do not give me Visual Basic statements)

Planning Chart for the Jacobson Furniture application

Purpose: Calculate and display the sales tax and total due amounts.

How?

User-provided

1. Sales amount

Application-provided
1. 5% sales tax
2. Total due
3. Button for ending the application

User will enter in txtSales

BtnCalc_Click will calculate and display in lblTax

BtnCalc_Click will calculate and display in lblTotal

BtnExit_Click will end the application

Please answer this immediately!!!

Answers

Answer:

We need to add four labels Taxable Income, Tax rate, total tax, and Total Due. And in front of them, you can add four textBoxes, or labels or as required.

The Tax rate is 5%.

And

Explanation:

BtnCalc_Click will calculate and display in lblTax

double tax = Convert.ToDouble((textBox1.Text)) * 5/100;

double Roundedtax = Math.Round(tax, 2);

textBox2.Text = Convert.ToString(Roundedtax);

textBox2.Show();

// we can use lblTax instead of textBox2. The further code will be almost change, and we need to use lblTax label instead of textBox2.Text.

BtnCalc_Click will calculate and display in lblTotal

textBox3.Text = Convert.ToString(Convert.ToDouble(textBox1.Text) + Convert.ToDouble(textBox2.Text));

textBox3.Show();

//This is lblTotal or the total Tax. We can use lblTotal label instead of the textBox3.Text.

BtnExit_Click will end the application:

Use this code in this method.

this.Close();

// This closes the application immediately on click on the Exit button.

Carlos and Sophia develop websites as a team and have done so for many years. They hire a new member, Terry, a website developer, who
previously worked alone. A client from the healthcare Industry approaches the team to refurbish the client's old site. Because Carlos and Sophia
were out of the office visiting another client site, Terry sets up a web meeting with the client to gather their requirements. Has Terry made a
mistake in this situation?
A no, because a requirements gathering session is the first stage in website development
B. no, because Terry is an experienced developer and can manage client interactions by himself
C. yes, because a requirements-gathering session should be a face-to-face meeting, rather than a virtual one
D. yes, because only senior team members must be present in a requirements gathering session

Answers

No because a requirements gathering session is the first page in web development

Answer:

It would be C

Explanation:

Did it on edmentum and got the answer correct!

n the formula "=A3/B3", what part of the formula is the "/"?

Answers

Answer:

/ is the Arithmetic operator, and A3 and B3 are the cells.

Explanation:

This formula with taking A3 cell as the quotient, and B3 cell as the divisor. It then calculates and finally prints the value. And this value will be printed in the cell to which the formula is assigned.

And do not forget to put the = sign as mentioned, as it is the syntax of each excel formula to use = sign at first.

* Create a list of places and situations in which we use a computer
PLACE
SITUATION
DESCRIPTION

Answers

Answer:

Place:

Coffee shop. Railway Reservation System, Airport Reservation System, Machine learning and a long list follow.

Situation:

We find that there is a similar type of calculation and in bulk. Thus we can create a piece of software, and run that with the help of a computer to solve our problem of tackling the massive number of clients.

Description:

The situation demands a similar sort of calculation, and we can hence make a program or most favorably a software that can do all these calculations for us. A perfect example is a coffee shop, which has 100 to 1000 customers drinking coffee each second. And you can understand how badly they need a computer and software. This cannot be done manually.

Explanation:

Please check the answer section.

Which agency was the BBG a part of until September 1999?
O A. United States Information Agency
B.
Voice of America
C. Federal Communications Commission
D. Federal Radio Commission

Answers

Answer:

O A. United States Information Agency

Explanation:

The BBG was the part of the United States Information Agency till 1999. This is the affiliate relations and media training office. And it was headquartered in Washington DC.  Hence, the most appropriate answer out here, and in fact the correct option for this question is A., and which is United States Information Agency.

Early electronic computing devices were:
O inexpensive.
o compact and lightweight.
o efficient in operation.
O manpower intensive.
DONE

Answers

Early electronic computing devices were: manpower intensive.

O manpower intensive.

Explanation:

Computing devices are the electronic gadgets that take inputs, process the information sources and afterward compute results from the data sources. Likewise, Early electronic processing gadgets were labor escalated on the grounds that the early PCs were made to figure a lot of number juggling information and count.

Alan Turing's PCs wafer mystery codes. PCs were utilized for reviews and logical assistance as well. Pascal was directed to build up a mini-computer by the arduous arithmetical figurings required by his dad's work as the manager of charges in Rouen, and so forth... So Early electronic registering gadgets were worried as labor concentrated.

match the following unit 6 terms with their descriptions

Answers

Answer:

what are the followin six terms

Explanation:

Answer:

I think is six terms

Explanation:

I don't know how to explain it, I need a notebook and teach you how to do it

use the drop-down menus to complete statements about the quick steps function

Answers

Answer:

Quick Steps comes preconfigured, or you can

(✔ create a new one).

Quick Steps creates one-step commands for

(✔ multistep)

processes.

Clicking Create New opens the Manage Quick Steps

(✔ dialog box.)

Explanation:

edg 2021

Answer:

✔ create a new one

✔ multistep

✔ dialog box

Explanation:

hope this helps :)

Select the correct answer.
Which statement is true about the elements of the interface of a presentation program?
OA. The status bar appears at the top of the page and displays options to style your slides.
B. The tool bar displays the thumbnails of your presentation slides in the order they will appear in the presentation.
C. Rulers indicate the margins, tabs, and indents in a presentation slide.
D.
The document area provides a list of commands to create, format, and edit presentations.
Reset
Next

Answers

Answer:

C. Rulers indicate the margins, tabs, and indents in a presentation slide.

Explanation:

The status bar appears at the bottom of the page, and it never displays options the options to style the slides. And the toolbar never displays the thumbnails of the slides, as well as the document area never provides a list of the commands for creating, formatting or editing the presentations. However, the rules do indicates the margins, tabs, and indents in a presentation slide. Hence C. is the right option.

Answer: c

Explanation:

Other Questions
3. Discuss two themes in William Shakespeare's The Tempest. How does the author develop these two themes over the course of the play? Be sure to include specific examples from the play to support your answer. (30 points) Molly, a high school senior, and her mother are at a used-car dealership to purchase Molly's first car. Molly is interested in a red 2006 Ford Mustang, while her mother thinks a blue 2007 Hyundai Elantra would be a better car for her. Molly says that while she thinks the Mustang would be a more appropriate choice for a teenager like herself, she understands why the price, fuel economy profile, and stability of the Elantra would appeal to her mother. Molly's comments demonstrate? The nurse has a routine prescription to instill erythromycin ointment into the eyes of a newborn. Which statement, if made by the mother, demonstrates understanding of why this medication is used? Blue Apron delivers to your front door all the ingredients and instructions for preparing full meals for two or four people for several occasions weekly. Delivery to your home would constitute which element of the marketing mix for Blue Apron?place How long will take your trip in hours if you travel 350km at an average speed of 80km/hr? What is the solution to the equation 4 x minus 6 = 10 x minus 3? Which is one of the steps you should take when summarizing information from a source into your notes?Organize and present the main points in an easy-to-follow way.Gather relevant information from multiple print and digital sources.Analyze the bibliographic information of a potential source.Write a strong thesis statement for your paper. A car rental company charges a one-time application fee of 40 dollars, 55 dollars per day, and 13 cents per mile for its cars. A) Write a formula for the cost, C, of renting a car as a function of the number of days, d, and the number of miles driven, m. B) If C = f(d, m), then f(5, 600) = A girl is given $15 by her parents. She has two options of how to spend the money. She can either save the money for future purchases or she can start a lemonade stand on her driveway. If she spends her $15 on the lemonade stand, there is a 50% probability she will lose $10 and a 50% probability she will make $12. Assuming the girl has a square root utility function, what should the girl do with the money?a. Start her lemonade stand.b. Save her money.c. The outcome is the same for both choices. The kinetic energy of a ball with the mass of 0.5 kg and a velocity of 10 m/s is what What was the net yardage the team had after those 4 plays ? The situation in which a message presented by a high credibility source becomes less persuasive over time, while a message from a low credibility source becomes more persuasive over time, is called A GUI user interface is special because:_________a) it uses voice commands to run tasks.b) it uses a very small set of commands.c) the menus are organized well.d) there is a set of icons that represent the OS tasks. The legs of a right triangle are x and 15 while the hypotenuse is 17.Which equation can be used to determine the value of x using the Pythagorean Theorem? Find the lateral surface area of the figure. A 798 B 210 C 816.8 D 69.7 Write a static method called quadrant that takes as parameters a pair of real numbers representing an (x, y) point and that returns the quadrant number for that point. Recall that quadrants are numbered as integers from 1 to 4 with the upper-right quadrant numbered 1 and the subsequent quadrants numbered in a counter-clockwise fashion: Evaluate the expression: a(b c) if a = -8, b = 12, and c = 4-128-100-640 Assume that the three beachfront parcels are sold to the people that you indicated in the previous section. Suppose that a few days after the last of those beachfront parcels is sold, another essentially identical beachfront parcel becomes available for sale at a minimum price of $560,000. This fourth parcel__1__ be sold because __2__ will purchase it from the seller for at least the minimum price.1) A. WillB. Will not2) A. No oneB. Ravi ($690,000)C. Maria ($720,000)D. Simone ($680,000) Businesses or other organizations, including telephone, cable, and satellite companies thatprovide Internet access to others are called what One quart of water-resistant paint covers 75 square feet. A swimming pool is in the shape of a rectangular prism with a length of 20 feet, a width of 10 feet, and a height of 5 feet. How many quarts should you buy to paint the swimming pool with two coats of paint?