Questions
Customer Order Example ORDER NO: 61384                                    &

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...

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: Set an environment variable for...

Once you are in the Linux environment, perform the following steps:

  • Set an environment variable for USER that holds the value of your name.

For this submission, you will write a BASH shell program that meets the following requirements:

  • Clear the screen.
  • Display to the user what the program will do and that the program is starting.
  • Display to the user the string “Hello“ and the value of the USER environment variable.
  • Output a blank line.
  • Display to the user a sentence to include the actual date of the day that it is when you run the program.
  • Output another blank line.
  • By using the Cut command, obtain the USER value and output only the first field, along with a sentence about who the user is.
  • Output another blank line.
  • Display to the user the uname value with a –s option, as well as the –m option to show the processor for the system.
  • Output another blank line.
  • Display to the user a sentence that includes the actual uptime of the system that you are running the program on.
  • Output another blank line.
  • Display a goodbye message to the user.
  • End the program.

In: Computer Science

I need the c# code for the below assignment. Complete PigLatin program in Windows Forms GUI....

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

  1. Create your user interface (GUI). Use different font styles but don’t overdo it, Use colors, and Use graphics (You can find all kinds of graphics for the images pizzas). Add the controls you will use for your program. You could use picture boxes, buttons, labels, combo box, radio buttons, option box and any other controls that might help in the presentation of GUI. The book has an example of what the GUI could look like, but be creative and make your own GUI.
  2. Set the names of all controls. (for example, if you have a list box or label it could be txtNumber). Follow the naming convention (camel casing) for naming controls.
  3. Now you are ready to write the code that will be executed by events at run time. You will probably have a button or other picture box control that you will click on at runtime. Double Click it and you will be taken to the code window where you can write code inside of the control code event handler.
  4. Run and debug your program, making sure all parts work correctly. Consider data validation for the input information. As you advance to more complicated programs you will be given various ideas on validating input.
  5. Remember to document your code with comments included in your code statements in the code window.

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:

  • "eat" → "eatyay"
  • "omelet" → "omeletyay"
  • "are" → "areyay"

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:

  • "egg" → "eggway"
  • "inbox" → "inboxway"
  • "eight" → "eightway"

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

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...

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)

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...

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

Ceteris paribus, if a firm’s tax rate is 35%, an decrease of $1200 in interest expense...

Ceteris paribus, if a firm’s tax rate is 35%, an decrease of $1200 in interest expense would result in a change in net income of $_____ and in a change in cash of $ _____.

In: Finance

The last digit of a credit card number is the check digit, which protects againts transaction...

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

Assume the following: Cash Flow From Assets = Minus $15; Interest payments = $30; Dividends paid...

Assume the following: Cash Flow From Assets = Minus $15; Interest payments = $30; Dividends paid = $25; The firm issued and sold additional stock in the amount of $30. This firm (increased) (reduced) its long-term debt in the amount of $_____.

In: Finance

Question: Use Eclipse to create a clockType with hr, min, sec as private members. You shall...

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...

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?

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...

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.

  1. What will the value of the Bond L be if the going interest rate is 6%, 8%, and 11%? Assume that only one more interest payment is to be made on Bond S at its maturity and that 19 more payments are to be made on Bond L. Round your answers to the nearest cent.
    6% 8% 11%
    Bond L $   $   $  
    Bond S $   $   $  
  2. Why does the longer-term bond’s price vary more than the price of the shorter-term bond when interest rates change?
    1. The change in price due to a change in the required rate of return increases as a bond's maturity decreases.
    2. Long-term bonds have greater interest rate risk than do short-term bonds.
    3. The change in price due to a change in the required rate of return decreases as a bond's maturity increases.
    4. Long-term bonds have lower interest rate risk than do short-term bonds.
    5. Long-term bonds have lower reinvestment rate risk than do short-term bonds.

In: Finance