2.CSE 1300
Problem Solving Practice Conditional Statements
Question 1: Student Fees
All KSU students pay fees in addition to their tuition.
Using the code
...
nts pay fees in addition to their tuition.
Using the code provided below as a starting point, write a conditional statement that determines how much a student will pay in fees.
• Students registered for 1 – 4 hours pay $843 in student fees.
• Students enrolled in 5 or more hours pay $993 in student fees.
The program should also display a message to students who have not enrolled in any classes: “You are not enrolled in any classes right now.”
NOTE: You must use the variables included in the code snippet get credit for this question.
import java.util.Scanner;
class Main {
public static void main(String[] args) {
int creditHours;
int fees = 0;
Scanner myScanner = new Scanner(System.in);
System.out.print("Please enter the number of credit hours you are taking this term: "); creditHours = myScanner.nextInt();
myScanner.close();
//YOUR CODE GOES HERE
} }
Break the Problem Down
Answer the following questions, then use the information to write your code.
What are the inputs in the pseudocode above? (INPUT)
What are we storing in the pseudocode above? (MEMORY)
What calculations are needed? (PROCESSES)
What needs to be displayed to the user?
(OUTPUT)
How many conditions are there in your problem statement?
What are they?
Does something need to happen if the condition(s) are not met?
What type of conditional statement do you need?
Solution in Java
Problem 2: Block Tuition
The cost of KSU’s tuition is determined by the number of credit hours a student enrolls in.
Using the chart below, write a conditional statement (ONLY) that sets the value of a tuition variable to what that student will owe.
NOTE: For this problem you can assume that all students are enrolled in a minimum of 12 hours.
Number of Credit Hours 12
13
14
15 or more
Cost (in USD) $2224 $2410 $2595 $2718
Break the Problem Down
Answer the following questions, then use the information to write your code.
What do we need to store? (MEMORY)
What are the inputs in the problem statement above? (INPUT)
What calculations are needed? (PROCESSES)
What needs to be displayed to the user?
(OUTPUT)
How many conditions are there in your problem statement?
What are they?
Does something need to happen if the condition(s) are not met?
What type of conditional statement do you need?
Solution in Java
Problem 3: Class Standing
Undergraduate students will be classified based on the number of earned institutional hours.
• Freshman:
• Sophomore:
• Junior:
• Senior:
0 - 29 hours
30 - 59 hours 60 - 89 hours
90 hours or more
Write a complete program that prompts the user for the number of credit hours they have completed. Write a conditional statement that prints out their class standing based on the information they provided.
Sample Output
Break the Problem Down
Answer the following questions, then use the information to write your code.
What do we need to store? (MEMORY)
Please enter the number of credit hours you have earned: 29 You are a freshman.
What are the inputs in the problem statement above? (INPUT)
What calculations are needed? (PROCESSES)
What needs to be displayed to the user?
(OUTPUT)
How many conditions are there in your problem statement?
What are they?
Does something need to happen if the condition(s) are not met?
What type of conditional statement do you need?
Solution in Java
Problem 4: Maximum Course Load
KSU’s policy on maximum course loads during the academic year is as follows:
A student in good standing may register for up to 18 hours. The Registrar may approve up to 21 hours for students with an institutional GPA of 3.5 or higher. Students
Write a complete program that prompts the user for the number of credit hours they have signed up for. Write the necessary conditional statement(s) to address the stipulations in KSU’s policy. Once the maximum number of hours is determined, display a message to the user that states “You may enroll in X credit hours this semester.” where X is the number of credit hours determined by your program.
Sample Output
Break the Problem Down
Answer the following questions, then use the information to write your code.
What do we need to store? (MEMORY)
Please enter your GPA: 3.75
You may enroll in up to 21 credit hours this semester.
What are the inputs in the problem statement above? (INPUT)
What calculations are needed? (PROCESSES)
What needs to be displayed to the user?
(OUTPUT)
How many conditions are there in your problem statement?
What are they?
Does something need to happen if the condition(s) are not met?
What type of conditional statement do you need?
Solution in Java
Problem 5: First-Year Seminar
All first-year full-time students entering Kennesaw State University with fewer than 15 semester hours are required to complete a First-Year Seminar. Students with 30 or more credit hours are not eligible to enroll in a First-Year Seminar.
Write a complete program that prompts the user for the number of credit hours they have completed. Write the necessary conditional statement(s) to address the stipulations in KSU’s policy.
When you run your program, it should display one of the following messages to the screen:
• You must enroll in First-Year Seminar.
• You do not have to take First-Year Seminar.
• You are not eligible for First-Year Seminar.
Sample Output
Break the Problem Down
Answer the following questions, then use the information to write your code.
What do we need to store? (MEMORY)
Enter the number of credit hours have you completed: 30
You are not eligible for First-Year Seminar.
What are the inputs in the problem statement above? (INPUT)
What calculations are needed? (PROCESSES)
What needs to be displayed to the user?
(OUTPUT)
How many conditions are there in your problem statement?
What are they?
Does something need to happen if the condition(s) are not met?
What type of conditional statement do you need?
Solution in Java
View More
3.This is Dania, I’m writing this to remind you where you have begun to where you are right now. Hopefully,
...
efully, the last two steps of getting your license were taking the required classes and passing the tests. Maybe you are still working on getting your degree and know what to do next or even working towards your workforce goals. If so, welcome to the working world. I hope you were able to find jobs quickly and good opportunities. I hope you find it enjoyable along the way I know it was challenging at first, but I knew that you are going to make it through it all.
View More
4.
Take me as someone who has always had an interest in air pollution, but doesn't have the time to learn
...
earn about it independently. I am hiring you to learn all that you can about it and put together a report that will summarize all the information so that I can learn as much as I can in as little time as possible. Here is what you need to include in your report:
An explanation of air pollution. What is air pollution? //
Explain 4 causes of air pollution.
Explain 2 sources of air pollution. What are the toxins or pollutants that contaminate the air?
Explain at least 5 effects of air pollution on human health and/or the environment.
Explain 3 solutions to stopping air pollution. What can be done by the government or private organizations?
Work cited page should also be included, listing all the sources you used to get your information.
THIS REPORT SHOULD BE TYPED AND ORGANIZED IN 5 OR MORE PARAGRAPHS. READ THE RUBRIC BELOW CAREFULLY TO UNDERSTAND HOW THIS PROJECT WILL BE GRADED!!
WORKS CITED PAGE
General guidelines for citing sources:
List entries alphabetically by author (if no author list title first)
Separate entries with periods
General format:
Author, last name first. "Webpage title." Website title. Date published/updated. Organization/publisher. Date accessed. < URL >
Example:
Landsberger, Joseph. “Citing Websites." Study Guides and Strategies . 12 May 2005. University of
X. 13 May 2005. < http://www.studygs.net/citation.htm >.
These websites will format your citations for you: http://citationmachine.net/ & http://easybib.com/
**You should use google slides or powtoons to put together your information. You should have a minimum of 6 slides not including the title slide with your name.** DUE FRIDAY, APRIL 3, 2020
Rubric
Criteria
Points
Information Included
Three or more required elements are missing (not including additional facts).
(20 points)
1 or 2 required elements are missing (not including additional facts).
(30 points)
All required information is present, but no additional information is given.
(40 points)
All required information is present, including two additional facts.
(50 points)
_________
Quality of information
Information has little or nothing to do with the main topic OR sections do not provide any supporting detail or explanation.
(5 points)
Information clearly relates to the topic, but some sections are lacking detail and explanation.
(10 points)
Information clearly relates to the main topic and all sections include some supporting detail and explanation.
(15 points)
Information clearly relates to the main topic and all sections include significant supporting details and explanation.
(20 points)
________
Format
Title page is not present at all AND/OR there are errors in typing, spacing, no picture, etc.
(5 points)
Product has improperly formatted title page AND/OR no picture or not creative.
(8 points)
Product has incorrectly formatted title page and has pictures.
(12 points)
Product has a title page in the proper format, has pictures and is creative.
(15 points)
________
Spelling/Grammar
5 or more grammatical, spelling or punctuation errors present throughout the product.
(2 points)
3-4 grammatical, spelling or punctuation errors present throughout the product.
(3 points)
1-2 grammatical, spelling or punctuation errors present throughout the product.
(4 points)
No grammatical, spelling or punctuation errors present throughout the product.
(10 points)
________
Works Cited
Works Cited page not present.
(2 points)
All sources are documented with 3-4 errors in format OR Works Cited is not done a separate page.
(3 points)
Works Cited is done on a separate page and all sources are documented with 1-2 errors in format.
(4 points)
Works Cited is done on a separate, properly headed page with all sources documented in proper Works Cited format.
(5 points)
________
Total
_____/100
View More
5.Describe the parallels between cell differentiation, nutrient supply, and final cellular state for the majority of cells involved in the
...
he majority of cells involved in the epidermis, hair follicles/hair growth, and nail synthesis/nail growth.
How does the structure of spongy bone support the function of the red bone marrow contained within said bone?
How do bones, synovial fluid, tendons, ligaments, and articular cartilage work together to allow synovial joint movement? Please explicitly include the bone feature that allows for tendon/ligament attachment.
What is the difference in function between the vertebrae and the intervertebral disks in the vertebral column? Please discuss both the connective tissue subtype for each of these features and how the composition of their extracellular matrix contributes to function
Describe the extracellular matrix of bone to someone who isn't familiar with anatomy (this should be a general description of appearance/tactile nature, no specific mention of cells or function is needed)
How does hair contribute to the sensory role of the integumentary system? (A short explanation is all that is needed, no in-depth description of associated structures is required for full credit)
Back when he was 16, Jordan left eye orbit floor was fractured in a bizarre fencing accident, leaving a few fragments behind inside his skull. Assuming the floor was punctured from above in the maxillary bone and no additional bones were broken, where did the bone fragments end up in his skull? (This should be a particular space in the skull, not a separate bone where the fragments are embedded
The skeletal and integumentary systems rely heavily on collagen for function - describe one or more features other than ligaments that involve collagen, and how you would expect function to change in someone with EDS that affected the relevant subtype of collagen
View More
6.Q2.BMPractice.5th
Your email address (npack@myhsa.net) will be recorded when you submit this form. Not you? Switch account
* Required
Write your FIRST name:
...
Not you? Switch account
* Required
Write your FIRST name: *
Write your LAST name: *
1. Which best describes the difference between single cell and multicellular organisms? *
1 point
a. Single-cell organisms can perform all processes in one cell, but multicellular organisms need many cells to do specialized functions together.
b. Single-cell organisms need one cell to function, but multicellular organisms need lots of cells who all have the same job.
c. Single-cell organisms need many cells to do specialized functions together, but multicellular organisms can perform all processes in one cell.
d. Single-cell organisms need multiple cells with similar structures, but multicellular organisms need only one cell.
2. How does your brain move your arm? *
1 point
a. The brain sends a message to your bones to move your arm
b. The brain sends a message to your nerves to move your arm
c. The lungs send a message to your muscles
d. The muscles send a message to your brain
3. Which correctly explains the difference between the respiratory and circulatory system? *
1 point
a. The respiratory system includes your lungs and the circulatory system includes your heart
b. The respiratory system takes in oxygen and the circulatory system breaks down food
c. The respiratory system takes in water and carbon dioxide, but the circulatory system does not
d. The respiratory system includes the brain and the circulatory system includes to lungs
4. Which of the following is a learned behavior? *
1 point
a. Dimples when you smile
b. Ability to sing
c. Freckles
d. Hair color
5. These are all examples of: *
1 point
Captionless Image
a. Evaporation
b. Radiation
c. Transpiration
d. Percipitation
6. Which of these does NOT make a new material? *
1 point
a. Burning a wooden log
b. Iron nail rusitng
c. Ice melting
d. Mysterious color change
Explain why: *
This is a required question
7. What would you want to put your drink it to keep it cold? *
1 point
Metal (good conductor)
Plastic (bad conductor)
Explain why: *
8. How does the sun play a role in the water cycle? *
1 point
a. Heats water and turns it into water vapor gas
b. Cools gas to make water droplets and clouds
c. Creates strong winds
d. Causing it to rain
9. What will happen when a metal chair is left outside in the hot sun? *
1 point
a. Increase in weight
b. Decrease in weight
c. Increase in size
d. Decrease in size
10. What would the weight of the lemonade be if the water is 3.0 grams, the ice is 2.5 grams, and the mixture is 0.25 grams? *
1 point
a. 5.75 g
b. 5 g
c. 6.25 g
d. 10.1 g
View More
7.The unit price of market goods is $1. Each person has 8 hours to work each day.
Another couple, Sylvan and
...
van and Alex, have the same productivities: Sylvan is identical to Rajan, while Alex
and Esther are identical.
Esther and Rajan both engage in market work. Sylvan works full time at home, so only Alex works in the
market.
a) Given this information, which couple has the higher opportunity cost of home produced goods?
Explain how you determined this. You can add a diagram if that helps, but you are not required
to include one.
b) Can you determine which couple has the higher utility? Explain why or why not.
Suppose now that value of market production for both Alex and Esther increased to $12/per hour.
c) Explain the change in the household joint production possibility frontier generated by this
change.
d) Explain what would happen to each couple’s choice of both household and market produced
goods, using an analysis by means of income and substitution effects.
e) What changes in time allocation for each couple that would be necessary to produce and
consume this new bundle? Briefly explain your reasoning.
View More
8.Huon Aquaculture: Is their brand a promise?
Part 1 requires you to perform a detailed analysis of a case organisation,
...
f a case organisation, their strategic environment, and their viable future strategies (a copy of the case will be made available via the Assessment folder on MyLO). You should supplement the knowledge gained from this case study with your own research on the organisation and the industry (or industries) in which the organisation competes. For Part 1, you are required to use a minimum of 5 references, which can be a mix of academic sources relating to theory and/or news or credible online sources that relate to the organisation.
Resources:
https://mylo.utas.edu.au/content/enforced/394803-AW_BBB_20S2_24212_0_0_0_1_1/Huon%20Aquaculture.pdf?_&d2lSessionVal=yOqpkUci2NYWHoJ8S4Sv4gozo&ou=394803
Required : Provide a written report to the Huon Aquaculture on the following:
Industry
General environment analysis
The industry environment
Competitive Environment
Opportunities and Threats
Resources - tangible and intangible
Capabilities identification
Core competencies
SWOT analysis
Current strategies
Future strategies
View More
9.Task 1
You are asked to carry out a study on behalf of a business analytics specialised consultancy on a subsample
...
on a subsample of weekly data from Randall’s Supermarket, one of the biggest in the UK. Randall’s marketing management team wishes to identify trends and patterns in a sample of weekly data collected for a number of their loyalty cardholders during a 26-week period. The data includes information on the customers’ gender, age, shopping frequency per week and shopping basket price. Randall’s operates two different types of stores (convenient stores and superstores) but they also sell to customers via an online shopping platform. The collected data are from all three different types of stores. Finally, the data provides information on the consistency of the customer’s shopping basket regarding the type of products purchased. These can vary from value products, to brand as well as the supermarket’s own high-quality product series Randall’s Top. As a business analyst you are required to analyse those data, make any necessary modifications in order to determine whether for any single customer it is possible to predict the value of their shopping basket.
Randall’s marketing management team is only interested in identifying whether the spending of the potential customer will fall in one of three possible groups including:
• Low spender (shopping basket value of £25 or less)
• Medium Spender (shopping basket value between £25.01 and £70) and
• High spenders (shopping basket greater than £70)
For the purpose of your analysis you are provided with the data set Randall’s.xls. You have to decide, which method is appropriate to apply for the problem under consideration and undertake the necessary analysis. Once you have completed this analysis, write a report for the Randall’s marketing management team summarising your findings but also describing all necessary steps undertaken in the analysis. The manager is a competent business analyst himself/herself so the report can include technical terms, although you should not exceed five pages. Screenshots and supporting materials can be included in the appendix.
Requirements
After completing your analysis, you should submit a report that consists of two parts. Part A being a non-technical summary of your findings and Part B a detailed report of the analysis undertaken with more details.
Part A: A short report for the Head of Randall’s Marketing Management (20 per cent). This should briefly explain the aim of the project, a clear summary and justification of the methods considered as well as an overview of the results.
Although, the Head of Randall’s Marketing Management team who will receive this summary is a competent business analytics practitioner, the majority of the other team members have little knowledge of statistical modelling and want to know nothing about the technical and statistical underpinning of the techniques used in this analysis. This report should be no more than two sides of A4 including graphs, tables, etc. In this report you should include all the objectives of this analysis, summary of data and results as well as your recommendations (if any).
Part B: A technical report on the various stages of the analysis (80 per cent).
The analysis should be carried out using the range of analytics tools discussed:
• SPSS Statistics
Ensure that the exercise references:
• Binary and multinomial logistic regression
• Linear vs Logistic regression
• Logit Model with odds Ratio
• Co-efficients and Chi Squared
• MLR co-efficients
• Assessing usefulness of MLR model
• Interpreting a model
• Assessing over-all model fit with Psuedo R-Squared measures
• Classification accuracy (Hit Ratio)
• Wald Statistic
• Odd ratio exp(B)
• Ratio of the probability of an event happening vs not happening
• Ratio of the odds after a unit change in the predictor to the original odds
• Assumptions
• Residuals analysis
• Cook’s distance
• DfBeta
• Adequacy (with variance inflation factor VIF and tolerance statistic)
• Outliers and influential points cannot just be removed. We need to check them (typo? – unusual data?)
• Check for multicollinearity
• Parsimony
Write a short and concise report to explain the technical detail of what you have done for each step of the analysis.
The report should also cover the following information:
• Any type of analysis that might be useful and check whether the main assumptions behind the analyses do not hold or cannot be
• Give evidence of the understanding of the statistical tools that you are using. For example, comment on the model selection procedure and the coefficient interpretation, e.g. comment on the interpretation of the logistic regression coefficients if such a method is used and provide an example of
• Conclusions and explanation, in non-technical terms, of the main points
View More
11.Credit card sales The National Association of Retailers reports that 62% of all purchases are now made by credit card;
...
de by credit card; you think this is true at your store as well. On a typical day you make 20 sales.
Show that this situation can be modeled by a binomial distribution. For credit, you must discuss each of the criteria required for a binomial experiment.
Define the random variable x in this scenario, using the context of the problem.
List all possible values of x for this situation.
On one trial for this scenario, what does “success” mean? Explain using the words of the problem.
What is the probability of success in this scenario?
What is the probability of failure in this scenario?
Probability Distribution Instructions¬¬¬¬
In Excel, create a probability distribution for this scenario.
Label Column A as “x” and Column B as “P(x).”
In Column A, list the numbers 0 to 15.
In Column B, use BINOM.DIST.RANGE to calculate the probability for each x value.
Highlight the probability cells, then right click and select Format Cells. Format the probability cells as “Number” and have Excel show 4 decimal places.
Create a probability histogram using the probabilities you calculated. Format and label it properly. Be sure to use the “Select Data” button to change the x-axis so it correctly lists the x-values.
View More
13.A GRAPHING CALCULATOR IS REQUIRED FOR THIS QUESTION.
You are permitted to use your calculator to solve an equation, find the
...
lve an equation, find the derivative of a function at a point, or calculate the value of a definite integral. However, you must clearly indicate the setup of your question, namely the equation, function, or integral you are using. If you use other built-in features or programs, you must show the mathematical steps necessary to produce your results. Your work must be expressed in standard mathematical notation rather than calculator syntax.
Show all of your work, even though the question may not explicitly remind you to do so. Clearly label any functions, graphs, tables, or other objects that you use. Justifications require that you give mathematical reasons, and that you verify the needed conditions under which relevant theorems, properties, definitions, or tests are applied. Your work will be scored on the correctness and completeness of your methods as well as your answers. Answers without supporting work will usually not receive credit.
Unless otherwise specified, answers (numeric or algebraic) need not be simplified. If your answer is given as a decimal approximation, it should be correct to three places after the decimal point.
Unless otherwise specified, the domain of a function f is assumed to be the set of all real numbers x for which f(x) is a real number.
Let f be a twice-differentiable function such that f′(2)=0 . The second derivative of f is given by f′′(x)=x2e2−x−1 for 0≤x≤6 .
(a) On what open intervals contained in 0
View More
15.I have a paper that is already too long depending on formatting (2 pages max), but I think I haven't
...
addressed everything I'm required to, so I need help condensing what I have and deciding whether there are key parts missing that I will need to add.
I don't exactly need help writing, but help shortening what I've written and deciding whether or not to write more.
I think the first step to getting this done is looking at the writing prompt and my essay and confirming which things I have already addressed sufficiently and which things are missing or incomplete.
Level of detail/clarity, flow, and transitions would probably be the second step. "Level of detail" is where I can hopefully shorten some parts while still sufficiently addressing what I need to.
But if you think a different approach or order is good, please let me know.
View More
16.To gain experience with the operations involving binary search trees. This data structure as linked list uses dynamic memory allocation
...
list uses dynamic memory allocation to grow as the size of the data set grows. Unlike linked lists, a binary search tree is very fast to insert, delete and search.
Project Description
When an author produce an index for his or her book, the first step in this process is to decide which words should go into the index; the second is to produce a list of the pages where each word occurs. Instead of trying to choose words out of our heads, we decided to let the computer produce a list of all the unique words used in the manuscript and their frequency of occurrence. We could then go over the list and choose which words to put into the index.
The main object in this problem is a "word" with associated frequency. The tentative definition of "word" here is a string of alphanumeric characters between markers where markers are white space and all punctuation marks; anything non-alphanumeric stops the reading. If we skip all un-allowed characters before getting the string, we should have exactly what we want. Ignoring words of fewer than three letters will remove from consideration such as "a", "is", "to", "do", and "by" that do not belong in an index.
In this project, you are asked to write a program to read any text file and then list all the "words" in alphabetic order with their frequency together appeared in the article. The "word" is defined above and has at least three letters.
Note:
Your result should be printed to an output file named YourUserID.txt.
You need to create a Binary Search Tree (BST) to store all the word object by writing an insertion or increment function. Finally, a proper traversal print function of the BST should be able to output the required results.
The BST class in the text can not be used directly to solve this problem. It is also NOT a good idea to modify the BST class to solve this problem. Instead, the following codes are recommended to start your program.
//Data stored in the node type
struct WordCount
{
string word;
int count;
};
//Node type:
struct TreeNode
{
WordCount info;
TreeNode * left;
TreeNode * right;
};
// Two function's prototype
// Increments the frequency count if the string is in the tree
// or inserts the string if it is not there.
void Insert(TreeNode*&, string);
// Prints the words in the tree and their frequency counts.
void PrintTree(TreeNode* , ofstream&);
//Start your main function and the definitions of above two functions.
Sample Run
Please type the text file name: Lincoln.txt
Please give the output text file name: mus11.txt
You are done! You can open the file "mus11.txt" to check.
Press any key to continue
------------------------------------------------------------------------------------------------------------------------------------------------
lincoln.txt---
The Gettysburg Address
Gettysburg, Pennsylvania
November 19, 1863
Four score and seven years ago our fathers brought forth on this continent, a new nation, conceived in
Liberty, and dedicated to the proposition that all men are created equal.
Now we are engaged in a great civil war, testing whether that nation, or any nation so conceived and
so dedicated, can long endure. We are met on a great battle-field of that war. We have come to dedicate
a portion of that field, as a final resting place for those who here gave their lives that that nation
might live. It is altogether fitting and proper that we should do this.
But, in a larger sense, we can not dedicate -- we can not consecrate -- we can not hallow -- this ground.
The brave men, living and dead, who struggled here, have consecrated it, far above our poor power to add
or detract. The world will little note, nor long remember what we say here, but it can never forget what
they did here. It is for us the living, rather, to be dedicated here to the unfinished work which they
who fought here have thus far so nobly advanced. It is rather for us to be here dedicated to the great
task remaining before us -- that from these honored dead we take increased devotion to that cause for
which they gave the last full measure of devotion -- that we here highly resolve that these dead shall not
have died in vain -- that this nation, under God, shall have a new birth of freedom -- and that government
of the people, by the people, for the people, shall not perish from the earth.
------------------------------------------------------------------------------------------------------------------------------------------------
mus11.txt
1863 1
Address 1
But 1
Four 1
Gettysburg 2
God 1
Liberty 1
November 1
Now 1
Pennsylvania 1
The 3
above 1
add 1
advanced 1
ago 1
all 1
altogether 1
and 6
any 1
are 3
battle-field 1
before 1
birth 1
brave 1
brought 1
but 1
can 5
cause 1
civil 1
come 1
conceived 2
consecrate 1
consecrated 1
continent 1
created 1
dead 3
dedicate 2
dedicated 4
detract 1
devotion 2
did 1
died 1
earth 1
endure 1
engaged 1
equal 1
far 2
fathers 1
field 1
final 1
fitting 1
for 5
forget 1
forth 1
fought 1
freedom 1
from 2
full 1
gave 2
government 1
great 3
ground 1
hallow 1
have 5
here 8
highly 1
honored 1
increased 1
larger 1
last 1
little 1
live 1
lives 1
living 2
long 2
measure 1
men 2
met 1
might 1
nation 5
never 1
new 2
nobly 1
nor 1
not 5
note 1
our 2
people 3
perish 1
place 1
poor 1
portion 1
power 1
proper 1
proposition 1
rather 2
remaining 1
remember 1
resolve 1
resting 1
say 1
score 1
sense 1
seven 1
shall 3
should 1
struggled 1
take 1
task 1
testing 1
that 13
the 9
their 1
these 2
they 3
this 4
those 1
thus 1
under 1
unfinished 1
vain 1
war 2
what 2
whether 1
which 2
who 3
will 1
work 1
world 1
years 1
View More