Customer Order Example
ORDER NO: 61384 ORDER DATE: 9/24/2014
CUSTOMER NO: 1273
CUSTOMER NAME: CONTEMPORARY DESIGNS
CUSTOMER ADDRESS: 123 OAK ST.
CITY STATE ZIP: AUSTIN, TX 28384
PRODUCT QUANTITY UNIT EXTENDED
NO DESCRIPTION ORDERED PRICE PRICE
M128 BOOKCASE 4 200.00 800.00
B381 CABINET 2 150.00 300.00
R210 TABLE 1 500.00 500.00
TOTAL 1600.00
Normalize this user view. Make sure to show your work for each view – you should have 4 answers (e.g. Unnormalized, First Normal Form (1NF), Second Normal Form (2NF) and Third Normal Form (3NF). It is possible that some tables will be in 3NF without any changes to their 2NF status. You may just note that in your response. Also make sure to follow good DBDL protocol by capitalizing the relation name, putting attributes in parenthesis and underlining primary keys.
.
In: Computer Science
Review and evaluate the 2017 HIMSS Security Survey. Discuss recent trends. In your opinion, what emerging threats are most concerning and why?
In: Nursing
Once you are in the Linux environment, perform the following steps:
For this submission, you will write a BASH shell program that meets the following requirements:
In: Computer Science
I need the c# code for the below assignment.
Complete PigLatin program in Windows Forms GUI. Zip the solution project file and attach to this submission. Do this in the GUI format (Windows Form). Be sure and add a Clear Button to reset for entering another word or words.
PigLatinGUI
Basic Steps in Creating your Program
Your program assignment
Pig Latin is a nonsense language. To create a word in pig Latin, you remove the first letter and then add the first letter and “ay” at the end of the ford. For example, “dog” becomes “ogday” and “cat” becomes “atcay”. Write a program named PigLatin that allows the user to enter a word and display’s the pig Latin version.
For words which begin with vowel sounds or silent letter, one just adds "yay" to the end. Examples are:
Another less common way some speakers may use a different ending for words starting with vowels is adding "way" (or "wa") to the end. Examples are:
You could use the split command to enter more than one word. Indicating delimiters
char[] delimiterChars = { ' ', ',', '.', ':', ';', '\t' };
string[] words = text.Split(delimiterChars);
In: Computer Science
Write a denotational semantics for do-while loop
In: Computer Science
1. Explain how rules are used to facilitate communication.
2. Explain the role of protocols and standards organizations in facilitating interoperability in network communications.
3. Explain how devices on a LAN access resources in a small to medium-sized business network.
In: Computer Science
PESTLE Analysis for Apple Air Pods to enter Vietnam (As if it hadn't yet)
In: Operations Management
What characteristics define a "high-risk" population? Provide examples of at least three "high-risk" populations and describe how they meet the characteristics.
Provide short answers of 100-150 words for the following question. Do not exceed 200 words for your response. Include a minimum of one scholarly resource in addition to the course textbook.
In: Psychology
In: Finance
The last digit of a credit card number is the check digit, which protects againts transaction errors. The following method is used to veryfy credit card numbers. For the simplicity we can assume that the credit card has 8 digits instead of 16. Follwing steps explains the algorithm in determining if a credit card number is a valid card. Starting from the right most digit, form the sum of every other digit. For example, if the credit card is number is 43589795 then you form the sum 5+7+8+3 = 23 2 Double each digit that we have not included in the preceding step. Add all digits of resulting numbers. For example, with the number given above, doubling the digits starting with next to last one, yields 18, 18, 10, 8. Adding all digits in these values yield 1+8+1+8+1+0+8 = 27 Add sum of the two preceding steps. If the last digit of the result is zero, then the number is valid number Write a Java program that implements this algorithm (Designing your solution and perhaps wring the algorithm in pseudocode might be helpful). Your program should ask the user 8 digit credit card number and the printout if the credit card is valid or invalid card Grading Criteria: a) The correctness of your program/solution b) Variable naming (self describing) c) Identification of proper data type and constants (if applicable) d) Appropriate commenting and Indentation.
In: Computer Science
In: Finance
Question:
Use Eclipse to create a clockType with hr, min, sec as private members.
You shall have 3 files: clock.h clock.cpp and lab1main.cpp
lab1main.cpp shall support the following statements:
clockType c1(15, 45, 30), c2(3, 20); // hour, min, sec
cout << c1; // add whatever to beautify it
cout << c2;
cout << c1+c2;
c2 = c1+c1;
cout << c2;
Need help please!
In: Computer Science
To do this in C++ preferably not in a class but if not possible do in a class.
Assignment Specifications
Your assignment is to write a single-player version of the casino card game Blackjack, also known as 21. The goal of the game Blackjack is to get cards whose total value comes closest to 21 without going over. Getting a card total over 21 is called "busting". The player will play against the dealer. There are 3 possible outcomes.
Player comes closer to 21 than the dealer or the dealer busts but the player did not bust -> player wins the bet amount.
The dealer comes closer to 21 than the player or the player's total exceeds 21 -> player loses. Note if both the player and the dealer bust, then the dealer wins. This is called the "house advantage".
Both player and dealer have the same total and neither player busts -> tie, no money is exchanged.
At each round of play, the player will be asked to enter their bet. They will then be given 2 cards. The player will repeatedly be asked if they want to draw another card. The player can continue to draw cards while their total is less than 21. After the player's turn is over, the dealer's cards are shown. The dealer's play is always the same: the dealer will continue to draw cards if their total is less than or equal to 16.
A sample run is shown below. Assume the player starts with $100 and the game ends when the player is down to $0 or their amount exceeds $1,000. Also note the user is prompted to re-enter their bet amount if they try to bet more than they actually have.
Programming instructions
Your program should have a function called draw_card that draws a random card. The function should get a random number between 1 and 13 to determine the rank of the card and another number between 1 and 4 to determine the suite of the card. The card of rank 13 corresponds to a king, the card of rank 12 corresponds to a queen, the card of rank 11 corresponds to a jack and card of rank 1 is an ace. In blackjack face cards (Jack, Queen, King) all count as 10 points towards the card total. The function should return the value of the card to be added to the point total. Aces can be either 11 (high) or 1 (low), depending on which is more advantageous to the player to come closest to 21 without going over. The card variable will contain the description of the card such as "Two of diamonds" or "King of hearts".
You should also have a getSuit and getRank function that takes as input an int that corresponds to a Rank or Suit and returns the string version of that rank or suit. For example, rank 10 would have to return “Jack”. Suit 3 would return “hearts”.
Note: Your rand values should have spades = 0, clubs = 1, diamonds = 2, and hearts = 3.
You should seed srand(333)
Note: In your main you should have a variable that keeps track of the current total for the player and another variable that keeps track of the current total for the dealer. When the draw card function is called you should pass to it a string variable called card and the current total. Your function draw_card will return the value of the card it draws and this value should be added in main to the current total. Note that the total is only used in this function to decide if ace should count as high or low. This function does not return the total! It returns the value of the card that was drawn. You are responsible for adding this value to the total in main. When you call the function draw_card you will also pass it a string called card. After calling the function draw_card this variable card will now have the description of the card, something like "Three of diamonds". Do not output anything in the function draw card! All output should be done in main.
//-------------------------------------------------------------------
// draw_card()
// Uses rand() to draw a card then returns the numerical
// value and card name
//-------------------------------------------------------------------
int draw_card(string &card, //IN - card name
int drawer_points); //IN - drawer's total points
/****************************************************************
*
* draw_card()
*_______________________________________________________________
* Simulates the drawing of a card. Passes by reference the
* kind of card (value and suite in string value) as well as
* returns the card's equivalent numerical value (to be added
* to totals in main())
* Also reads current drawer's points to determind value of
* aces
*_______________________________________________________________
* PRE-CONDITIONS:
* &card : passes card info
* drawer_points : reads current drawer's points to determine
* value of ace
*
* POST-CONDITIONS:
* passes card info by reference, returns card numerical value
****************************************************************/
int draw_card (string &card, //card info
int drawer_points) //current drawer's points
Note: You do not need to account for cases where you draw a 3 and then an Ace giving you a total of 14 (Ace counts here as 11) and then you draw a Queen giving you a total of 24. In real Blackjack you would now revert the Ace back to 1 giving you a total of 14. However, this is too complicated and we will not deal with this issue. Once Ace has been counted as 11 it will stay as 11.
Things to test for:
Player busts
Dealer busts
Player loses all his money (Game Over)
Player wins (total is more than $1000)
Program halts when appropriate
FAQ
Q: Can the same card come up multiple times?
A: Yes. We will assume that the dealer uses multiple decks so for instance a four of clubs can come up many times in the same hand.?
Q: What happens if the player gets 21 does he automatically win?
A: In real blackjack rules the dealer gets to draw even if the player has gotten a 21. If the dealer also gets a 21 then it is considered a draw.
Example Run
You have $100. Enter bet:
50
Your cards are:
Ten of Clubs
Ace of Spades
The dealer's cards are:
King of Hearts
Seven of Clubs
The dealer's total is 17.
You win $50.
Play again? (y/n):
y
You have $150. Enter bet:
50
Your cards are:
Seven of Clubs
Jack of Hearts
Your total is 17. Do you want another card (y/n)?
n
The dealer's cards are:
Queen of Spades
Two of Diamonds
The dealer's total is 12.
The dealer draws a card.
Five of Diamonds
The dealer's total is 17.
A draw! You get back your $50.
Play again? (y/n):
y
You have $150. Enter bet:
50
Your cards are:
Nine of Clubs
Queen of Spades
Your total is 19. Do you want another card (y/n)?
y
You draw a:
Five of Clubs
Your total is 24. You busted!
Play again? (y/n):
y
You have $100. Enter bet:
100
Your cards are:
Ace of Spades
Three of Diamonds
Your total is 14. Do you want another card (y/n)?
y
You draw a:
Eight of Hearts
Your total is 22. You busted!
You have $0. GAME OVER.
Example
The dealer's cards are:
Two of Clubs
Four of Diamonds
The dealer's total is 6.
The dealer draws a card.
Three of Hearts
The dealer draws a card.
Two of Clubs
The dealer draws a card.
Nine of Spades
The dealer's total is 20.
Too bad. You lose $40.
In: Computer Science
What are the popular connecters for video?
In: Computer Science
A. Harrimon Industries bonds have 5 years left to maturity. Interest is paid annually, and the bonds have a $1,000 par value and a coupon rate of 9%. What is the yield to maturity at a current market price of $816? Round your answer to two decimal places. % $1,151? Round your answer to two decimal places. % Would you pay $816 for each bond if you thought that a "fair" market interest rate for such bonds was 13%—that is, if rd = 13%? You would not buy the bond as long as the yield to maturity at this price is greater than your required rate of return. You would not buy the bond as long as the yield to maturity at this price is less than the coupon rate on the bond. You would buy the bond as long as the yield to maturity at this price is greater than your required rate of return. You would buy the bond as long as the yield to maturity at this price is less than your required rate of return. You would buy the bond as long as the yield to maturity at this price equals your required rate of return.
B.
An investor has two bonds in his portfolio that have a face value of $1,000 and pay a 10% annual coupon. Bond L matures in 19 years, while Bond S matures in 1 year.
6% | 8% | 11% | |
Bond L | $ | $ | $ |
Bond S | $ | $ | $ |
In: Finance