One million tickets are sold for a raffle. If you purchase 10 tickets, find your odds against winning(odds of losing).

A. The odds against winning are 1 : 1,000,000.
B. The odds against winning are 1,000,000 : 1.
C. The odds against winning are 1 : 99,999.
D. The odds against winning are 999,999 : 10.
E. The odds against winning are 99,999 : 1.


Answer: E

Computer Science & Information Technology

You might also like to view...

Write a program that inputs a value for N and outputs how many chocolate bars we can eat and how many coupons we would have leftover. Use a loop that continues to redeem coupons as long as there are enough to get at least one chocolate bar.

Suppose we can buy a chocolate bar from the vending machine for $1 each. Inside every chocolate bar is a coupon. We can redeem 6 coupons for one chocolate bar from the machine. This means that once you have started buying chocolate bars from the machine, you always have some coupons. We would like to know how many chocolate bars can be eaten if we start with N dollars and always redeem coupons if we have enough for an additional chocolate bar. For example, with 6 dollars we could consume 7 chocolate bars after purchasing 6 bars giving us 6 coupons and then redeeming the 6 coupons for one bar. This would leave us with one extra coupon. For 11 dollars, we could have consumed 13 chocolate bars and still have one coupon left. For 12 dollars, we could have consumed 14 chocolate bars and have two coupons left. Students often attempt this problem by trying to find a simple formula instead of simulating the process in a loop. This also makes a good problem to re-do later after

Computer Science & Information Technology

You can remove a row of data in an Excel spreadsheet by:

A) right-clicking anywhere in the row and pressing the Delete key. B) selecting the data in the row, double-clicking, and then selecting Delete from the shortcut menu. C) selecting the data in the row, right-clicking, and then selecting Delete from the shortcut menu. D) double-clicking anywhere in the row and pressing the Delete key.

Computer Science & Information Technology

Which of the following commands can be used to back up files in case of system failure, supports long filenames, and can also back up device files?

A. diskdup B. bkup C. cpio D. sysbackup

Computer Science & Information Technology

An example of the Software Engineering principle of Data Hiding would be a variable placed in the global declaration of the program.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology