3.4 Code Practice: Question 1

3.4 Code Practice: Question 1

Answers

Answer 1

Answer:

color = input("What color? ")

if (color == "yellow"):

   print("Correct!")

else:

   print("Nope")

Explanation:

Answer 2

My code is dependent on if the color is supposed to be case sensitive

3.4 Code Practice: Question 1

Related Questions

when working with smart which tab would provide the ability to change the shape or size of the smart art shapes

Answers

It doesn’t change shape

Answer:

B) Format

Explanation:

9. In a program with 25% loads, 10% stores, 11% branches, 2% jumps, 52% R-type. The standard CPI for each instruction type is 2 cycles loads, 2 cycles stores, 1 cycle branches, 2 cycles jumps, 1 cycle R-type. The branches have a misprediction penalty of an additional 2 cycles when it misses, which happens 30% of the time. Loads create a RAW hazard 20% of the time adding in an extra cycle to the execution time. What is the average CPI for this program on this processor

Answers

Answer:

2.6

Explanation:

From which tab in word can you add an excel object such as a worksheet or a chart?

Answers

In Microsoft Word, you can add an Excel object such as a worksheet or a chart from the **Insert** tab.

To add an Excel object in Word, follow these steps:

1. Open Microsoft Word and create a new document or open an existing one.

2. Click on the **Insert** tab in the Word ribbon at the top of the screen.

3. In the **Text** group, you will find the **Object** button. Click on the arrow below it to open a drop-down menu.

4. From the drop-down menu, select **Object**. This will open the **Object** dialog box.

5. In the **Object** dialog box, choose the **Create from File** tab.

6. Click on the **Browse** button to locate and select the Excel file that contains the worksheet or chart you want to insert.

7. Check the box next to **Link to file** if you want the Excel object in Word to remain linked to the original Excel file. This way, any updates made in the Excel file will be reflected in the Word document.

8. Click on the **OK** button to insert the Excel object into your Word document.

By following these steps, you can add an Excel object such as a worksheet or a chart into your Word document from the **Insert** tab.

For more such answers on Microsoft Word

https://brainly.com/question/24749457

#SPJ8

who is the first computer programmer​

Answers

Answer:

Ada Lovelace was the first computer programmer

Select all the sets that are countably infinite. Question 3 options: the set of real numbers between 0.1 and 0.2 the set of all negative integers greater than negative 1 trillion the set of integers whose absolute values are greater than 1 billion the set of integers that are multiples of 27 the set of all java and C programs

Answers

Answer:

1.  the set of real numbers between 0.1 and 0.2

2. the set of all negative integers greater than negative 1 trillion

3.  the set of all java and C programs

Explanation:

A set is countable if it is either finite or has the same cardinality as the set of positive integers. The inverse of this set type is uncountable.

The set of real numbers between 0.1 and 0.2, all negative integers greater than negative 1 billion, and a set of java and C programs are all countable sets, so are considered countably infinite.

The sets that should be considered as the countably infinite.

1.  the set of real numbers between 0.1 and 0.2

2. the set of all negative integers greater than negative 1 trillion

3.  the set of all java and C programs

What is set?

The set should be considered as the countable in the case when it could be either finite or contain a similar kind of cardinality just like the positive integers set. The inverse of this type of set should be considered as the non-countable. The set of the real numbers should be lies between the 0.1 and 0.2, all negative integers should be more than negative 1 billion, the st of java and c program should be considered as the countable sets

Learn more about set here: https://brainly.com/question/17506968

A Quicksort (or Partition Exchange Sort) divides the data into 2 partitions separated by a pivot. The first partition contains all the items which are smaller than the pivot. The remaining items are in the other partition. You will write four versions of Quicksort:
• Select the first item of the partition as the pivot. Treat partitions of size one and two as stopping cases.
• Same pivot selection. For a partition of size 100 or less, use an insertion sort to finish.
• Same pivot selection. For a partition of size 50 or less, use an insertion sort to finish.
• Select the median-of-three as the pivot. Treat partitions of size one and two as stopping cases.
As time permits consider examining additional, alternate methods of selecting the pivot for Quicksort.

Merge Sort is a useful sort to know if you are doing External Sorting. The need for this will increase as data sizes increase. The traditional Merge Sort requires double space. To eliminate this issue, you are to implement Natural Merge using a linked implementation. In your analysis be sure to compare to the effect of using a straight Merge Sort instead.

Create input files of four sizes: 50, 1000, 2000, 5000 and 10000 integers. For each size file make 3 versions. On the first use a randomly ordered data set. On the second use the integers in reverse order. On the third use the
integers in normal ascending order. (You may use a random number generator to create the randomly ordered file, but it is important to limit the duplicates to <1%. Alternatively, you may write a shuffle function to randomize one of your ordered files.) This means you have an input set of 15 files plus whatever you deem necessary and reasonable. Files are available in the Blackboard shell, if you want to copy them. Your data should be formatted so that each number is on a separate line with no leading blanks. There should be no blank lines in the file. Even though you are limiting the occurrence of duplicates, your sorts must be able to handle duplicate data.

Each sort must be run against all the input files. With five sorts and 15 input sets, you will have 75 required runs.

The size 50 files are for the purpose of showing the sorting is correct. Your code needs to print out the comparisons and exchanges (see below) and the sorted values. You must submit the input and output files for all orders of size 50, for all sorts. There should be 15 output files here.

The larger sizes of input are used to demonstrate the asymptotic cost. To demonstrate the asymptotic cost you will need to count comparisons and exchanges for each sort. For these files at the end of each run you need to print the number of comparisons and the number of exchanges but not the sorted data. It is to your advantage to add larger files or additional random files to the input - perhaps with 15-20% duplicates. You may find it interesting to time the runs, but this should be in addition to counting comparisons and exchanges.

Turn in an analysis comparing the two sorts and their performance. Be sure to comment on the relative numbers of exchanges and comparison in the various runs, the effect of the order of the data, the effect of different size files, the effect of different partition sizes and pivot selection methods for Quicksort, and the effect of using a Natural Merge Sort. Which factor has the most effect on the efficiency? Be sure to consider both time and space efficiency. Be sure to justify your data structures. Your analysis must include a table of the comparisons and exchanges observed and a graph of the asymptotic costs that you observed compared to the theoretical cost. Be sure to justify your choice of iteration versus recursion. Consider how your code would have differed if you had made the other choice.

Answers

The necessary conditions and procedures needed to accomplish this assignment is given below. Quicksort is an algorithm used to sort data in a fast and efficient manner.

What is the Quicksort?

Some rules to follow in the above work are:

A)Choose the initial element of the partition as the pivot.

b) Utilize the same method to select the pivot, but switch to insertion sort as the concluding step for partitions that contain 100 or fewer elements.

Lastly,  Utilize the same method of pivot selection, but choose insertion sort for partitions that are of a size equal to or lesser than 50 in order to accomplish the task.

Learn more about Quicksort  from

https://brainly.com/question/29981648

#SPJ1

Write a complete Python program that opens a file called 'myfile', reads the entire contents of the file into a string s, determines the number of words in myfile and prints that number on a line, then prints out all words in myfile in alphabetical order, each word on a separate line.

Answers

Answer:

myfile = open("myfile","r").readlines();

myfile_altered = "".join(myfile.split("\n"))

length = len(myfile_altered)

myfile_sort = " ".join(myfile).split(" ")

myfile.sort()

print(length)

print(myfile)

Explanation:

I read the file and split the text by a space, and just sorted the list using `.sort()`

Should work (didnt test it). If it doesn't, just comment on this answer and I will debug it.

you can apply a gradient or solid background to a publication.​

Answers

Oh okay that’s wassup

Answer:

TRUE!

Explanation:

Click on background

Select all statements that are true of cable internet connections.

A. They're dial-up connections.
B. They're broadband connections.
C. They're wireless connections.
D. They're shared bandwidth connections.

Answers

The statements that are true of cable internet connections are:

They're broadband connections. They're shared bandwidth connections.

What is this connection about?

In telecommunications, cable Internet access is known to be cable Internet and it is said to be a kind of broadband Internet access that make use of the same tools as a cable television.

Note that  the statements that are true of cable internet connections are:

They're broadband connections. They're shared bandwidth connections.

Learn more about internet from

https://brainly.com/question/2780939

#SPJ2

If you determine that the hard drive is experiencing excessive use but the Windows Experience Index reports that memory is the system bottleneck, which component do you upgrade first: memory or the hard drive? Why?

Answers

The reason why is it is good to use an Upgrade memory is because low amounts of memory can lead to much use of the hard drive and based n the fact that it is not costly to upgrade memory than to upgrade the hard drive.

What is upgrading memory?

This is known to b an act done so as to improve the performance of a computer.

It is often known as a RAM or system memory upgrade. An upgrade implies that one is adding memory modules along with the ones that were there or replacing the old ones. It is less costly when compared to hard drive upgrade.

Learn more about Upgrade memory  from

https://brainly.com/question/13196228

Kinda stuck on this one that am trying to write a Python that would enter the name of a lecturer, the course code and name of the course they teach, the number students that is enrolled in the course. The lecturer is paid $150 per each student and is taxed at 6% of their income. Display all relevant details. Can anyone help, explain or advise in anyway.

Answers

Answer:

I'm not huge in Python but, have you gone over how you can do math in Python code? Does it want you to use math in *PRINT* codes? Does it want you to use loops or functions? Let me know how else I can help please.

Explanation:

Consider a collection C of subsets of a nite set V . (V; C) is called a hypergraph. A hypergraph (V; C) is 3-regular if every subset in C contains exactly three elements. A subcollection M of C is matching if all subsets in M are disjoint. Show that there exists a polynomial-time 3-approximation for the maximum matching problem in 3-regular hypergraphs as follows: Given a 3-regular hypergraph, find a matching with maximum cardinality.

Answers

Explanation:

polynomial-time 3-approximation for the maximum matching problem in 3-regular hypergraphs as follows: Given a 3-regular hypergraph, find a matching with maximum cardinality.

What is one of the benefits of using a library in a program?

Answers

Answer:

Simplifies creating a complex program

Explanation:

The benefits that can be associated to the use of library in a program is Reduction in the size of class files which brings about simplicity in creating a complex program.

Using a library in a program usually helps to simplify the work, the code can be extracted and move to a place so that the bulkiness will not disturb the work.

This makes the program faster and easy, and simple.

Therefore using library brings simplicity.

Learn more at:

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

guidelines on how to write a report on how technology has affected office duties




Answers

Answer:

weweweweweewewwewweewewweeew

Explanation:

weweweweewweweweewweewweewewew

definition of letter in communication skills

Answers

Answer:

Explanation:A letter is a written message conveyed from one person to another person through a medium. Letters can be formal and informal. Besides a means of communication and a store of information, letter writing has played a role in the reproduction of writing as an art throughout history.

Answer:

A letter is a written message conveyed from one person to another person through a medium. Letters can be formal and informal. Besides a means of communication and a store of information, letter writing has played a role in the reproduction of writing as an art throughout history.

Excellent written and verbal communication skills. Confident, articulate, and professional speaking abilities (and experience) Empathic listener and persuasive speaker. Writing creative or factual. Speaking in public, to groups, or via electronic media. Excellent presentation and negotiation skills.

A pedometer treats walking 1 step as walking 2.5 feet. Define a method named feetToSteps that takes a double as a parameter, representing the number of feet walked, and returns an integer that represents the number of steps walked. Then, write a main program that reads the number of feet walked as an input, calls method feetToSteps() with the input as an argument, and outputs the number of steps.

Use floating-point arithmetic to perform the conversion.

Ex: If the input is:

150.5
the output is:

60
The program must define and call a method:
public static int feetToSteps(double userFeet)

CODE:
import java.util.Scanner;

public class LabProgram {

/* Define your method here */

public static void main(String[] args) {
/* Type your code here. */
}
}

Answers

Answer:

Here's the completed code that implements the feetToSteps method and the main program that reads the number of feet walked as input and outputs the number of steps walked:

import java.util.Scanner;

public class LabProgram {

   public static int feetToSteps(double userFeet) {

       double steps = userFeet / 2.5; // Convert feet to steps

       return (int) Math.round(steps); // Round steps and convert to integer

   }

   public static void main(String[] args) {

       Scanner scnr = new Scanner(System.in);

       double feetWalked = scnr.nextDouble();

       int stepsWalked = feetToSteps(feetWalked);

       System.out.println(stepsWalked);

       scnr.close();

   }

}

Explanation:

In this code, the feetToSteps method takes a double parameter userFeet, representing the number of feet walked, and converts it to the number of steps walked by dividing it by 2.5 (since 1 step = 2.5 feet). The result is then rounded to the nearest integer using the Math.round method and casted to an integer before being returned.

The main program reads the number of feet walked as input using a Scanner object, calls the feetToSteps method with the input as an argument, and outputs the number of steps walked using System.out.println. Finally, the Scanner object is closed to free up system resources.

A network technician is implementing a software-defined network. Which of the following layers would apply business logic to make decisions about how traffic should be prioritized?
A. Application
B. Management
C. Infrastructure
D. Access

Answers

The correct option is A. Application. In a software-defined network (SDN), the application layer is responsible for controlling and managing the network's behavior.

This layer includes the software applications that run on top of the SDN and determine how traffic should be prioritized based on business logic.

By leveraging centralized controllers and software applications, SDNs can automate network management and provide granular control over network traffic. This allows businesses to prioritize mission-critical applications and services while optimizing network performance and reducing costs.

Overall, the application layer plays a critical role in the implementation of SDNs by enabling intelligent decision-making and network optimization based on the unique needs and requirements of the business.

To know more about SDN click here:

brainly.com/question/29386698

#SPJ4

Liam has created a résumé that he has posted on a job search website. What two things did he did correctly for this résumé? He used different bullets styles to make his résumé attractive. He used Ariel font size 12 for his résumé. He posted his religious event volunteer work in the Work Experience section. He proofread his résumé before submitting. He included only his current work experience.

Answers

It can be inferred from the options about Liam's résumé that Liam did the following correctly:

He proofread his résumé before submitting it.He used Ariel font size 12 for his résumé

What is a résumé?

A résumé, sometimes known as a curriculum vitae in English outside of North America, is a document that a person creates and uses to demonstrate their history, abilities, and accomplishments. Résumés can be used for a number of purposes, although they are most commonly utilized to find a new job.

There are three types of resume styles that job seekers usually use: chronological resumes, functional resumes, and mixed resumes (otherwise known as hybrid résumé).

It should be noted that Volunteer Experience ought not to be mixed with paid work experience.

While it is advisable to use bullet points to make your résumé look orderly, using more than one can be distracting and make your resume look unprofessional. It is best practice to use only one type of bullet point.

Learn more about résumé:
https://brainly.com/question/18888301
#SPJ1

¿Que es el emprendimiento Técnico computacional?

Answers

Answer:

La adopción del pensamiento computacional en los últimos tiempos en la educación empresarial es la nueva tendencia.

Explanation:

La adopción del pensamiento computacional en los últimos tiempos en la educación empresarial es la nueva tendencia. Esto implica el aprendizaje basado en proyectos para crear valor empresarial. Para mejorar los resultados del aprendizaje, se utiliza el modelo de negocio junto con las TIC para crear un marco de innovación.


Using the in databases at the , perform the queries show belowFor each querytype the answer on the first line and the command used on the second line. Use the items ordered database on the siteYou will type your SQL command in the box at the bottom of the SQLCourse2 page you have completed your query correctly, you will receive the answer your query is incorrect , you will get an error message or only see a dot ) the page. One point will be given for answer and one point for correct query command

Using the in databases at the , perform the queries show belowFor each querytype the answer on the first

Answers

Using the knowledge in computational language in SQL it is possible to write a code that using the in databases at the , perform the queries show belowFor each querytype.

Writting the code:

Database: employee

       Owner: SYSDBA                        

PAGE_SIZE 4096

Number of DB pages allocated = 270

Sweep interval = 20000

Forced Writes are ON

Transaction - oldest = 190

Transaction - oldest active = 191

Transaction - oldest snapshot = 191

Transaction - Next = 211

ODS = 11.2

Default Character set: NONE

Database: employee

       Owner: SYSDBA                        

PAGE_SIZE 4096

...

Default Character set: NONE

See more about SQL at brainly.com/question/19705654

#SPJ1

Using the in databases at the , perform the queries show belowFor each querytype the answer on the first

What does influence mean in this passage i-Ready

Answers

In the context of i-Ready, "influence" refers to the impact or effect that a particular factor or element has on something else. It suggests that the factor or element has the ability to shape or change the outcome or behavior of a given situation or entity.

In the i-Ready program, the term "influence" could be used to describe how various components or aspects of the program affect students' learning outcomes.

For example, the curriculum, instructional methods, and assessments implemented in i-Ready may have an influence on students' academic performance and growth.

The program's adaptive nature, tailored to individual student needs, may influence their progress by providing appropriate challenges and support.

Furthermore, i-Ready may aim to have an influence on teachers' instructional practices by providing data and insights into students' strengths and areas for improvement.

This can help educators make informed decisions and adjust their teaching strategies to better meet their students' needs.

In summary, in the context of i-Ready, "influence" refers to the effect or impact that different elements of the program have on students' learning outcomes and teachers' instructional practices. It signifies the power of these components to shape and mold the educational experiences and achievements of students.

For more such questions element,Click on

https://brainly.com/question/28565733

#SPJ8

Complete the calc_average() function that has an integer list parameter and returns the average value of the elements in the list as a float in PYTHON.

def calc_average(nums):
#Having issues here

if __name__ == '__main__':
nums = [1, 2, 3, 4, 5]
print(calc_average(nums)) # calc_average() should return 3.0

Answers

Here is one way to implement the calc_average() function in Python:

The Program

def calc_average(nums):

   if not nums: # If the list is empty

       return 0.0

   

   # Calculate the sum of all the elements in the list

   total_sum = sum(nums)

   

   # Calculate the number of elements in the list

   num_elements = len(nums)

   

   # Calculate the average by dividing the sum by the number of elements

   average = total_sum / num_elements

   

   return average

The function first checks if the list is empty. If it is, the function returns 0.0 as the average. Otherwise, it calculates the sum of all the elements in the list using the built-in sum() function, and the number of elements in the list using the built-in len() function. Finally, it calculates the average by dividing the sum by the number of elements and returns the result.

You can test the function using the if __name__ == '__main__': block as follows:

if __name__ == '__main__':

   nums = [1, 2, 3, 4, 5]

   print(calc_average(nums)) # Output: 3.0

The print() function will output the average of the nums list, which is 3.0.

Read more about programs here:

https://brainly.com/question/26134656

#SPJ1

What is a method that invokes itself called?

A. base case method
B. recursive helper method
C. merge sort method
D. recursive method

Answers

Answer:

D. recursive method

Explanation:

I took the test on PLATO

The system tray contains _____.
A. the battery life
B. the computer's hard drive
C. the operating system
D. Quick Launch

Answers

\(⇒\)

the operating system

The notification area (also called the "system tray") is located in the Windows Taskbar, usually at the bottom right corner. It contains miniature icons for easy access to system functions such as antivirus settings, printer, modem, sound volume, battery status, and more.

Answer:

A BATTERY LIFEExplanation: The person said it and it was right I believed them, and they made me get a 100% thank you sir/madam and as you can see, I have proof so your welcome and thank you.

I Wouldn't just say the letter like A or C because everyone's quiz is different, and it changes but either way whatever your welcome and again thank you.
The system tray contains _____.A. the battery lifeB. the computer's hard driveC. the operating systemD.

what command in cisco IOS allows the user to see the routing table

Answers

Answer:

Show IP route command

Explanation:

splunk's processing language, which is all the commands and functions needed to search through data, uses the following keyword to search through data

Answers

Splunk's processing language, which is all the commands and functions needed to search through data, uses the following keyword to search through data: search.The Search command is the most important command in Splunk.

It is used to retrieve data from one or more indexes and search for the event data that satisfies the search criteria. The Search command searches for the specified keyword in indexed data, filters out the unneeded data, and displays the results. Plunk's search processing language includes over 140 commands and functions that allow you to modify, manipulate, and format the search results. In addition to the search command, there are many other commands that can be used to modify the search results, including eval, stats, timechart, and chart. The eval command is used to create calculated fields, while the stats command is used to generate statistical summaries of the search results. The timechart command is used to create time-based charts, and the chart command is used to create non-time-based charts. Splunk's search processing language is powerful and flexible, making it an essential tool for analyzing data from any source.

for more such question on indexed

https://brainly.com/question/4692093

#SPJ11

write an algorithm and draw a flowchat that show the steps involved in determining the grade of a student in letters in E.T.U SL. if it is already known in number Hint: 75-10-A, 65-74= 3, 50-64 = C 30-49 = 0, 20-29 = E and ​

Answers

Algorithm to determine student grade in letters:

The Input and Output

score obtained by the student (out of 100)

Output:

grade in letter format

Step 1: Check if the score obtained is within the range of 0 to 100. If not, output "Invalid score" and exit the algorithm.

Step 2: If the score is within the range of 75 to 100, output "A".

Step 3: If the score is within the range of 65 to 74, output "B".

Step 4: If the score is within the range of 50 to 64, output "C".

Step 5: If the score is within the range of 30 to 49, output "D".

Step 6: If the score is within the range of 20 to 29, output "E".

Step 7: If the score is within the range of 0 to 19, output "F".

The Flowchart

      Start

        |

        V

    [Input score]

        |

        V

  Is score valid? ----> No -----> [Output "Invalid score"]

                   |

                   Yes

                   |

                   V

   Score >= 75? ----> Yes ----> [Output "A"]

                   |

                   No

                   |

                   V

   Score >= 65? ----> Yes ----> [Output "B"]

                   |

                   No

                   |

                   V

   Score >= 50? ----> Yes ----> [Output "C"]

                   |

                   No

                   |

                   V

   Score >= 30? ----> Yes ----> [Output "D"]

                   |

                   No

                   |

                   V

   Score >= 20? ----> Yes ----> [Output "E"]

                   |

                   No

                   |

                   V

             [Output "F"]

                   |

                   V

                End

Read more about algorithms here:

https://brainly.com/question/24953880

#SPJ1

working with the tkinter(python) library



make the window you create always appear on top of other windows. You can do this with lift() or root.attributes('-topmost', ...), but this does not apply to full-screen windows. What can i do?

Answers

To make a tkinter window always appear on top of other windows, including full-screen windows, you must use the wm_attributes method with the topmost attribute set to True.

How can I make a tkinter window always appear on top of other windows?

By using the wm_attributes method in tkinter and setting the topmost attribute to True, you can ensure that your tkinter window stays on top of other windows, even when they are in full-screen mode.

This attribute allows you to maintain the window's visibility and prominence regardless of the current state of other windows on your screen.

Read more about python

brainly.com/question/26497128

#SPJ1

WHICH OF THESE COMMANDS ALLOWS YOU TO NAVIGATE TO THE OUTLINE FILE THAT WILL BE INTEGRATED INTO A PRESENTATION?

Answers

The question seems to be asking about commands that allow you to navigate to an outline file for integration into a presentation.

How to go about this?

However, without specific information about the software or tools being used, it is difficult to provide a specific command.

Generally, in presentation software like Microsoft PowerPoint, you can navigate to an outline file by going to the "File" menu, selecting "Open," and choosing the appropriate file.

Other presentation tools may have similar options to navigate to and open an outline file.

Learn more about command at:

https://brainly.com/question/25808182

#SPJ1

Which of the following is the best example of a purpose of e-mail?
rapidly create and track project schedules of employees in different locations
easily provide printed documents to multiple people in one location
quickly share information with multiple recipients in several locations
O privately communicate with select participants at a single, common location

Answers

Answer:

The best example of a purpose of email among the options provided is: quickly share information with multiple recipients in several locations.

While each option serves a specific purpose, the ability to quickly share information with multiple recipients in different locations is one of the primary and most commonly used functions of email. Email allows for efficient communication, ensuring that information can be disseminated to multiple individuals simultaneously, regardless of their physical location. It eliminates the need for physical copies or face-to-face interactions, making it an effective tool for communication across distances.

Explanation:

Other Questions
Describe the structure of vertebrate sensory organs!!! 5. Wilson discusses identifying problems and questions to help drive scientific research. Think about the health sciences and medicine. What is one problem or question that you would be interested in trying to solve If ABC PQR ,then side AB corresponds to ------------------- Older adults should participate in muscle-strengthening exercise at leasttwice a week.once a week.twice a month.three times a week. 21. If you live in a society that practices exogamy, you must: a. Have more than one husband or wife. b. Get married (no one is allowed to be a single adult). c. Marry someone of your own social group. d. Marry someone of a different social group. A teacher spent $240.75 including tax on school supplies. If the tax rate is 7%, find the price of the supplies before taxes. what's the correct answer an airpoirt, a factory, and a shopping center are at the vertices of a right triangle formed by three highways. the airport and factory are 6.0 miles apart. their distances from the shoppin gcenter are 3.6 miles and 4.8 miles, respectively. a service road iwll be contsrtucted from the shopping center to the highway that connects the airport and factory. what is the shrotest possible length for the service road? round thethe nearest tenth of a mile. Think the two-period model for a depletable tesource such as coal. Period 1 is current time and period 2 is future. a year later. Annua disceunt rate is 5y. The (irverse) alrund function for period 1 is P=27.Q and its marginal (extraction) cost is constant 3. The (irverse) demand function for period 2 is P=150.50 and ta margnal (axtraction) ceat is constant 3 Suppose the supply of coal is limited to 30 units. Recall that Marginal usor cost is the diference between ptice and marginal coat. At the dynamicacy effieient aliocations, the marginal user cost for period 1 is [a] and marginal user cost for period 2 is [b]. Hint Round the numbers to one decimal place. What is the theme used in "Was It a Dream?" How would a different point of view change the story? In one to two paragraphs, explain your answer. Use the diagram below to find a solution to 1 1/2 - 3 and place a point on your answer The Spanish Armada in 1588 was a great military success and ensured Spains naval domination for over 100 years thereafter.a) trueb) false Calculate the perimeter of the shape below. Show ur work! I need help with question 2. what is 66.6% as a fraction Which sentence from the excerpt best helps the reader infer who transformed Dryope into a tree? How does the mass of an object affect its acceleration? the nurse, while teaching a group of pregnant women about the production of breast milk, describes colostrum and compares it with mature breast milk. which characteristic would the nurse identify as associated with colostrum? Decribe the reaction of unaturated hydrocarbon with dilute alkaline aqueou olution of KMnO4 what is a square root?