Pascal programming

An auto repair shop charges as follows. Inspecting the vehicle costs $75. If no work needs to be done, there is no further charge. Otherwise, the charge is $75 per hour of labour plus the cost of parts, with a minimum charge of $120. If any work is done there is no charge for inspecting the vehicle.

Write a program to read values for hours worked and cost of parts (either of which could be 0) and print charge for the job.

Answers

Answer 1

Answer:

Program Lesson1_Program3;

Var        

   InspectionCost, hoursworked, costperhour, costofparts, Totalcost, Totalworkingcostintotalhours : Integer;

Begin {no semicolon}

   InspectionCost:=75; costofparts:=0; costperhour:=0;

Write('Input Number of hours worked:');  

Readln(hoursworked);

Totalworkingcostintotalhours:= costperhour * hoursworked;

Writeln('Input cost of parts:');

Readln(costofparts);

Totalcost:=InspectionCost + Totalworkingcostintotalhours + costofparts;

if Totalcost < 120 then

    Totalcost:=75

   else

    Totalcost:=InspectionCost + Totalworkingcostintotalhours + costofparts;

Writeln('Totalcost=',Totalcost);

Readln;

End.

Explanation:

Please check the answer section.


Related Questions

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.

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.

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:

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.

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.

Which BEST identifies the primary function of the key words above?
A)
The key words help identify your reading audience,
The key words help identify your writing purpose or goal,
The key words help determine how much evidence you should cite,
D)
The key words help determine the most appropriate length for your essay,
Submit

Answers

Answer:

A. The key words help identify your reading audience.

Explanation:

Through the keyword, you can identify your reading audience. Like, suppose you are writing about Android developers as a keyword. Thus it clarifies that your reading audience will be Android developers mainly. However, the keyword has nothing to do with writing purposes or goals. We first analyze our goal, and then we search for the keyword that can be best for fulfilling our goals. Hence, keywords not in best identify the writing purpose or goal. Like I want to be rich by writing, Now keyword is Android developers, which is confirming that our reading audience will be Android developers mainly, but it does not confirm that we want to be rich, as we might write for charity as well. And keywords does not have anything to do with how much evidence you should cite or the appropriate length of your essay. And hence, A. is the correct option.

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.

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.

Which of the following best describes the infrastructure ISPs provide?
OCAB GAME
phone service, websites and files
email, search engines and videos
READ &
RESPOND
cables, towers and underground tubes
QUIZ
D
computers, keyboards and ethernet cables

Answers

Answer:

cables, towers, and underground tubes

Explanation:

Its certainly the above one, and through this internet service is being provided. So internet service is self-understood, and what ISP firstly provides are cables, underground tubes, and the towers. And it is only these all through which the ISP provides internet service. And remember we are in this question dealing with the infrastructure and not the services or products. Hence, phone service, websites, and files, as well as the emails, search engines, and the videos, are not the solution here as they are not the infrastructure. And ISPs never provide the computers, ethernet cables or keyboards.

Hence, the correct answer is as mentioned in the answer section.

Final answer:

The infrastructure provided by ISPs consists of physical components such as cables, towers, and underground tubes that enable data transmission for internet services. Technological advances from wired to wireless communication have evolved this infrastructure, impacting regulation and service development.

Explanation:

The infrastructure that Internet Service Providers (ISPs) provide is primarily the physical framework that enables online communication and access. This includes cables, towers, and underground tubes used to transmit data. ISPs rely on this physical network to offer services like high-speed internet access and are key to connecting individuals and businesses alike to the global network.

Over time, technology has evolved from standard phone lines and modems to broadband connections that use cable TV lines and dedicated lines, enhancing the quality and speed of internet services. The growth in cellular phone systems also reflects changes in infrastructure, moving from wired to wireless communication methods driven by advances in microwaves and satellite transmission. This evolution has fueled the debate on how ISPs should be regulated, balancing innovation with accessibility.

It is essential to have a robust infrastructure for ISPs to continue improving their services and extend their reach, supporting both the economy and society's technological needs.

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.

to adapt to dimmer light with a film camera would be more complicated than with a digital
Changing the
camera

Answers

Answer:

Changing the _exposure_ to adapt to dimmer light with a film camera would be more complicated than with a digital camera.

Explanation:

Film Camera is heavier, and it can cost a lot if we want to adapt to dimmer light and shoot in that dimmer light. Digital cameras are cheaper. In the case of a Film Camera, you need to lower down the shutter speed, make adjustments related to the aperture, ensure that the camera does not shake a lot, make use of the faster lens, as well as adjust the while balances, and use certain different light source. And all this confirms that it is not that easy to do this with Film cameras, and they can cost a lot as well. Digital Cameras are cheaper, and a better option for you. And you need to change the exposure to adapt to less light with the film Camera, but this is much easier with the digital camera. You will soon find out if you use them.

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 :)

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.

Jonah wants to type an assignment using Word. Arrange the steps he needs to follow in the correct order.
Click the Blank document icon.
Click the File tab.
Click the New tab.
Open the Word application.

Answers

Answer:

New document can be created in Ms Word by following steps.

Open the Word application. Click the File tab. Click the New tab. Click the Blank document icon.

Explanation:

In Microsoft word, if some one want to create a new document for the purpose of assignment writing, making a report or some other purpose. He should follow the above mentioned  Steps in same order. The above mentioned steps will lead to open a new text document.

So, Jonah should follow the above mentioned steps to open a new word file for writing his assignment.

Answer:

Open the Word application.

Click the File tab.

Click the New tab.

Click the Blank document icon.

Explanation:

just took it

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’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:

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.

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.

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

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

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.

all famliy roles are chosen,except for ones you are born into

Answers

Answer:

false  

Explanation:

The role of a person can be chosen but is not always in this way, for example, if someone live in a dangerous place can get a negative role, and when a baby born into a family, maybe that kid has a brother, there are negative and positive roles, tattletale can be an example of a negative role, and the role can be different depends on the places, for example in your house, in school, or in your job.

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:

A college at which a student has a good chance of being accepted because
he or she meets the admission requirements is called a

A. safety college

B. selective college
C. reach college

D. probable college

Answers

Answer:

D. Probable college

Explanation:

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.

An experienced user has installed Oracle VM VirtualBox on her workstation and is attempting to use it to create a virtual machine (VM). The software is causing error messages while attempting to create the VM. What is the most likely problem? a. The user does not know how to use the software. b. Virtualization is not enabled in BIOS/UEFI. c. The version of Windows she is using is not rated for installations of Oracle software. d. The processor is not rated to support VirtualBox and VMs.

Answers

Answer:Option b. Virtualization is not enabled in BIOS/UEFI.

is the correct answer.

Explanation:

Virtualization can be defined as the process which allows simultaneous usage of more than one operating systems on a single system. Actually a virtual instance is ran on a system on layer which is abstract from original hardware. Virtual Machines are of much use now-a-days.

Sometimes it happens that the Operating System disables the Virtualization process by default so the Option B is correct one in this case. So user will have to enable the Virtualization option in order to overcome the problem.

As the user who is trying to install VM is an experienced one so the option  A goes wrong.As the error or problem occurred after the installation process so the option C also goes wrong.As a workstation comprises of memory storage as primary and secondary so the option D cannot be true in this scenario.

I hope it will help you!

Questions
1
) Listen
)
Which function does an Internet content filter NOT perform?
content inspection
intrusion detection
malware inspection
URL filtering

Answers

Answer:

intrusion detection

Explanation:

The internet content filter is not going to check whether you are not welcome to any site, and that is done by intrusion detection, and hence, this is not performed by the internet content filter. However, content inspection, malware inspection, and URL filtering are performed by the internet content filter.

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

Answers

Answer:

btnExit

Explanation:

* 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.

What is the graphic design term for page number?

Answers

Answer:

Pagination (The numbering to individual pages in a multi-page document)

Explanation:

Pagination is the process of separating print or digital content into discrete pages.

Pagination is the process of separating print documents or digital content that can be used online into discrete pages, and you assign numbers to each page of the print document.

However, in the print industry (graphics designing) and for some online contents such as landing pages, etc, pagination refers to the automated process of adding consecutive numbers to identify the sequential order of pages in a multi-page document.

Pagination is essential for magazines and brochures, as magazine and brochure’s pages position are important when printing such documents.

Example of Pagination tools in daily life

You can do pagination using Adobe Illustrator, Adobe InDesign, and other graphic designing tools that handle the multi-page document.

Other Questions
which statement accurately show the consent of scarcity? express y in terms of x what is the displacement of the ball at t=4 seconds For each of the following algorithms medicate their worst-case running time complexity using Big-Oh notation, and give a brief (3-4 sentences each) summary of the worst-case running time analysis. (a) Construction of a heap of size n , where the keys are not known in advance. (b) Selection-sort on a sequence of size n.(c) Merge-sort on a sequence of size n. (d) Radix sort on a sequence of n integer keys, each in the range of[ 0, (n^3) -1] (e) Find an element in a red-black tree that has n distinct keys. How many inner, outer, and valence electrons are present in an atom of each of the following elements?(a) O (b) Sn (c) Ca (d) Fe (e) Se You are a Roman living around 80 215. Write an essay about how the Roman Empire has changed since the reign of Trajan. as an ordinary citizen, which change affects you most? If one worker produces 15 cones of ice cream in an hour, two workers produce 25 ice cream cones, and three workers produce 30 ice cream cones in an hour, what is the marginal return of production of the second worker? For lunch you and your friends decide to stop at the nearest deli and have a sandwich made fresh for you with 0.100 kg of turkey. The slices of turkey are weighed on a plate of mass 0.400 kg placed atop a vertical spring of negligible mass and force constant of 200 N/m . The slices of turkey are dropped on the plate all at the same time from a height of 0.250 m . They make a totally inelastic collision with the plate and set the scale into vertical simple harmonic motion (SHM). You may assume that the collision time is extremely small.a. What is the amplitude of oscillation A of the scale after the slices of ham land on the plate?b. What is the period of oscillation T of the scale? What group were considered citizens in ancient greese What are laws that provide for the death penalty based on weighing aggravating and mitigating circumstances? Angie has some red and blue beads. 40% of her beads were red. When she lost 50 blue beads, the number of blue beads was reduced by 1/3 its original number of beads. How many beads did Angie have in the end? Vaccines contain microbes (or parts of them) that can normally cause disease. These microbes are weakened so that, instead of causing disease, they help prepare the body to fight against future invasions by the same types of microbes.How do vaccines prepare the body to fight these future invasions? A. They grow stronger in the body and multiply. B. They cause the excretory system to release all viruses as waste. C. They stimulate the immune system to create antibodies. D. They mutate within the body and kill off other invaders. Zeros: -1, 1, 8; degree: 3 The army bus has 12 seats on one side. Two soldiers can sit in each seat. If five seats are reserved for equipment, how many buses will they need for 1120 soldiers Determine whether each of the following arguments is a deductive argument or an inductive argument. If the argument is a deductive argument, then evaluate the argument for its validity and soundness. If the argument is an inductive argument, then evaluate the argument for its strength and cogency.1. A sample of two grains of sand from the beach revealed that both grains of sand were actually tiny diamonds. Therefore, it must be the case that the entire beach is made up of valuable diamond particles.2. Since Thanksgiving is always on a Monday, it follows that the day after Thanksgiving is always a Wednesday.3. If you double the length of the sides of a square, then you will also double the square's area. So, if you double the length of the sides of a square with an area of 25 square centimeters, then the resulting square will have an area of 50 square centimeters. I need a long detailed answer. It is supposed to be your personal opinion so there is no right or wrong answer.)"You are a friturier in a kitchen brigade. Describe how you would set up your mise en place for that station so that you could be as productive and safe as possible." What is the Doppler effect, and how does it alter the way in which we perceive radiation? Telling the truth (veracity) is one of the basic principles of North American culture. Threeethical dilemmas in clinical practice can directly conflict with this principle. Choose the three from the list below.a.Not revealing a diagnosis to a clientb.Revealing a diagnosis to people other than the client with the diagnosisc.Using placebos Water is flowing in a 3 cm diameter garden hose at a rate of 25 L/min. A 20 cm long nozzle is attached to the hose which decreases the diameter to 1.2 cm. The magnitude of the acceleration of a fluid particle moving down the centerline of the nozzle is The European Union (EU) a. allows trade across country borders without tariffs b. was dissolved under the Geneva Convention c. is an abbreviation for the act of state doctrine d. Both allows trade across country borders without tariffs and was dissolved under the Geneva Convention