1.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
4.Above is 2 years and 4 months of actual demand data for a new call center. For example, cell
...
resenets 12,380 calls received in January 2019. Using this data, create two different models for demand forecasting. One combining Exponential Smoothing with Trend, and one combing Exponential Smoothing with both Trend and Seasonality. Ensure you conduct some type of error analysis and try to input adjust factors (such as Alpha) to minimize error. Please clearly indicate at the top of your sheet your selected value for factors (Alpha, Beta, Gamma) and the error analysis metric name and value. In the space below, indicate which model has less error and what you believe that indicates is true about the underlying demand pattern.
View More
5.11. In a game, you draw thirteen cards with replacement from a deck of playing cards. If you draw any
...
y aces or twos, you lose the game immediately. You also lose if you draw picture cards(J,Q,K) more than twice. In this question, you’ll study the probability of winning this game.(a) What is the probability of drawing no aces or twos after thirteen draws?(b) Given you have drawn thirteen times, none of which is aces or twos, what is the probability that you draw at most two picture cards?(c) What is the probability to win this game?
12. Suppose you are tossing an unbiased coin for100times.(a) What is the probability of getting50heads and50tails?(b) LetXbe the random variable counting the number of heads you observe in this exper-iment. What is the expected value ofX? What is the variance ofX? What is thestandard deviation ofX?
13. The following are probability distributions for two random variablesX,Y.
kPr(X=k)
0,0.4
1,0.3
2,0.3
kPr(Y=k)
0,0.5
1,0.3
2,0.2
(a) Construct the probability distribution table for the random variableXY.(b) Find E[X],E[Y] and E[XY]. Is is true that E[XY] =E[X]E[Y]?(c) Find the variances σ2X,σ2Y,σ2XY of X,Y and XY. Is it true that σ2XY=σ2Xσ2Y?
14. The aliens who are fond of gambling came back to play another game with you. In this game, you first toss a coin5times. If you observe3or fewer tails, you roll a die3times. If youobserve4or more tails, you roll a die20times. What is the probability that you end up with at most two6’s in your dice rolls?
15. (Challenge question, worth2points) You have two bags, each of which contains10marbles.Each time you remove a marble from a random bag. What is the probability that after one of the bags is emptied, there are still exactly3marbles in the other bag?
View More
8.Exercise 4) A fair coin is tossed. If it lands heads, a fair four-sided die
is thrown (with values 2,3,4,7). If
...
2,3,4,7). If it lands tails, a fair six-sided die is
thrown (with values 3,4,5,6,7,9). Regardless of which die is used, Alice
eats n grains of rice, where n is the largest prime factor of the die result
(for example, the largest prime factor of 9 is 3).
(a) What is the conditional probability that the coin lands heads, given
that Alice eats three grains of rice?
(b) Suppose that the entire experiment is conducted twice on the following day (starting with a new coin toss on the second run-through).
What is the conditional probability that the coin lands heads on both
run-throughs, given that Alice eats a total of five grains of rice during the two run-throughs?
(Do not count the two grains from part (a) in part (b); we assume
two brand new experiments, each with a new coin toss. Start your
solution by defining a suitable partition of the sample space. Please
use an appropriate notation and/or justification in words, for each
value that you give as part of your solution.)
Exercise 5) Alice and Bob throw an unfair coin repeatedly, with probability 2/5 of landing heads. Alice starts with £2 and Bob starts with £3 .
Each time the unfair coin lands heads, Alice gives Bob £1 . Each time
the unfair coin lands tails, Bob gives Alice £1 . The game ends when one
player has £5 .
(a) Draw a labelled Markov chain describing the problem, and write
down a transition matrix P. Write down the communication classes,
and classify them as either recurrent or transient.
(b) Using the transition matrix, calculate the probability that Alice loses
all of her money in exactly four tosses of the unfair coin.
(c) Calculate the (total) probability that Alice loses all of her money
(before Bob loses all of his).
(d) Calculate the expected (mean) number of tosses of the unfair coin,
for the game to end.
View More
18.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
20.I have 5 questions I am stuck on. Please help!
1. Enter the correct answer in the box.
Facundo crochets and sells
...
chets and sells baby blankets, b. Each blanket requires 3 skeins of yarn, and the total number of skeins Facundo uses, y, varies directly as the number of blankets he crochets, b.
Write an equation that models this relationship.
2. The weight of an object, w, varies inversely as the square of its distance from the center of Earth, d. When an astronaut stands in a training center on the surface of Earth (3,960 miles from the center), she weighs 155 pounds. To the nearest tenth of a pound, what will be the approximate weight of the astronaut when she is standing on a space station, in orbit 240 miles above the training center?
3. The square of g varies inversely as h. When g = 16, h = 2. What is the value of h when g = 40?
4. The number of days, d, it will take Manny to read a book varies inversely as the number of pages, p, he reads per day. If k is the constant of variation, which equation represents this situation?
5. The battery life for Bruhier’s cell phone is longer when he has fewer apps running. When only one app is running, the battery will last for 16 hours. When four apps are running, the battery will only last for 4 hours.
View More
21.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
23.Consider the following LP, where the value of has not yet been ascertained
maxz = c1x + y
s. t .
...
t . 2x + 2y ≤ 12
2x + 4y ≤ 10
x ≥ 0,y ≥ 0
(a) What value of will result in a unique optimal solution to this LP and what is the corresponding optimal solution? You need to give a comprehensive answer.
(b)What value of will result in infinitely many solutions to this LP? You need to give a comprehensive answer.
(c) What value will result in no optimal solution to this LP? You need to give a comprehensive answer.
View More
26.A colleague describes to you an engineering diagram (not pictured) that shows a long, straight wire carrying a current of
...
carrying a current of 3.77 A from the bottom of the page to the top, where a negative value indicates that the current is actually from the top of the page to the bottom. To the right of the first current is a circular current of 6.57 A in the counterclockwise sense, where a negative value indicates that the current actually flows in the clockwise sense. The radius of the circular current loop is 4.00 mm, and its center is 5.00 mm from the long, straight wire. What is the component of the magnetic field in the direction out of the page at the center of the circular current loop? As is very often the case, drawing the diagram is apt to help.
View More
27.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
31.I need help with this task: The company you work for has the following cash flow: NOK 10,000 in one
...
year, NOK 15,000 in two years and NOK 40,000 in five years.
a) What is the present value of the company's cash flow if you use a discount rate of 10%?
b) You read that an investment in team-building, which costs NOK 10,000, can give more motivated employees and increase sales. The increase in sales results in the following cash flow: NOK 2,000 in 1 year, NOK 7,000 in 2 years and NOK 5,000 in 5 years. Should you make this investment in team-building?
View More
32.Hi, I need help setting up a simple formula in a Google Sheets spreadsheet.
The spreadsheet is hosted and
...
sted and I can see any changes in realtime. What I need is to take the duration in cells A2:A1000 and factor the dollar value in corresponding cells B2:B1000 in a way that causes the average amount earned per hour to calculate in cell D2. I'd appreciate a bit of help here, and I;d prefer if you could just plug the formula directly into cell D2 using the link below.
The link to the editable document is:
https://docs.google.com/spreadsheets/d/1lEJIPiSZJk9LYUTSA4oeDwyLXCVd18Zdewm6gnjxcXo/edit?usp=sharing
Thanks!
View More
33.Hi, I need help setting up a simple formula in a Google Sheets spreadsheet.
The spreadsheet is hosted and
...
sted and I can see any changes in realtime. What I need is to take the duration in cells A2:A1000 and factor the dollar value in corresponding cells B2:B1000 in a way that causes the average amount earned per hour to calculate in cell D2. I'd appreciate a bit of help here, and I;d prefer if you could just plug the formula directly into cell D2 using the link below.
The link to the editable document is:
https://docs.google.com/spreadsheets/d/1lEJIPiSZJk9LYUTSA4oeDwyLXCVd18Zdewm6gnjxcXo/edit?usp=sharing
Thanks!
View More
40.ATTACHED ARE GRAPHS
QUESTION 1
Q1 to Q4
The job satisfaction for the four occupational groups were used (lawyer, physical therapist, cabinetmakers, and
...
oups were used (lawyer, physical therapist, cabinetmakers, and system analysts). The results obtained for a sample of 5 individuals from each groups. Using the "ANOVA Output" below, please answer the following questions ( Use the significance level 5%).
Q1. The value of the test statistic is ____________
QUESTION 2
Q2. The p- value of the test is _________________
QUESTION 3
Q3. At the 5% significance level, the null hypothesis is rejected if the value of the F statistics is >= _________________
QUESTION 4
Q4. Interpret the ANOVA result at the 5% significance level. Is there any difference in the job satisfaction among the four occupational groups? Answer either yes or no. Explain the reason of your answer statistically.
QUESTION 5
Data from a Trucking Company is Southern California were utilized to examine the relationship among total daily travel time (y), miles to traveled (X1), and the number of deliveries (x2). Based on the "Regression Output" below, please answer the following questions.
Q5. The number of sample used in this regression analysis is______________
QUESTION 6
Q6. What is the value of the coefficient of determination?
QUESTION 7
Q7. What is the F test statistic value for the regression model significane test?
QUESTION 8
Q8. What is the predicted travel time for X1 =95, and X2= 6?
QUESTION 9
Q9. Is X2 (number of deliveries) related to Y (travel time)? Answer either yes or no. Explain the reason of your answer statistically.
ATTACHED ARE GRAPHS
View More
43.Calculating the % an object(A square) is overlapping with another(the screen, a rectangle)
Making a tilebased game,
2D rectangle tiles with a
...
a tilebased game,
2D rectangle tiles with a size of 5000X5000 pixels per rectangle.
I make every rectangle know the 4 neighbouring rectangles in the map so starting from one you can generate an essentially infinite map.
I want to move this map around instead of moving the player around, the player stays centered on screen and since the map moves under him it looks like he's the one doing the moving.
So I know the following things:
Width and height of a single section:
5000X5000 pixels
the x and y location of the center section can be a value anywhere from -5000,-5000 to 5000,5000
The visible screen real estate is 1920 X 1080 pixels big
0X,0Y always stars top left, bottom right is 5000X5000
What I need to end up with:
A percentage value of howmuch this specific section is visible on screen, "inside the rectangle that is the scfeen)
View More
46.2. If the mean of the numbers 9, 10, 11, 12, and x is 12, what is the value
...
s of a sports drink contains 130 milligrams of sodium, what is the total number of milligrams of sodium in 20 ounces of the sports drink?
5. If (k, 3) is a point on the line whose equation is 4x + y = -9, what is the value of k?
9. A flagpole casts a shadow 200 feet long. At the same time, a boy standing nearby who is 5 feet tall casts a shadow 20 feet long. Find the number of feet in the height of the flagpole.
22. What is the greatest value of c for which the roots of the equation x^2 + 4x + c = 0 are real?
24. Find the two acute angles in the right triangle whose sides have the given lengths. Express your answers using degree measure rounded to two decimal places.
7, 24 and 25
A._________________ (smaller value)
B._________________ (larger value)
View More
47. 1. What is the greatest value of c for which the roots of the equation x^2 + 4x +
...
2. Find the two acute angles in the right triangle whose sides have the given lengths. Express your answers using degree measure rounded to two decimal places.
A._______________________ (Smaller Value)
B. _______________________ (Larger Value)
3. A flagpole casts a shadow 200 feet long. At the same time, a boy standing nearby who is 5 feet tall casts a shadow 20 feet long. Find the number of feet in the height of the flagpole.
4. If (k, 3) is a point on the line whose equation is 4x + y = -9, what is the value of k?
5. If 8 ounces of a sports drink contains 130 milligrams of sodium, what is the total number of milligrams of sodium in 20 ounces of the sports drink?
6. If the mean of the numbers 9, 10, 11, 12, and x is 12, what is the value of x?
View More
49.Consider the following hash function, similar to hash functions discussed in class.
unsigned Hash( const string &
...
Hash( const string & key, const int h_size )
{
unsigned int value = 0;
for ( int i=0; i
View More
50.
Value: 1
equation image indicator
a. (x - 2)2(x - 3)2
b. (x2+ 4)(x2+ 9)
c. (x - 2)(x +
...
2)(x - 3)(x + 3)
d. (x2 - 4)(x2+ 9)
Value: 1
The table below shows the cost of purchasing a standard stapler at five office supply stores, A through E. If the median cost of purchasing a standard stapler for these stores was $17.99, which of the following could NOT have been the cost of the stapler for Store A?
staplergraph.jpg
a. $19.95
b. $18.95
c. $16.95
d. $19.25
Value: 1
If equation image indicator then x =
a. 7
b. 1/5
c. 5
d. 1/7
Value: 1
A six−sided die, with sides numbered 1,2, 3,4,5, and 6, is tossed. What is the probability of tossing a number less than three?
a. 1/3
b. 0
c. 1/2
d. 1/4
Value: 1
If 6m + 4 = 8m, then 4m =
a. 6
b. 2
c. 8
d. 4
Value: 1
In the xy-plane, what is the y-intercept of the graph of the equation equation image indicator?
a. 2
b. 4
c. 16
d. There is no y-intercept.
Value: 1
Which of the following equations has both 2 and −4 as solutions?
a. x2 + 6x + 8 = 0
b. x2 - 2x - 8 = 0
c. x2 + 2x - 8 = 0
d. x2 - 2x + 8 = 0
Value: 1
The perimeter of a square is 20 ft. If you increase the length of the square by 2 feet and decrease the width by 1 foot, what is the area, in square feet, of the new figure?
a. 22
b. 28
c. 35
d. 40
Value: 1
(3x-2y4)-3 =
a. equation image indicator
b. equation image indicator
c. equation image indicator
d. equation image indicator
Value: 1
A softball is tossed into the air upward from a first floor balcony. The distance of the ball above the ground at any time is given by the function, distance function.png, where h(t) is the height of the softball above the ground (in feet) and t is the time (in seconds). What was the maximum height, in feet, of the softball above the ground after it was thrown?
a. 28
b. 30
c. 32
d. 34
Value: 1
A group of 100 people, some students and some faculty, attended a museum opening. Each student paid $10 per person for entrance to the museum and each of the faculty paid $25 per person for entrance. If the total paid, for all 100 people, was $1300, how many students attended the museum opening?
a. 20
b. 50
c. 70
d. 80
Value: 1
The ratio of Sam's age to Hank's age is 5 to 3. If the sum of their ages is 24, how old is Hank?
a. 21
b. 15
c. 19
d. 9
Value: 1
In the xy−coordinate plane shown below, point P has coordinates (8, −6). Which of the following is an equation of the line that contains points O and P?
O and P graph.jpg
a. equation image indicator
b. equation image indicator
c. equation image indicator
d. equation image indicator
Value: 1
The variables x and y are inversely proportional, and y = 2 when x = 3. What is the value of y when x = 9?
a. 54
b. 6
c. 2/3
d. 3/2
Value: 1
A farmer has 1235 trees to be planted on a rectangular parcel of land. If there are 24 trees planted in each row and each row must be complete before it is planted, how many trees will be left over after planting?
a. 21
b. 11
c. 0
d. 55
View More
53.Question 1: suppose the dealer has an an Ace showing, you have a 3 and an 8 in your hand,
...
r player at the table is showing a 5 and 6. Compute the expected value of a one-dollar insurance bet under these circumstances
Question 2: Suppose that( perhaps after being hit one or more times) you have cards addings up to 18. Using the table provided in these notes, compute the probability that you will lose, and the probability that you will tie.
Question 3: The "Royal Hand" consists of King and Queens of the same suit. Compute the probability of being dealt a Royal Hand in the first two cards.
Question 4: Compute the probability that you will initially be dealt two cards adding up to exactly 20. ( First think about how many ways two cards can up to 20 in blackjack.)
Question 5: You have two 9s in your hand. The dealer is showing a 7, and the only other player at the table is sowing a King and a 9. If you ask to be hit, what is the probability that you will bust on the next card?
View More
1.AU MAT 120 Systems of Linear Equations and Inequalities Discussion
mathematicsalgebra Physics