Assignment
Create an HTML form that will accept four fields: pet name, pet ID, pet weight, and birthdate. Name this file petInfo.html. There should be a submit and reset button on your html form. Your input fields for your form should be inside of a table. The submit button should send the data to a php file named updateInfo.php. The updateInfo.php file should check the data submitted by the html file for proper formatting. While it is allowable that you may check input on the client side (either HTML or Javascript), you MUST check for valid input on the server using PHP.
***IMPORTANT***
Your POST variables in your HTML file must be labeled as follows. I have written an automated script to run tests on your code, and it depends on the POST variables being labeled correctly within the HTML Form.
1) "pet_name"
2) "pet_id"
3) "pet_weight"
4) "birth_date"
The following rules must be enforced by your PHP script about the input.
• No field is allowed to be blank.
• Maximum length of pet name is 20 characters.
• Pet ID must be 4 lowercase letters followed by 3 numbers. Example: abcd123
• Max length of pet weight is 7 characters. Max of two digits after decimal point. Must be a positive value. Range: 0.00 – 9999.99.
• The name should be only made up of alphabetical characters. (no numbers or symbols).
• Birthdate should be in the format 1/1/2002. Examples of valid input: 01/01/2002, 12/1/1999, 12/25/2015. Do not allow: 12/25/02 (The whole year should appear in the input).
If all the fields are valid, your PHP script should save the data into a file named petInfo.txt which should have the following format, and be sorted by "pet_name". Put each record on its own line. To simplify things, you can assume that Names are unique - i.e. you can use the name as a key for your associative array. (I won't use two of the same name when I test your code).
PetName, PetID, PetWeight, PetBirthDate\n
Once the new data has been received, you should also display ALL data that has been entered into the text file from your PHP script into an HTML table. The table should be sorted by last name just like the text file. After successfully displaying your table, create a link back to the petInfo.html page.

Answers

Answer 1

Answer:

it

is

not

a

big

question

it

is

so

simple


Related Questions

the pane of the site setup dialog box defines the settings you need to upload site files through dreamweaver files panel.

Answers

The Site Setup dialog box in Adobe Dreamweaver is used to define the parameters of a website.

What is Site Setup?

Site Setup is the process of configuring a website for hosting on a web server. This includes setting up the domain name, setting up the web server, configuring the web server for the specific website, and setting up the server software. This process also includes setting up the database and configuring the security for the website. It may also involve setting up email accounts, setting up the FTP access, and setting up the website content. Site Setup is an important step in setting up a website and should be done properly to ensure the website is able to run properly and securely.

This includes the local and remote locations, which are the folders where files (such as HTML and image files) are stored on your computer and the web server, respectively. In addition, the Site Setup dialog box allows you to set up the connection type (FTP, SFTP, etc.) and credentials (username, password, etc.) you need to upload your site files to the remote server. Once these settings are configured, you can use the Files panel in Dreamweaver to quickly upload and download files to and from the server.


To learn more about website
https://brainly.com/question/28431103
#SPJ4

In the article, “Protecting American Soldiers: The
Development, Testing, and Fielding of the Enhanced Combat Helmet”, Describe the features, functions and high-level tasks that were identified in the case study project deemed to be successful.

Answers

The features are: The primary goal of ballistic protection is to guarantee that the helmet can efficiently shield the head against hazardous ballistic hazards, including shrapnel and bullets, during times of combat to mitigate the probability of head injuries.

What is the article about?

Other Characteristics:

Creating a helmet with robust impact resistance to mitigate the risk of head injuries resulting from falls, collisions, or explosions by minimizing skull fractures and brain damage.

The objective of the Lightweight Design is to achieve a harmonious equilibrium between safeguard and weight. This reduces discomfort and exhaustion for the wearer, allowing the soldiers to execute their tasks with efficiency, without being hampered by bulky headgear.

Learn more about  Protecting American from

https://brainly.com/question/30707919

#SPJ1

What do we call a statement that displays the result of computations on the screen?
O A. result statement
OB.
O C.
O D.
OE.
screen statement
output statement
answer statement
input statement

Answers

Result statement call a statement that displays the result of computations on the screen.

Thus, Results statements a statement listing the syllabuses taken and the grades given for each candidate. Results statements are printed on stationary with a watermark in full color.

The qualifications and syllabi grades displayed in each statement are explained in the explanatory notes. Results broken down by choice, component, and curriculum for teaching staff.

A summary of all the results for your applicants is provided in the results broadsheet for teaching staff. A summary of the moderation adjustments for each internally assessed component is included in the moderation adjustment summary reports for teaching staff.  

Report on the moderation for each internally assessed component for instructional personnel, where appropriate.

Thus, Result statement call a statement that displays the result of computations on the screen.

Learn more about Result statement, refer to the link:

https://brainly.com/question/26141085

#SPJ1

Suppose you have the following search space:

State
next
cost

A
B
4

A
C
1

B
D
3

B
E
8

C
C
0

C
D
2

C
F
6

D
C
2

D
E
4

E
G
2

F
G
8

Draw the state space of this problem.

Assume that the initial state is A and the goal state is G. Show how each of the following search strategies would create a search tree to find a path from the initial state to the goal state:
Breadth-first search
Depth-first search
Uniform cost search

Answers

Breadth

Depth

Uniform

U

3.Personal Information Class
Design a class that holds the following personal data: name, address, age, and phone number. Write appropriate accessor and mutator methods. Demonstrate the class by writing a java
program that creates three instances of it. One instance should hold your information, and
the other two should hold your friends' or family members' information.

Answers

Here's an example Java class that holds personal data and provides accessor and mutator methods:

public class PersonalData {

   private String name;

   private String address;

   private int age;

   private String phoneNumber;

   public PersonalData(String name, String address, int age, String phoneNumber) {

       this.name = name;

       this.address = address;

       this.age = age;

       this.phoneNumber = phoneNumber;

   }

   public String getName() {

       return name;

   }

   public void setName(String name) {

       this.name = name;

   }

   public String getAddress() {

       return address;

   }

   public void setAddress(String address) {

       this.address = address;

   }

   public int getAge() {

       return age;

   }

   public void setAge(int age) {

       this.age = age;

   }

   public String getPhoneNumber() {

       return phoneNumber;

   }

   public void setPhoneNumber(String phoneNumber) {

       this.phoneNumber = phoneNumber;

   }

}

And here's an example Java program that creates three instances of this class:

public class PersonalDataDemo {

   public static void main(String[] args) {

       PersonalData myData = new PersonalData("John Smith", "123 Main St, Anytown USA", 35, "555-1234");

       PersonalData friend1Data = new PersonalData("Jane Doe", "456 Oak St, Anytown USA", 28, "555-5678");

       PersonalData friend2Data = new PersonalData("Bob Johnson", "789 Elm St, Anytown USA", 42, "555-9012");

       System.out.println("My personal data:");

       System.out.println("Name: " + myData.getName());

       System.out.println("Address: " + myData.getAddress());

       System.out.println("Age: " + myData.getAge());

       System.out.println("Phone number: " + myData.getPhoneNumber());

       System.out.println();

       System.out.println("Friend 1's personal data:");

       System.out.println("Name: " + friend1Data.getName());

       System.out.println("Address: " + friend1Data.getAddress());

       System.out.println("Age: " + friend1Data.getAge());

       System.out.println("Phone number: " + friend1Data.getPhoneNumber());

       System.out.println();

       System.out.println("Friend 2's personal data:");

       System.out.println("Name: " + friend2Data.getName());

       System.out.println("Address: " + friend2Data.getAddress());

       System.out.println("Age: " + friend2Data.getAge());

       System.out.println("Phone number: " + friend2Data.getPhoneNumber());

   }

}

The above mentioned codes are the answers.

For more questions on Java, visit:

https://brainly.com/question/26789430

#SPJ11

At which stage of the design process does the team communicate product information to all the relevant stakeholders?

Answers

The product information is communicated to the relevant stakeholders at the time of preparing the prototype or at the time of ideating during the design process.

Who are stakeholders?

The stakeholders are the individuals or the group of individuals who invest their funds in the working of the company in return of gaining dividend and interests from portion of profits earned by the company.

The short design process is of 5 stages those are: empathize, define, ideate, prototype and test. But the stakeholders are the true investors who will provide fund for the project.

Therefore, before testing the design it is required to communicate the work to stakeholders.

Learn more about stakeholders, here:

https://brainly.com/question/14514176

#SPJ1

what would you enter at the command prompt on Linux system to display the IP addresses and the subnet

Answers

Answer:

The ifconfig command.

Select the best answer for the question.
5. To save time, Carlos is estimating the building as one large room for purposes of calculating heat loss. This is called
A. envelope.
B. full space.
C. design.
D. wall-less.

Answers

B is the answer I think

Double click is used to select the ________________.​

Answers

Double click is used to select the word of text.

When you double-click, you can do a lot of different things, such launch a program, access a folder, or pick out a word of text. Simply position the pointer on the object and quickly click the left mouse button twice to double-click it.

Quickly clicking the mouse button twice while keeping it still is referred to as a double-click. In most circumstances, opening or running a file, folder, or software program requires two left mouse button clicks.

For instance, double-clicking an icon in Microsoft Windows will open the associated program or file. You would double-click the browser icon shortcut to launch your web browser.

To learn more about Mouse Button click here:

brainly.com/question/15158562

#SPJ4

Encircle the ANIMALS WHICH DONOT BELONG TO THE GROUP​

Encircle the ANIMALS WHICH DONOT BELONG TO THE GROUP

Answers

Anemones butterfly earthworm spider squid leeches fluke scorpion hydra clams

Answer:

Get lost kid..............................................................

Explanation:

What are some settings you can control when formatting columns? Check all that apply.


What are some settings you can control when formatting columns? Check all that apply.

Answers

Answer:

1,3,4,6,7, hope that helps'

Explanation:

survey and describe the system

Answers

Survey systems help create, distribute, and analyze surveys by providing a framework for designing questionnaires, managing respondents, and analyzing data.

What is survey?

A survey system lets users create surveys with different question types and response options. The system offers multiple ways to distribute surveys, including sharing a web link, email invites, website embedding, and social media.

Data is collected from respondents and stored accurately and securely, with error checking and validation in place. After survey completion, analyze data with summary stats, visualizations, filters, and cross-tabulations for identifying patterns. Survey systems have reporting features to generate detailed reports based on its data, including statistics, graphs, etc.

Learn more about survey  from

https://brainly.com/question/14610641

#SPJ1

If you have an array of 100 sorted elements, and you search for a value that does not exist in the array using a binary search, approximately how many comparisons will have to be done?
a)7


b)100


c)50

Answers

Answer:

50

Explanation:

as binary search will search the array by dividing it into two halves till it find the value.

What does the term "death by powerpoint" refer to when dealing with Powerpoint presentations?

Answers

Answer:

Death by PowerPoint is a phenomenon caused by the poor use of presentation software. Key contributors to death by PowerPoint include confusing graphics, slides with too much text and presenters whose idea of a good presentation is to read 40 slides out loud.

Explanation:

Hope this helps :)

Advantages of special purpose computer

Answers

Answer:

The main advantage of the special-purpose systems is the possibility to utilize a much higher fraction of available silicon to actually do calculations. ... All the rest of the calculation, such as the time integration of the orbits of particles, I/O, and diagnostics are handled by a general-purpose host computer..

Explanation:

A(n) _____ is any piece of data that is passed into a function when the function is called. Select 2 correct answer(s) global argument scope parameter

Answers

A(n) argument is any piece of data that is passed into a function when the function is called parameter.

What is a parameter?

Parameters specify the information that must be passed to a subroutine when it is invoked. Within the subroutine, the parameters are treated as local variables.Instead of using global variables, parameters should be used to share data between different parts of a programme. This reduces the possibility of problems arising from values being modified by other parts of the programme in unexpected ways when the subroutine was designed.When a subroutine is called, a parameter specifies any values that must be passed to it.Parameters are defined when a subroutine is declared, usually within brackets after the subroutine's name (the subroutine identifier). Identifiers are also assigned to the parameters (names). A subroutine can have one, multiple, or none.

To know more about Argument,click on the link :

https://brainly.com/question/27100677

#SPJ1

If you have downloaded this book's source code from the companion Web site, you will find a file named text.txt in the Chapter 12 folder. (The companion Web site is at www.pearsonhighered/gaddis.) The text that is in the file is stored as on sen- tence per line. Write a program that reads the file's contents and calculates the average of words per sentence.

Answers

Answer:

Explanation:

The following python code loops through each line within a file called text.txt and counts all the words, then it divides this count by the number of sentences in the text file. Finally, output the average number of words per sentence.

f = open("text.txt", "r")

all_words = 0

sentences = 0

for x in f:

   list = x.split(' ')

   all_words += len(list)

   sentences += 1

average = all_words / sentences

print("There are an average of " + str(average.__round__()) + " words in each sentence.")

If you have downloaded this book's source code from the companion Web site, you will find a file named

Which view displays the records in columns and rows like excel worksheet​

Answers

Answer:

Datasheet View

Explanation:

Chapter 1

A B

Database Template A preformatted database designed for a specific purpose.

Datasheet View The Access view that displays data organized in columns and rows similar to an Excel worksheet.

The spoken version of your company's purpose is called
A An elevator pitch
B. A vision statement
C. Your values
D. Differentiation

Answers

Answer:

The answer to this question is given below in the explanation section. The correct answer is A

Explanation:

The spoken version of the company's purpose is also called an elevator pitch. because it has to be short enough to fit into a conversation that takes place on an elevator.

however the other options are not correct that tells the purpose of a company, because the vision statement shows what you will be at what stage in next coming year (in terms of growth, product /services etc). Your values are about what uniqueness you have in your product/service etc that you are providing to your customers/clients. While differentiation is not a spoken version of your company.

Answer:

A

Explanation:

Question: Name the person who originally introduced the idea of patterns as a solution design concept.

Answers

Answer:

architect Christopher Alexander is the person who originally introduced the idea of patterns as a solution design concept.

The person who originally introduced the idea of patterns as a solution design concept named as Christopher Alexander who was an architect.

What is architecture?

Architecture is referred to as an innovative technique or artwork based on buildings or physical structures that aims at creating cultural values for upcoming generations to understand the importance of history.

The external layout can be made to best support human existence and health by using a collection of hereditary solutions known as the "pattern language." It creates a set of helpful relationships by combining geometry and social behavior patterns.

Christopher Alexander, a British-American engineer and design theorist of Austrian heritage, is renowned for his several works on the design and construction process introduced the idea of patterns as a solution design concept.

Learn more about pattern language architecture, here:

https://brainly.com/question/4114326

#SPJ6

i make you brainliest

Answers

alright sounds like a plan to me

Answer:

Explanation:

I apprieciate your kindness here i will give you some points

How many clients has
Accenture engaged globally on blockchain?

Answers

3,84, 000 people are engaged globally on blockchain.

- blockchain network technology by Accenture creates a database and allows the different organizations to access it in real-time without privacy issues

- For this Blockchain project, Accenture has employed 3,84,000 people approximately all over the world.

- The motto of Accenture’s Blockchain project is “Enable and empower multiparty systems to accelerate transformation”

Match the visibility label to the visibility mode used in class diagrams

Answers

The visibility labels have been matched to the visibility mode used in class diagrams as follows:

+ Public attributes# Protected attributes- Private attributes~ Package attributes

What are visibility labels?

Visibility labels are designations that are often used in object-oriented design or class diagrams to specify certain operations. There are four basic types of visibility labels that are assigned to some types of attributes.

They are the plus, minus, numerical and approximate labels. Respectively, these labels are used to identify the public, protected, private, and package attributes or operations.

Learn more about visibility labels here:

https://brainly.com/question/28360020

#SPJ1

What type of structure is this?

Answers

Note that these structures belong to Nano technology and allotropes.

What type of bonding do allotropes have?

Carbon atoms are connected by strong covalent bonds in all three allotropes, but in such varied patterns that the characteristics of the allotropes are significantly different.

Allotropes are several forms of the same element in the same physical condition. Carbon allotropes include diamond and graphite. They are both large covalent structures made up of numerous carbon atoms connected together by covalent bonds.

Learn more about nano structures;
https://brainly.com/question/29813999
#SPJ1

Full Question:

See attached image.

What type of structure is this?

What is a required device(s) used to connect to an ISP Network?

a. Switch
b. Mouse
c. Modem
d. Hub
e. B and C

Answers

A .switch isp connect network

Answer:e

Explanation:e

(PLEASE HELP ME)
Question:

Write an application that determines whether the first two files are located in the same folder as the third one. The program should prompt the user to provide 3 filepaths. If the files are in the same folder display All files are in the same folder, otherwise display Files are not in the same folder.


Test the program when the files are in the same folder and when they are not. The following filepaths can be used to test your program:


/root/sandbox/TestData1.txt

/root/sandbox/TestData2.txt

/root/sandbox/TestData3.txt and /root/sandbox/test/TestData3.txt

Grading

Write your Java code in the area on the right. Use the Run button to compile and run the code. Clicking the Run Checks button will run pre-configured tests against your code to calculate a grade.


Once you are happy with your results, click the Submit button to record your score.


MY CODE:

import java.nio.file.*;

import java.nio.file.attribute.*;

import java.io.IOException;

public class CompareFolders

{

public static void main(String[] args)

{

String path1 = "/root/sandbox/TestData1.txt";

String path2 = "/root/sandbox/TestData2.txt";

String path3 = "/root/sandbox/TestData3.txt";

System.out.println("Path1 :" +path1);

System.out.println("Path3 :" +path3);

compare(path1,path3);

System.out.println("Path2 :" +path2);

System.out.println("Path3 :" +path3);

compare(path2,path3);

}


private static void compare(String path_x, String path_y) {

if (path_x.startsWith(path_y)) {

System.out.println("All files are in the same folder");

}

else {

System.out.println("Files are not in the same folder");

}

}


}



ISSUE:

Test Case-Incomplete 66%

The program correctly indicates that files are in the same folder


What am I doing wrong?

Answers

Answer:

/root/sandbox/TestData1.txt

/root/sandbox/TestData2.txt

/root/sandbox/TestData3.txt and /root/sandbox/test/TestData3.txt

Grading

Write your Java code in the area on the right. Use the Run button to compile and run the code. Clicking the Run Checks button will run pre-configured tests against your code to calculate a grade.

Once you are happy with your results, click the Submit button to record your score.

MY CODE:

import java.nio.file.*;

import java.nio.file.attribute.*;

import java.io.IOException;

public class CompareFolders

{

public static void main(String[] args)

{

String path1 = "/root/sandbox/TestData1.txt";

String path2 = "/root/sandbox/TestData2.txt";

String path3 = "/root/sandbox/TestData3.txt";

System.out.println("Path1 :" +path1);

System.out.println("Path3 :" +path3);

compare(path1,path3);

System.out.println("Path2 :" +path2);

System.out.println("Path3 :" +path3);

compare(path2,path3);

}

private static void compare(String path_x, String path_y) {

if (path_x.startsWith(path_y)) {

System.out.println("All files are in the same folder");

}

else {

System.out.println("Files are not in the same folder");

which of the following sequences best describes how you would create an animator component on an object?
O Click on the Add O Components button and choose O Miscellaneous > Animator

Answers

The sequences that best describes how you would create an animator component on an object is option A, B and C click on the add components button and choose miscellaneous > animator

What is an animator's function?

To imitate movement, an animator must produce a series of images called frames. Working with artists, such as designers and storytellers, is one of their responsibilities.

An animator is a creative who produces numerous visuals, or "frames," that when displayed quickly in succession appear to move. Film, television, and video games are just a few of the industries where animators can find employment.

Therefore, one can say that  GameObject in your scene can have animation assigned to it using the Animator component. An Animator Controller must be used by the Animator component in order to specify which animation clips to utilize and how and when to mix and transition between them.

Learn more about animator from

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

how to find tax rate using VLOOKUP function in microsoft excel?

Answers

Answer: below

Explanation:

To find a tax rate using the VLOOKUP function in Microsoft Excel, follow these steps:

Set up a table that contains the tax rates. The table should have two columns: one column for the income levels or thresholds and another column for the corresponding tax rates. Make sure the income levels are sorted in ascending order.

For example, your table might look like this:

Income Level   Tax Rate

0              0%

10000          10%

20000          15%

30000          20%

In a cell where you want to calculate the tax rate, enter the VLOOKUP formula. The formula syntax for VLOOKUP is as follows:

=VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])

lookup_value: This is the value you want to lookup, in this case, the income for which you want to find the tax rate.

table_array: This is the range of cells that contains your table, including both the income levels and tax rates.

col_index_num: This is the column number that contains the tax rates within the table. In this case, it would be 2 since the tax rates are in the second column.

[range_lookup]: This is an optional argument. If set to TRUE or omitted, it performs an approximate match. If set to FALSE, it performs an exact match.

For example, if you want to find the tax rate for an income of $25,000 and your table is in cells A1:B5, you can use the following formula:

=VLOOKUP(25000, A1:B5, 2, TRUE)

Press Enter to calculate the formula. The VLOOKUP function will search for the income level closest to $25,000 in the table and return the corresponding tax rate.

Note: Make sure the values you're looking up and the table range are of the same data type (e.g., numbers). Also, ensure that the income levels in the table are sorted in ascending order for the VLOOKUP function to work correctly.

narrative report in computer system servicing

Answers

Computer servicing is the process of maintaining and repairing computers and computer peripherals. It can involve anything from malware removal and software updates to hardware repairs and troubleshooting. Servicing is often performed by IT professionals.

problem description IT​

Answers

In IT, a problem description refers to a clear and concise explanation of an issue or challenge that needs to be resolved within a technology system or application.

How is this so?

It involves providing relevant details about the symptoms, impact, and context of the problem.

A well-written problem description outlines the specific errors, failures, or undesired behavior observed and provides enough information for IT professionals to analyze and identify potential solutions.

A comprehensive problem description is crucial for effective troubleshooting and problem-solving in the IT field.

Learn more about Problem Description at:

https://brainly.com/question/25923602

#SPJ1

Other Questions
the first dinosaur eggs ever found (although not the oldest ever found) were found at what world-famous fossil locality? If all of the firms in an industry are making positive economic profit, what does it mean for those firms?1The firms' accounting profit < the firms' opportunity cost2Firms are definitely making negative accounting profit3Firms are definitely making positive accounting profit4The firms' accounting profit > the firms' opportunity cost How do the religion clauses of the First Amendment protect individualrights? A. By preventing the government from regulating religious practicesB. By providing the same education for members of all religious groupsC. By stopping religious groups from participating in election campaignsD. By restricting the ways that religious groups influence private individuals What is the equation of the graphed lime written in standard form Given u = and v = find 2u-3v. a rorschach inkblot test is an example of what kind of test? Evaluate the limit using Squeeze/Sandwich Theorem:[tex] \displaystyle \large{ \lim_{n \to \infty} \frac{1}{n} \cos \frac{n \pi}{3} }[/tex]Please show your work too thanks! Solve for the missing length You have found a house that you would like to purchase. The amount of the home is $525,000. You would like to finance the home through your local credit union but they require a 8% down payment. Determine the amount needed for the down payment so that the bank will finance the home purchase. a. $525,000 c. $42,000 b. $420,000 d. $4,200 James has $7.60 in nickels and quarters. He has 4 fewer nickels than quarters. How many of each coin does he have? Sofa y Javier are talking about their plans in the paragraph below, which contains three verbs in the subjunctive. Write the three subjunctive verbs exactly as they appear and in the order they are found in the paragraph.Sofa busca un apartamento porque desea quedarse en Puerto Rico ms tiempo. Quiere escribir un libro sobre la cultura, el arte, la historia y la vida cotidiana en Puerto. Le pide a Javier que no le diga su secreto a nadie. Javier tambin tiene un sueo para su futuro. l quiere tener su propia agencia de ecoturismo y deportes de aventura, pero su padre quiere que l sea mdico. Sofa le recomienda que no abandone su deseo.1. First subjunctive verb: enter answer2. Second subjunctive verb: enter answer3. Third subjunctive verb: enter answer experts suggest it is better for companies to initially outsource complex activities to achieve better cost benefits. true or false Which of the following best explains the internets homogenizing effect on global language patterns Explain your answer !! Have a nice day Will give braisnlt an electron has total energy equal to four times its rest energy. the momentum of the electron is Can someone please explain this?...... ;-; erbe Consulting Inc.'s gross salaries for the biweekly period ended August 24 were $50,000. Deductions included $1.987 for CPP, $1.502 for El, and $18,726 for income tax. The employer's payroll costs were $730 for CPP and $361 for EI. Prepare journal entries to record (a) the payment of salaries on August 24; (b) the employer payroll costs on August 24, assuming they will not be remitted to the government until September; and (c) the payment to the government on September 3 of all amounts owed. (Credit account titles are automatically indented when the amount is entered. Do not indent manually.) No. Date Account Titles and Explanation Debit Credit (a) (c) Sept. 3 Identify the conflict in Barbara Frietchie. Then, in 100 to 150 words, provide evidence from the poem to support your answer. HERE IS THE POEM Barbara Frietchieby John Greenleaf WhittierThis poem was written in strict conformity to the account of the incident as I had it from respectable and trustworthy sources. It has since been the subject of a good deal of conflicting testimony, and the story was probably incorrect in some of its details. It is admitted by all that Barbara Frietchie was no myth, but a worthy and highly esteemed gentlewoman, intensely loyal and a hater of the Slavery Rebellion, holding her Union flag sacred and keeping it with her Bible; that when the Confederates halted before her house, and entered her dooryard, she denounced them in vigorous language, shook her cane in their faces, and drove them out; and when General Burnside's troops followed close upon Jackson's, she waved her flag and cheered them. It is stated that May Qnantrell, a brave and loyal lady in another part of the city, did wave her flag in sight of the Confederates. It is possible that there has been a blending of the two incidents.Up from the meadows rich with corn,Clear in the cool September morn.The clustered spires of Frederick standGreen-walled by the hills of Maryland.Round about them orchards sweep,Apple and peach tree fruited deep,Fair as the garden of the LordTo the eyes of the famished rebel horde,On that pleasant morn of the early fallWhen Lee marched over the mountain-wall;Over the mountains winding down,Horse and foot, into Frederick town.Forty flags with their silver stars,Forty flags with their crimson bars,Flapped in the morning wind: the sunOf noon looked down, and saw not one.Up rose old Barbara Frietchie then,Bowed with her fourscore years and ten;Bravest of all in Frederick town,She took up the flag the men hauled down;In her attic window the staff she set,To show that one heart was loyal yet.Up the street came the rebel tread,Stonewall Jackson riding ahead.Under his slouched hat left and rightHe glanced; the old flag met his sight."Halt!"the dust-brown ranks stood fast."Fire!"out blazed the rifle-blast.It shivered the window, pane and sash;It rent the banner with seam and gash.Quick, as it fell, from the broken staffDame Barbara snatched the silken scarf.She leaned far out on the window-sill,And shook it forth with a royal will."Shoot, if you must, this old gray head,But spare your country's flag," she said.A shade of sadness, a blush of shame,Over the face of the leader came;The nobler nature within him stirredTo life at that woman's deed and word."Who touches a hair of yon gray headDies like a dog! March on!" he said.All day long through Frederick streetSounded the tread of marching feet.All day long that free flag tostOver the heads of the rebel host.Ever its torn folds rose and fellOn the loyal winds that loved it well;And through the hill-gaps sunset lightShone over it with a warm good-night.Barbara Frietchie's work is o'er,And the Rebel rides on his raids no more.Honor to her! and let a tearFall, for her sake, on Stonewall's bier.Over Barbara Frietchie's grave,Flag of Freedom and Union, wave!Peace and order and beauty drawRound thy symbol of light and law;And ever the stars above look downOn thy stars below in Frederick town!1863.NO SAMPLE ANWSERS FROM THE TEACHERS one of the best tax advantaged ways to save for retirement if you are in your 20s and your employer does not offer a retirement plan is to: the mass of the radioactive isotope sodium 24 is initially measured a 5 mg. if the mass of the sodium 24 decreases 15% every 15 hours