Attached Files:
grant.jpeg (3.937 KB)
gwashington.jpeg (3.359 KB)
henryharrison.jpeg (2.879 KB)
jamesmadison.jpeg (2.212 KB)
jamesmonroe.jpeg (3.563 KB)
johnadams.jpeg (3.127 KB)
lincoln.jpeg (3.949 KB)
quincyadams.jpeg (2.384 KB)
thomasjefferson.jpeg (3.631 KB)
tyler.jpeg (2.825 KB)
vanburen.jpeg (2.756 KB)
woodrow.jpeg (2.721 KB)
us_presidents.csv (1.446 KB)
Create Web app for info on some US presidents. You are given a csv file, presidents.csv, with information on the presidents together with their photos.
The interface should allow the user to pick a president from a list and then the app displays his/her corresponding photo and the party the president belongs(ed) to.

Answers

Answer 1

To create a web app that displays information about the US presidents from the provided CSV file. Here is what we can do:

We will first need to extract the required information from the CSV file. We will read the file and store the data in a suitable data structure like a list of dictionaries.

Next, we will create a web interface that allows the user to select a president from a drop-down list.

When the user selects a president, we will display the corresponding photo and party information for that president.

We will also style the interface so that it looks visually appealing.

Here's some sample Python code that demonstrates how we can extract the required information from the CSV file:

python

import csv

# Create an empty list to store the presidents' data

presidents = []

# Read the CSV file and store each row as a dictionary in the presidents list

with open('us_presidents.csv', newline='') as csvfile:

   reader = csv.DictReader(csvfile)

   for row in reader:

       presidents.append(row)

Next, we can use a Python web framework like Flask or Django to create the web application. Here's a sample Flask app that demonstrates how we can display the dropdown list of presidents and their photos:

python

from flask import Flask, render_template, request

import csv

app = Flask(__name__)

# Read the CSV file and store each row as a dictionary in the presidents list

presidents = []

with open('us_presidents.csv', newline='') as csvfile:

   reader = csv.DictReader(csvfile)

   for row in reader:

       presidents.append(row)

# Define a route for the homepage

app.route('/')

def home():

   # Pass the list of presidents to the template

   return render_template('home.html', presidents=presidents)

# Define a route for displaying the selected president's photo and party information

app.route('/president', methods=['POST'])

def president():

   # Get the selected president from the form data

   name = request.form['president']

   # Find the president in the list of presidents

   for president in presidents:

       if president['Name'] == name:

           # Pass the president's photo and party to the template

           return render_template('president.html', photo=president['Photo'], party=president['Party'])

# Start the Flask app

if __name__ == '__main__':

   app.run(debug=True)

Finally, we will need to create HTML templates that display the dropdown list and the selected president's photo and party information. Here's a sample home.html template:

html

<!DOCTYPE html>

<html>

<head>

   <title>US Presidents</title>

</head>

<body>

   <h1>Select a President</h1>

   <form action="/president" method="post">

       <select name="president">

           {% for president in presidents %}

           <option value="{{ president.Name }}">{{ president.Name }}</option>

           {% endfor %}

       </select>

       <br><br>

       <input type="submit" value="Submit">

   </form>

</body>

</html>

And here's a sample president.html template:

html

<!DOCTYPE html>

<html>

<head>

   <title>{{ photo }}</title>

</head>

<body>

   <h1>{{ photo }}</h1>

   <img src="{{ url_for('static', filename='images/' + photo) }}" alt="{{ photo }}">

   <p>{{ party }}</p>

</body>

</html>

Assuming that the photos are stored in a directory named static/images, this should display the selected president's photo and party information when the user selects a president from the dropdown list.

Learn more about web app here:

https://brainly.com/question/17512897

#SPJ11


Related Questions

Which of the following is a tool HR managers can use to improve commincations between workers of different generations in the same workplace? A)recruitment pools B)l-9 forms C) mentoring programs D)work/life balance

Which of the following is a tool HR managers can use to improve commincations between workers of different

Answers

Answer:

Mentor Programs

Explanation:

This is because it is talking about different ages which is a mentor type thing

Answer: mentoring programs

Explanation:

A p e x

In the context of customer relationship management (CRM) applications, which approach is often chosen by organizations with an established IT infrastructure

Answers

The on-premise approach is often chosen by organizations with an established IT infrastructure.

What is the On Premises?

In an on-premises method, resources are said to be given or deployed in-house and it is one that is found within an enterprise's IT infrastructure.

Customer relationship management (CRM) is known to be a form of a technology that is often used in the act of managing all of a firm's  relationships and communications with customers and also that of potential customers.

Therefore, The on-premise approach is often chosen by organizations with an established IT infrastructure.

Learn more about CRM from

https://brainly.com/question/27373018

#SPJ1

who can be my freind.

Answers

Answer:

Sure I'll be your friend

Explanation:

Answer:

Me

Explanation:

I am friendly. I think you can be my friend

Which of the following is the shortcut to quickly save a PowerPoint presentation?
Pressing Ctrl+Shift+S will save the slides.
Pressing Ctrl+S will save the slides.
Pressing F12 will save the slides.
Pressing Shift+S will save the slides.

Answers

I’m pretty sure it’s Ctrl + S

Answer:

Pressing Ctrl+S

Explanation:

when you have a second monitor attached to your computer, which view provides you with additional tools, such as a timer, to help you as you give your presentation?

Answers

Presenter view provides you with additional tools, such as a timer, to help you as you give your presentation.

What is presenter view?

The Presenter View enables you to show your presentation to the audience on the main screen while also giving you access to extra tools and information on a second screen that is only visible to you.

You can use tools like a timer, notes, thumbnails of your slides, a sneak view at the next slide, and others to deliver your presentation more skillfully.

In many presentation software systems, such as Microsoft PowerPoint or Slides, the view that gives you extra tools, such as a timer when you have a second monitor connected to your computer while giving a presentation is frequently referred to as the "Presenter View."

Thus, the answer is presenter view.

For more details regarding presenter view, visit:

https://brainly.com/question/24111716

#SPJ1

Which of the following demonstrates an information system? Tyra is using the computer to create a birthday card for her friend. Ahmad is installing new software to improve the ease of accessing the database. Shania is creating a printed handbook of company policies for new employees. Ian is making updates to the company website to include the latest product information

Answers

Answer:

B. Ahmad is installing new software to improve the ease of accessing the database.

C. Shania is creating a printed handbook of company policies for new employees.

D. Ian is making updates to the company website to include the latest product information

Explanation:

Information Systems is an organized way of assembling, processing, storing, and sharing information. It is used by organizations to run their businesses. A typical information system will feature the people who run or control the process, the tasks they are meant to perform, the procedures which govern the work done, and the technology used to achieve those goals. Information systems incorporate information technology into the running of the business. The examples cited above, illustrate the application of information systems in business affairs. For example,

1. When Ahmad installs new software to improve the ease of accessing the database, the main components of an information system which includes; people (Ahmad), the task (which entails installation of the software), the procedures (that govern software installation), and the technology (apparently a computer system), all have a role to play.

6. (01.02 LC)
The programming language C: uses a series of 1s and Os to communicate with the computer. (5 points)
O True
False

Answers

Answer:

False

Explanation:

what is blue jet airline?

Answers

The "blue jet airline" is actually known as JetBlue Airways Corporation. It is a low-cost American airline that is headquartered in New York City.

JetBlue operates over 1,000 flights daily and serves over 100 destinations in the United States, Mexico, the Caribbean, Central America, and South America. It is known for its affordable fares, comfortable seats, and in-flight entertainment options.

What are airlines?

Airlines are companies dedicated to the transportation of passengers or cargo using airplanes or helicopters.

For more information about airline, visit:

https://brainly.com/question/24752362

#SPJ11

based on the following table, which relational algebra command creates a new table named custstate containing the fields customernum and state?customer (customernum, customername, street, city, state, postalcode)

Answers

This command selects only the customernum and state fields from the customer table using the projection operator (), and it then stores the result in a new table called custstate.

What kind of Access query uses the results of the query to create a new table?

With a make table query, data is retrieved from one or more tables and then added to a new table. You can either build that new table in a different database or add it to the one you already have open.

What kind of Access query uses the results of the query to create a new table?

With a make table query, data is retrieved from one or more tables and then added to a new table. The database that contains that new table may contain you can build it in another database that you have open or already have.

To know more about database visit:-

https://brainly.com/question/28391263

#SPJ1

Difference between Hollerith and Burroughs machine​

Answers

Explanation:

The tabulating machine was an electromechanical machine designed to assist in summarizing information stored on punched cards. Invented by Herman Hollerith, the machine was developed to help process data for the 1890 U.S. Census. Later models were widely used for business applications such as accounting and inventory control. It spawned a class of machines, known as unit record equipment, and the data processing industry.

Herman Hollerith (February 29, 1860 – November 17, 1929) was an American businessman, inventor, and statistician who developed an electromechanical tabulating machine for punched cards to assist in summarizing information and, later, in accounting. His invention of the punched card tabulating machine, patented in 1884, marks the beginning of the era of mechanized binary code and semiautomatic data processing systems, and his concept dominated that landscape for nearly a century.

Hollerith founded a company that was amalgamated in 1911 with several other companies to form the Computing-Tabulating-Recording Company. In 1924, the company was renamed "International Business Machines" (IBM) and became one of the largest and most successful companies of the 20th century. Hollerith is regarded as one of the seminal figures in the development of data processing.

If randi wants to draw attention to a quote she's placed on a slide, what type of alignment should she use? question 21 options: center left right full

Answers

Answer: i think its the left

Explanation: I'm on the same question and thats what I usually see

The answer is center

Explanation: I took the test ^^

Similarities between Off-site and On-site

Answers

Answer:

As adjectives the difference between onsite and offsite

is that onsite is on or at a site while offsite is away from a main location; in a place not owned by a particular organisation.

While ________is the protocol used to view web pages, browsers also support protocols for functions such as transferring large files.
10 points
a HTML
b HTTP
c FTP

Answers

The answer is A u welcome

in your own ideas what are the disadvantages of participating in a videoconference write your answer inside the circle​

Answers

Some disadvantages of taking part in a video-conference are:

1) Lack of communication from social cues (social cues are what we use to see if someone is in a good or bad mood)

2) There is a high chance of unstable network connection.

3) Technical and personal issues because not everyone is comfortable speaking on a video-conference platform.

4) It causes more stress due to the lack of organization when preparing meetings (because it’s so easy to just get on a device without preparing anything beforehand).

Hope this helped!

PLEASE HELP!!! WILL MARK BRAINLIEST!!
Why do you think Phones/Devices have upgraded over the years

Answers

Answer:

Too improve the technology

Explanation:

Answer:

phones and other devices have been upgraded over time because technology has advanced and people have found a need for better communication as the world has evolved

Order the steps to use a logical argument as a rule type.

ANSWER:
Click the home tab, then click the styles group > Click conditional formatting > Click new rule > Use a formula to determine

Answers

pleaaase I need the points

Explanation:

how do u type faster

Answers

Answer:

by learning the right home keys and how to place the fingers

Explanation:

the left hand side : A,S,D,F

the right hand side: :, L, K, J

the two little fingers are guide keys

guide keys: letter A and column

you need to perform an aggregate function in a crosstab query. your function needs to calculate the number of the nonnull field values in your spreadsheet. you will use the ____ aggregate function

Answers

The aggregate function that needs to be used to calculate the number of non-null field values in a crosstab query is the COUNT aggregate function. To find the number of non-null field values in a crosstab query, the COUNT aggregate function must be used.The COUNT function is a built-in function in SQL that returns the number of rows or non-null values in a table.

COUNT is an example of an aggregate function that works with SQL data. It's used to count the number of rows or non-null values in a table. The COUNT function, like most other aggregate functions, ignores NULL values. It can be used with SELECT, ORDER BY, and GROUP BY clauses in various ways. the given problem The COUNT function is used to count non-null values in a table. It's an example of an aggregate function that works with SQL data.

It is also used to compute the number of rows or non-null values in a table. The COUNT function, like most other aggregate functions, ignores NULL values. It can be used with SELECT, ORDER BY, and GROUP BY clauses in various ways.Crosstab queries are commonly used in SQL databases to display summary data, and they are often used in business intelligence and reporting. A crosstab query is a query that produces a summary of data by creating a table COUNT function to calculate the number of non-null field values in each cell of the table. For example, consider the following crosstab query:TRANSFORM Count(Sales)SELECT Product, MonthFROM SalesTableGROUP BY Product, MonthPIVOT Year;This crosstab query returns a summary of sales data by product and month for each year. The COUNT function is used to calculate the number of non-null sales values for each year, product, and month combination.

To know more about aggregate function visit:

brainly.com/question/32180895

#SPJ11

Assignment: Blues Progression
Blues is a sub-genre of jazz that follows some specific guidelines: specifically, the Blues scale and the Blues chord progression.
In this assignment, you’ll write out a 12-bar Blues chord progression. This assignment is a MuseScore assignment. Do not turn in this document for grading.

Directions:

1. Create a new document in MuseScore
a. For the title, write “MuseScore Assignment: Blues”.
b. For the composer, write your name., then click "next".
c. Under "general", choose “Grand Staff”, then click “Next”.
d. Choose G major for your key signature (1 sharp), then click next.
e. Choose “Piano” (in the Keyboards section) for your instrument. (This step may or may not show for you. It's ok either way!)
f. Choose 4/4 for your Time Signature and 12 measures for number of measure.
g. Click “Finish”.

2. In the Bass Clef, write out a 12-bar Blues Chord Progression.
a. Use whole notes for your chords
b. I – I – I – I – IV – IV – I – I – V7 – IV – I – V7

Save your assignment (with your name!) and submit it to the Composition: Blues Progression Dropbox basket. Turn in the MuseScore file only.

Answers

Explanation:

I can provide you with the 12-bar Blues chord progression as you requested:

In the key of G major:

I (G) – I (G) – I (G) – I (G)

IV (C) – IV (C) – I (G) – I (G)

V7 (D7) – IV (C) – I (G) – V7 (D7)

The Roman numerals in parentheses represent the chords to play in each measure, and the chord names outside the parentheses indicate the actual chords to play in the key of G major.

Given an AHP problem with 5 criteria and the principal eigenvalue = 5.107, find the consistency index (CI) and consistency ratio (CR), correct to 3 decimal places. Are the pairwise comparisons consistent enough? You need to show how you derive the final answer in order to earn partial credit in case of an incorrect answer.

Answers

The consistency index (CI) is 0.027, and the consistency ratio (CR) is 0.024.

How to calculate the value

The consistency index (CI) using the following formula:

CI = (λmax - n) / (n - 1)

Where:

λmax is the principal eigenvalue, which is given as 5.107 in this case.

n is the order of the matrix, which is 5 in this case.

CI = (5.107 - 5) / (5 - 1)

CI = 0.107 / 4

CI = 0.02675

Calculate the consistency ratio (CR) using the following formula:

CR = CI / RI

CR = 0.02675 / 1.12

CR = 0.02392

Therefore, the consistency index (CI) is 0.027, and the consistency ratio (CR) is 0.024.

Learn more about index on

https://brainly.com/question/24380051

#SPJ1

which Yandere Simulator update removed the box of matches?

Answers

Answer:

Fixed the glitchy physics of Yandere-chan’s latest hairstyle. Removed exploit that allowed players to keep a character stationary indefinitely by talking to a student about their Task and never dismissing the Task Window. Adjusted the pathfinding grid so that it should be less likely for a student’s path to the male locker room to be blocked.

Explanation:

Answer:

i couldnt find the exact year but heres a list of bug fixes n stuff if this helps

Explanation:

https://yandere-simulator.fandom.com/wiki/Update_History

Write a JavaScript program in an HTML document to ask user to enter a class of math marks
(0 – 100) by using a while loop, then when the user enters a negative number, your program
should display the class average to one decimal place.

Answers

Here is a sample JavaScript program depicted in an HTML document that utilizes a while loop to ask the user to enter math marks and thereby compute the class average:

The Program

The calculateAverage() function can be triggered when the user presses "Calculate". It consists of a while loop, within which three variables - sum (total marks), count (number of marks entered) and mark (the current mark being analyzed) are set up.

The cycle continues until a negative number is inserted; it encompasses marks between 0 and 100 (inclusive). As soon as the user inserts an integer below zero, the cycle halts and the average is obtained by dividing the summation by the amount.

The class average is sent to one decimal place through the usage of the toFixed() procedure on the average variable. Lastly, the conclusive result is shown in the HTML record by setting the innerHTML of the segment "result" to a string that involves the class median.


Read more about JavaScript here:

https://brainly.com/question/16698901

#SPJ1

Write a JavaScript program in an HTML document to ask user to enter a class of math marks(0 100) by using

question 30some microphones are directional, meaning that they are only effective when you speak directly into them.truefalse

Answers

True. some microphones are directional, meaning that they are only effective when you speak directly into them.

Some microphones are directional, which means they are designed to pick up sound primarily from a specific direction or angle. These microphones are most effective when the sound source, such as the speaker's voice, is directed straight into the microphone. They are designed to minimize background noise and capture sound primarily from the desired direction, resulting in clearer audio recordings or transmissions.

Some microphones are designed to be directional, meaning they are more sensitive to sound coming from a specific direction or angle. These microphones are often referred to as "unidirectional" or "directional" microphones.

Directional microphones are commonly used in situations where it is important to isolate the desired sound source and reduce background noise or unwanted sounds. By focusing their sensitivity in a specific direction, they can capture audio more effectively from that direction while minimizing sound from other directions.

Learn more about microphones are directional from

https://brainly.com/question/32150145

#SPJ11

What happens when the electrons flowing through the light bulb change direction?

Answers

Answer:

Electrons move through the wires is the opposite direction.

Explanation:

The direction of an electric current is by convention the direction in which a positive charge would move. Thus, the current in the external circuit is directed away from the positive terminal and toward the negative terminal of the battery. Electrons would actually move through the wires in the opposite direction.

Describe, with examples, the way in which a defect in software can cause harm to a person, to the environment, or to a company

Answers

Answer:

Losing jobs. Fire. Destruction of property.

Explanation:

Having a company shut down due to lack of protection and having people testify products unsafe. If software blows up it could cause desturction of property therefore causing the effect of many people losing their jobs.

What are the three phases of an iterative development process?
A.
design, analyze, generate
B.
plan, analyze, evaluate
C.
analyze, implement, delivery
D.
design, prototype, evaluate

Answers

Answer: D.  - design, prototype, evaluate

Explanation: Took a Edmentum/Plato Quiz

Answer:

D - Design, Prototype, Evaluate

Explanation:

PLATO

In excel online what is it called when you join connecting cells together to span across more than one column and/or row?
Combine
Connect
Merge
Unite

Answers

Answer:

Combinar

Explanation:

Answer:

Merge

Explanation:

which type of malicious threat is typically more irritating than malicious?

Answers

The type of malicious threat that is typically more irritating than malicious is adware.

Adware is a type of software that displays unwanted advertisements on a user's computer or mobile device, often in the form of pop-up windows or banners. While adware is not typically harmful to the user's device, it can be very frustrating and disruptive to their experience.

Adware may also collect user data and browsing history, which can be a privacy concern. Adware can be annoying and intrusive, slowing down the performance of the computer or device and posing a potential security risk if it collects personal information without the user's consent.

Learn more about adware: https://brainly.com/question/17283834

#SPJ11

True or False: Cross-functional teams are optimized to work on one technical layer of a system only (e.g. GUI, database, middle tier, interfaces).

Answers

The statement that “Cross-functional teams are optimized to work on one technical layer of a system only (e.g. GUI, database, middle tier, interfaces)” is FALSE.

Cross-functional teams are optimized to work across multiple technical layers of a system. In cross-functional teams, team members with diverse skill sets collaborate to tackle complex projects, and the team has members from multiple technical layers of the system who work together to achieve common goals.

It includes individuals with different technical and functional skillsets working together to accomplish a common goal.Cross-functional teams work together in a collaborative effort that promotes skill sharing, expertise, and experience to enable innovation, progress, and overall team success.

Learn more about cross-functional teams at:

https://brainly.com/question/31625757

#SPJ11

How was the addition of an improvement over early web design?
Webpages could finally incorporate tables into the design.
Webpage layout could finally format content blocks separately.
Webpage layouts were finally designed using HTML code.
Webpages could finally incorporate images as layout elements.

Answers

Answer- B: Webpage layout could finally format content blocks separately.

Explanation: Found it on Quizlet.

Answer:

Webpage layout could finally format content blocks separately.

Explanation: this the answer on edge.

Other Questions
Help me with this math problem correct for the brianlyest Question 10(Multiple Choice Worth 2 points)(Comparing Data MC)The box plots display measures from data collected when 20 people were asked about their wait time at a drive-thru restaurant window.A horizontal line starting at 0, with tick marks every one-half unit up to 32. The line is labeled Wait Time In Minutes. The box extends from 8.5 to 15.5 on the number line. A line in the box is at 12. The lines outside the box end at 3 and 27. The graph is titled Super Fast Food.A horizontal line starting at 0, with tick marks every one-half unit up to 32. The line is labeled Wait Time In Minutes. The box extends from 9.5 to 24 on the number line. A line in the box is at 15.5. The lines outside the box end at 2 and 30. The graph is titled Burger Quick.Which drive-thru typically has more wait time, and why? Burger Quick, because it has a larger median Burger Quick, because it has a larger mean Super Fast Food, because it has a larger median Super Fast Food, because it has a larger meanQuestion 11(Multiple Choice Worth 2 points)(Creating Graphical Representations MC)The number of carbohydrates from 10 different tortilla sandwich wraps sold in a grocery store was collected.Which graphical representation would be most appropriate for the data, and why? Circle chart, because the data is categorical Line plot, because there is a large set of data Histogram, because you can see each individual data point Stem-and-leaf plot, because you can see each individual data pointQuestion 12(Multiple Choice Worth 2 points)(Comparing Data MC)The line plots represent data collected on the travel times to school from two groups of 15 students.A horizontal line starting at 0, with tick marks every two units up to 28. The line is labeled Minutes Traveled. There is one dot above 10, 16, 20, and 28. There are two dots above 8 and 14. There are three dots above 18. There are four dots above 12. The graph is titled Bus 14 Travel Times.A horizontal line starting at 0, with tick marks every two units up to 28. The line is labeled Minutes Traveled. There is one dot above 8, 9, 18, 20, and 22. There are two dots above 6, 10, 12, 14, and 16. The graph is titled Bus 18 Travel Times.Compare the data and use the correct measure of center to determine which bus typically has the faster travel time. Round your answer to the nearest whole number, if necessary, and explain your answer. Bus 14, with a median of 14 Bus 18, with a mean of 12 Bus 14, with a mean of 14 Bus 18, with a median of 12Question 13(Multiple Choice Worth 2 points)(Appropriate Measures MC)The line plot displays the number of roses purchased per day at a grocery store.A horizontal line starting at 1 with tick marks every one unit up to 10. The line is labeled Number of Rose Bouquets, and the graph is titled Roses Purchased Per Day. There is one dot above 1 and 2. There are two dots above 8. There are three dots above 6, 7, and 9.Which of the following is the best measure of variability for the data, and what is its value? The range is the best measure of variability, and it equals 8. The range is the best measure of variability, and it equals 2.5. The IQR is the best measure of variability, and it equals 8. The IQR is the best measure of variability, and it equals 2.5.Question 14(Multiple Choice Worth 2 points)(Circle Graphs LC)Chipwich Summer Camp surveyed 100 campers to determine which lake activity was their favorite. The results are given in the table.Lake Activity Number of CampersKayaking 15Wakeboarding 11Windsurfing 7Waterskiing 13Paddleboarding 54If a circle graph was constructed from the results, which lake activity has a central angle of 39.6? Kayaking Wakeboarding Waterskiing PaddleboardingQuestion 15(Multiple Choice Worth 2 points)(Making Predictions MC)At a recent baseball game of 5,000 in attendance, 150 people were asked what they prefer on a hot dog. The results are shown.Ketchup Mustard Chili63 27 60Based on the data in this sample, how many of the people in attendance would prefer ketchup on a hot dog? 900 2,000 2,100 4,000 The United States had supported France in Vietnam and now saw communism as a rising threat to the rest of Asia which became known by this idea. Group of answer choicescommunist manifestodomino theoryred scarecommunist MY CHILDREN! MY AFRICA! Write a discursive essay of about 250 to 300 words highlighting the di perspectives of Mr Anele Myalatya affectionately known as Mr M, Thami Mbikwana and Isabel Dyson on the South African socio-political situation under government. Your discussion should focus on the following themes in the play: 1. Violence vs Peaceful negotiation to achieve social justice.2. The generation gap. 3. The impact of an unfair distribution of resources and government funding on the education system of the different racial groups in SA. After Andromeda was banished from House Black, what happened to her once she married Ted Tonks? (After her daughter, Nymphadora, was born) There are plenty of options to choose from when buying running shoes. Some of the most popular brands are Nipe and Adipas. Answer the following questions: a. As compared to the market for running shoes, there are lesser options available for shoelaces. Customers buying shoelaces do not have as many options to choose from. In this situation, the price elasticity in the market for running shoes is elastic as compared to the price elasticity for shoelaces. Type L for Less, M for More or E for Equally. b. Assume now Nipe is trying to find out the price elasticity of their customers by changing the prices of their running shoes. When a pair of shoes is sold for $199, it is observed that Nipe can sell 7697 pairs of shoes within a day. When the price decreases to $155, Nipe will be able to sell 8220 pairs of shoes within a day. Calculate the price elasticity of demand using the mid-point formula? Answer to the nearest 2 decimal places. c. Considering your findings in part b, should Nipe increase the price for a pair of shoes to increase revenue? Type Y for Yes, N for No, or U for Unknown. QUESTION 6 Every year, over 7 million tourists come from all over the world to visit the Eiffel Tower in France. On any given day near the Eiffel Tower, there are many local vendors selling exactly the same souvenirs to tourists at the same price. 1. The demand curve of the souvenir market is horizontal. 2. The demand curve of a souvenir vendor is horizontal. 3. The demand curve of the vendor is perfectly inelastic. Which of the above statements are true: Only 1 is true. Only 2 is true. Both 1 and 2 are true. Both 2 and 3 are true. All three are true. QUESTION 9 John lives in the small island nation of Vanuatu, and is a producer in the perfectly competitive market for galip nuts. A summary of some of his costs, which are given in the local currency (the "vatu"), is shown below. If John's profit-maximising quantity is 120 kg of galip nuts, what is the marginal revenue per kilogram of galip nuts at this profit maximising quantity? Answer to the nearest whole number. QUESTION 10 Seth loves pottery, and sells his vases at the fair. Assume the market for vases is perfectly competitive. Seth sells 69 vases (the profit-maximising quantity) at a market price of $17 per vase, with the average total cost being $17.40 per vase. The minimum average variable cost is $16.20 per vase. Answer the following questions: a. Seth's economic profit or loss is (use a negative value if a loss). Answer in dollars, rounded to two decimal places (ie: to the nearest cent). b. Should Seth shut down? Type Y for Yes, or N for No c. State whether the following statement is true or false: "Seth needs to minimise his loss of $0.40 per vase by producing the quantity where price equals his marginal cost." Type T for true, or F for false A triangular prism is 18 yards long and has a triangular face with a base of 18 yards and a height of 12 yards. The other two sides of the triangle are each 15 yards. What is the surface area of the triangular prism? Write the decimal number in words 17.43 Name and describe the functions of 3 organelles found in the cell and explain how each organelle helpsthe cell maintain homeostasis A line passes through (-9, -4) and has a slope of 2. Write an equation in slop-intercept form for this line. A flexible container at an initial volume of 3.10 L contains 3.51 mol of gas. More gas is then added to the container until it reaches a final volume of 17.1 L. Assuming the pressure and temperature of the gas remain constant, calculate the number of moles of gas added to the container. What is the setting of this passage by Mark Twain? The Adventures of Huckleberry Finn What is the measure of Select one of the four themes in Animal Farm and write an essay of at least 200 words that explains how that theme is developed through events in the story and character interactions. Use details and excerpts from the story to support your answer. I hear America singing, the varied carols I hear, Those of mechanics, each one singing his as it should be blithe and strong, The carpenter singing his as he measures his plank or beam, The mason singing his as he makes ready for work, or leaves off work, The boatman singing what belongs to him in his boat, the deckhand singing on the steamboat deck, The shoemaker singing as he sits on his bench, the hatter singing as he stands, The wood-cutter's song, the ploughboy's on his way in the morning, or at noon intermission or at sundown, The delicious singing of the mother, or of the young wife at work, or of the girl sewing or washing,Each singing what belongs to her, and to none else, The day what belongs to the day at night, the party of young fellows, robust, friendly, Singing, with open mouths, their strong melodious songs.Which statement best describes the structure of I Hear America Singing?The poem is loosely structured and contains rhyme.The poem is loosely structured and contains repetition.The poem has a strict structure, including a specific rhythm.The poem has a strict structure, including repetition. alculate the ph of a solution that is 0.270 m in sodium formate ( hcoona ) and 0.130 m in formic acid ( hcooh ). what is the name of this muscle Diaphgram isn't correct ansewr. Explain the locations of the pod and space station during and after the collision. The segment margin represents the ______. a. margin available to cover fixed costs b. margin available after a segment has covered all of its own costs c. margin remaining after traceable and common fixed costs have been deducted d. excess of the segment revenue over the segment cost of goods sold The points a,b,c and d on a coordinated plane can be connected to form a rectangle point A is located at (2,0) point B is located at ((6,0) and point C is located at (6,2.5) write the ordered pair of point D