Virtual University VU Solved Assignments/Quizzes/GDBs, Past Solved Papers/Assignments/Online Quizzes Solutions.

Friday, June 18, 2010

cs101 assignment 4 solution



solution:

 

The following can help explain the concept of algorithms in relation to programming.

Problem: Calculate the average of three given numbers.
Let the given numbers be a, b, c
Step 1: Set aside memory for all values (a, b, c,)
Step 2: Assign the values to a memory location (the given numbers)
Step 3: Calculate the average of the values using the formula (a+b+c)/3
Step 4: Display the answer in the proper format, in this case the average.
The problem statement is programmatically solved with the use of four steps in the algorithm.

Problem:Find the gain or loss of an item, as the case may be, and compute the gain or loss percentage, given the cost price and the selling price.

Gain = S.P. (sell price) - C.P (cost price).
Gain % = (Gain * 100)/C.P.
Loss = C.P. - S.P.
Loss % = (Loss * 100)/C.P.
(Percentage gain or loss is calculated on the C.P.)

Algorithm:
Step 1: Obtain the values of S.P. and C.P. Set aside memory for S.P. and C.P., gain percent and loss percent.
Step 2: Assign values to memory location.
Step 3: Perform mathematical computations.
Step 4: Display results in the proper format.

If C.P. = S.P, then
Declare "There is neither gain nor loss in the transaction"
Stop
If S.P. > C.P., then
Calculate Gain = S.P - C.P
Calculate Gain % = (Gain * 100)/C.P
Write "Answer: Gain is $" followed by value of Gain
Write "Answer: Gain % is" followed by value of Gain %
Stop
Else
Calculate Loss = C.P. - S.P
Calculate Loss % = (Loss * 100)/C.P.
Write "Answer: Loss is $" followed by value of Loss
Write "Answer: Loss % is" followed by values of Loss %
Stop


The algorithm is executed in order, starting with Step 1:
In step 1, we set aside memory locations for S.P. and C.P
In step 2, we assign the numerical values of S.P. and C.P. to the memory locations.
In step 3, the answer to the phrase If C.P. - S.P. could be yes or no. If the answer is yes, then only the instructions following the word "then" are executed.
In step 3, if the answer to the phrase S.P. > C.P. is yes, then steps to a to e before else are executed. If the answer to S.P. > C.P. is no, implying that C.P. >= S.P., steps a to e after else are executed.
Step 4 is the last in the process. The result of the computations is displayed and the algorithm is terminated after its execution.

Words such as "IF", "THEN", and "ELSE are used to emphasize their distinctive nature in executing the algorithm.
Flowcharts

When thinking of a Flowchart think of a visual representation of how a process works, depicting the sequence of steps at a minimum. A flowchart offers many advantages including the following.
Helps locate the key elements of a process. It draws clears lines between the end of one process and the start of another.
Brings clarity and improvement to a process.
Helps identify appropriate areas for improvement in a program.

The following shows a format of a sample flowchart that identifies the starting and ending points of a sequential process with decision points.

 

 

Flowcharts depict different types of actions and steps in a process through special shapes. The sequence of steps and the relationships between these steps is shown using arrows. The following is a list of the different shapes in a flow chart and what they represent.

The following shows the flowchart of gain and loss for a business.

 Pseudocode

Pseudocode, aka false code, is an informal language for relating problem solving steps. The steps used in pseudocode are simple and can be implemented with ease into any programming language. Pseudocode uses a combination of English words, mathematical notations, and a set of capitalized keywords such as BEING, END, READ, PRINT, FREAD, FPRINT, IF, ELSE, ELSEIF, ENDIF, WHILE, DO and ENDWHILE.

Pseudocode consists of:
Fundamental control structures such as Sequence, Selection and Repetition.
Three other types of statements, which include Input, Output and Assignment.
Subroutines or small programs that can be added to modularize pseudocode. The subroutines are also written using the pseudocode notation.

Here is an example of pseudocode.

Begin procedure
Input Widget Price
Taxes = 0.06 x Widget Price
Amount Due = Widget Price + Taxes
Output Taxes and Amount Due
End procedure

.....................

CS 101 Introduction to Computing

Assignment # 04

 

Deadline

Your assignment must be uploaded / submitted before or on 23-06-2010.

Upload Instructions

Please view the assignment submission process document provided to you by the Virtual University to upload the assignment.

Rules for Marking

Please note that your assignment will not be graded if:
·         It is submitted after due date
·         The file you uploaded does not open
·         The file you uploaded is copied from some one else
·         It is in some format other than .doc

Objective

The assignment has been designed to enable you:
  • To learn how to write algorithm for Problems.

  • To get knowledge of flowcharting.

  • To enhance the thinking and vision of student for specific problem domains.


Write an algorithm in pseudo code form for the following problem and also draw a Flow chart for the same problem statement (5+5)

There is a multinational company. In the company, there are deductions from the salary of the employee according to following rules:
i)  If salary is less than 10,000 then no tax deduction and 4% of salary will be deducted as Well-fare fund every month.
ii) If salary is more than 10,000 and less than 20,000 then 3% of salary as tax deduction and 6% of remaining salary as employee well-fare fund will be deducted every month.

iii) If salary is equal to or more than 20,000 then  5 % of the salary as tax deduction and 8% of remaining salary as employee well-fare fund  will be deducted every month .

Take salary input from user and after appropriate deduction show the net payable amount for month.
Using Loop structure calculate the total salary; paid tax and well fare fund of that particular employee for two years and display these values at end.

cs101 assignment 4 solution



solution:

 

The following can help explain the concept of algorithms in relation to programming.

Problem: Calculate the average of three given numbers.
Let the given numbers be a, b, c
Step 1: Set aside memory for all values (a, b, c,)
Step 2: Assign the values to a memory location (the given numbers)
Step 3: Calculate the average of the values using the formula (a+b+c)/3
Step 4: Display the answer in the proper format, in this case the average.
The problem statement is programmatically solved with the use of four steps in the algorithm.

Problem:Find the gain or loss of an item, as the case may be, and compute the gain or loss percentage, given the cost price and the selling price.

Gain = S.P. (sell price) - C.P (cost price).
Gain % = (Gain * 100)/C.P.
Loss = C.P. - S.P.
Loss % = (Loss * 100)/C.P.
(Percentage gain or loss is calculated on the C.P.)

Algorithm:
Step 1: Obtain the values of S.P. and C.P. Set aside memory for S.P. and C.P., gain percent and loss percent.
Step 2: Assign values to memory location.
Step 3: Perform mathematical computations.
Step 4: Display results in the proper format.

If C.P. = S.P, then
Declare "There is neither gain nor loss in the transaction"
Stop
If S.P. > C.P., then
Calculate Gain = S.P - C.P
Calculate Gain % = (Gain * 100)/C.P
Write "Answer: Gain is $" followed by value of Gain
Write "Answer: Gain % is" followed by value of Gain %
Stop
Else
Calculate Loss = C.P. - S.P
Calculate Loss % = (Loss * 100)/C.P.
Write "Answer: Loss is $" followed by value of Loss
Write "Answer: Loss % is" followed by values of Loss %
Stop


The algorithm is executed in order, starting with Step 1:
In step 1, we set aside memory locations for S.P. and C.P
In step 2, we assign the numerical values of S.P. and C.P. to the memory locations.
In step 3, the answer to the phrase If C.P. - S.P. could be yes or no. If the answer is yes, then only the instructions following the word "then" are executed.
In step 3, if the answer to the phrase S.P. > C.P. is yes, then steps to a to e before else are executed. If the answer to S.P. > C.P. is no, implying that C.P. >= S.P., steps a to e after else are executed.
Step 4 is the last in the process. The result of the computations is displayed and the algorithm is terminated after its execution.

Words such as "IF", "THEN", and "ELSE are used to emphasize their distinctive nature in executing the algorithm.
Flowcharts

When thinking of a Flowchart think of a visual representation of how a process works, depicting the sequence of steps at a minimum. A flowchart offers many advantages including the following.
Helps locate the key elements of a process. It draws clears lines between the end of one process and the start of another.
Brings clarity and improvement to a process.
Helps identify appropriate areas for improvement in a program.

The following shows a format of a sample flowchart that identifies the starting and ending points of a sequential process with decision points.

 

 

Flowcharts depict different types of actions and steps in a process through special shapes. The sequence of steps and the relationships between these steps is shown using arrows. The following is a list of the different shapes in a flow chart and what they represent.

The following shows the flowchart of gain and loss for a business.

 Pseudocode

Pseudocode, aka false code, is an informal language for relating problem solving steps. The steps used in pseudocode are simple and can be implemented with ease into any programming language. Pseudocode uses a combination of English words, mathematical notations, and a set of capitalized keywords such as BEING, END, READ, PRINT, FREAD, FPRINT, IF, ELSE, ELSEIF, ENDIF, WHILE, DO and ENDWHILE.

Pseudocode consists of:
Fundamental control structures such as Sequence, Selection and Repetition.
Three other types of statements, which include Input, Output and Assignment.
Subroutines or small programs that can be added to modularize pseudocode. The subroutines are also written using the pseudocode notation.

Here is an example of pseudocode.

Begin procedure
Input Widget Price
Taxes = 0.06 x Widget Price
Amount Due = Widget Price + Taxes
Output Taxes and Amount Due
End procedure

.....................

CS 101 Introduction to Computing

Assignment # 04

 

Deadline

Your assignment must be uploaded / submitted before or on 23-06-2010.

Upload Instructions

Please view the assignment submission process document provided to you by the Virtual University to upload the assignment.

Rules for Marking

Please note that your assignment will not be graded if:
·         It is submitted after due date
·         The file you uploaded does not open
·         The file you uploaded is copied from some one else
·         It is in some format other than .doc

Objective

The assignment has been designed to enable you:
  • To learn how to write algorithm for Problems.

  • To get knowledge of flowcharting.

  • To enhance the thinking and vision of student for specific problem domains.


Write an algorithm in pseudo code form for the following problem and also draw a Flow chart for the same problem statement (5+5)

There is a multinational company. In the company, there are deductions from the salary of the employee according to following rules:
i)  If salary is less than 10,000 then no tax deduction and 4% of salary will be deducted as Well-fare fund every month.
ii) If salary is more than 10,000 and less than 20,000 then 3% of salary as tax deduction and 6% of remaining salary as employee well-fare fund will be deducted every month.

iii) If salary is equal to or more than 20,000 then  5 % of the salary as tax deduction and 8% of remaining salary as employee well-fare fund  will be deducted every month .

Take salary input from user and after appropriate deduction show the net payable amount for month.
Using Loop structure calculate the total salary; paid tax and well fare fund of that particular employee for two years and display these values at end.

mgt411 Online Quiz (18-21 June 2010

Question # 1 of 15 ( Start time: 03:58:32 AM ) Total Marks: 1
The return on holding a bond till its maturity is called:
Select correct option:

Coupon rate
Yield to maturity
Current yield
Internal rate of return

Question # 2 of 15 ( Start time: 03:58:53 AM ) Total Marks: 1
What is the true relationship that exists between default risk and yield?
Select correct option:

Higher the default risk, higher the yield
Lower the default risk, higher the yield
Higher the default risk yield will remain constant
Lower the default risk yield will remain constant

Question # 3 of 15 ( Start time: 03:59:11 AM ) Total Marks: 1
The theory of efficient market states that prices of financial instruments reflect:
Select correct option:

All available information
Some of the information
No information
Imperfect information


Question # 4 of 15 ( Start time: 03:59:37 AM ) Total Marks: 1
Which one of the following is the procedure of finding out the Present Value (PV)?
Select correct option:

Discounting
Compounding
Time value of money
Bond pricing


Question # 5 of 15 ( Start time: 04:00:55 AM ) Total Marks: 1
Diversification is the principle of:
Select correct option:

Holding more than one risk at a time
Reducing the risks we carry to just two
Creating risk to increase returns
Eliminating investments from our portfolio that have idiosyncratic risk

Question # 6 of 15 ( Start time: 04:01:16 AM ) Total Marks: 1
The price of a coupon bond can best be described as:
Select correct option:

The present value of the face value
The future value of the coupon payments and the face value
The present value of the coupon payments
Both The present value of the face value and of the coupon payments


Question # 7 of 15 ( Start time: 04:01:36 AM ) Total Marks: 1
An index number is a valuable tool because:
Select correct option:

The number by itself provides all of the useful information needed
The index provides a meaningful measurement scale to calculate percentage changes
The index is more stable than the data it reflects
It does not require any calculations to compute percentage changes


Question # 8 of 15 ( Start time: 04:02:02 AM ) Total Marks: 1
A risk-averse investor will:
Select correct option:

Always prefer an investment with a lower expected return
Always prefer an investment with a certain return to one with the same expected return but any amount of uncertainty
Always require a certain return
Always focus exclusively on the expected return

Question # 9 of 15 ( Start time: 04:02:21 AM ) Total Marks: 1
Which of the following is NOT included in the definition of M1?
Select correct option:

Traveler’s checks
Demand deposits
Currency
Gold coins issued by treasury

Question # 10 of 15 ( Start time: 04:02:33 AM ) Total Marks: 1
Which of the following statement is true about the relation ship between bond ,coupon payment and interest?
Select correct option:

Coupon payments fall, the interest rate falls, and Bond price will rise
Coupon payments rises, the interest rate falls, and Bond price will rise
Coupon payments fall, the interest rate falls, and Bond price will fall
Coupon payments rise, the interest rate falls, and Bond price will fall

Question # 11 of 15 ( Start time: 04:03:32 AM ) Total Marks: 1
There is no guarantee that a bond issuer will make the promised payments is known as which one of the following?
Select correct option:

Default risk
Inflation risk
Interest rate risk
Systematic risk


Question # 12 of 15 ( Start time: 04:03:52 AM ) Total Marks: 1
Banks can also borrow by using a repurchase agreement or repo, which is a short-term _____________.
Select correct option:

Discount loan
Collateralized loan
Personal loan
Corporate loan

Question # 14 of 15 ( Start time: 04:05:05 AM ) Total Marks: 1
Which of the following would be included in a definition of risk?
Select correct option:

Risk is a not measure of uncertainty
Risk is unavoidable
Risk doesn't have a time horizon
Risk seldom involves some future payoff

Question # 15 of 15 ( Start time: 04:06:29 AM ) Total Marks: 1
When the auto manufacturing industry does poorly due to a recession this is an example of:
Select correct option:

Idiosyncratic risk
Systematic risk
Risk premium
Unique risk

Another Quiz:-

Question # 1 of 15 ( Start time: 04:22:12 AM ) Total Marks: 1
The bond rating of a security refers to which of the followings?
Select correct option:

The size of the coupon payment relative to the face value
The return a holder is likely to receive
The likelihood the lender/borrower will be repaid by the borrower/issuer
The years until the bond matures

Question # 2 of 15 ( Start time: 04:22:32 AM ) Total Marks: 1
Which of the following are used to monitor and stabilize the economy?
Select correct option:

Stock exchanges
Commercial Banks
Central Banks
Financial institutions

Question # 3 of 15 ( Start time: 04:22:51 AM ) Total Marks: 1
The relationship between the price and the interest rate for a zero coupon bond is best described as:
Select correct option:

Volatile
Stable
Non-existent
Inverse

Question # 4 of 15 ( Start time: 04:23:14 AM ) Total Marks: 1
Which of the following NOT true for financial institutions?
Select correct option:

It reduces the transaction cost
It reduce the information cost
It reduces the asymmetric information
It doesn’t make long term loans

Question # 5 of 15 ( Start time: 04:24:40 AM ) Total Marks: 1
Most of the people among us are ___________.
Select correct option:

Risk lovers
Risk enhancers
Risk averse
Risk tolerating

Question # 6 of 15 ( Start time: 04:25:45 AM ) Total Marks: 1
The price of a coupon bond can best be described as:
Select correct option:

The present value of the face value
The future value of the coupon payments and the face value
The present value of the coupon payments
Both The present value of the face value and of the coupon payments

Question # 7 of 15 ( Start time: 04:26:10 AM ) Total Marks: 1
A risk-averse investor will:
Select correct option:

Always prefer an investment with a lower expected return
Always prefer an investment with a certain return to one with the same expected return but any amount of uncertainty
Always require a certain return
Always focus exclusively on the expected return

Question # 8 of 15 ( Start time: 04:26:18 AM ) Total Marks: 1
What is true relationship between return and risk?
Select correct option:

Lower the risk greater the return
Greater the risk greater the return
Greater the risk the return will remain constant
No relationship between them

Question # 9 of 15 ( Start time: 04:26:42 AM ) Total Marks: 1
Financial development measured by
Select correct option:

M1/GDP
M2/GDP
M3/DGP
All of above

Question # 10 of 15 ( Start time: 04:28:09 AM ) Total Marks: 1
A loan that is used to purchase the real estate is known as:
Select correct option:

Real estate loan
Home mortgages
Fixed payment loan
Home loan


Question # 11 of 15 ( Start time: 04:28:27 AM ) Total Marks: 1
Which of the following is NOT a depository financial institution?
Select correct option:

Credit Union
Savings and Loan
Commercial bank
Life Insurance Company

Question # 12 of 15 ( Start time: 04:28:44 AM ) Total Marks: 1
If the tax rate is higher than gap between yield on taxable and tax exempt bond?
Select correct option:

Shorter
Wider
No gap
Any thing can be possible

Question # 13 of 15 ( Start time: 04:29:01 AM ) Total Marks: 1
----- example of channel fund from saver to borrower.
Select correct option:

Bank
Mutual fund
Finance companies
All of above

Question # 14 of 15 ( Start time: 04:30:10 AM ) Total Marks: 1
You receive a check for $100 two years from today. The discounted present value of this $100 is:
Select correct option:

$100/(1+i)
$100*(1+i)2
$100*(1+i)
$100/(1+i)2

Question # 15 of 15 ( Start time: 04:30:31 AM ) Total Marks: 1
Which one of the following is NOT true for the expectation hypothesis?
Select correct option:

Risk free interest rate can be computed
There is uncertainty in the future
Identifying yield of bond today that will be available next year
It focuses on risk free interest rate and the risk premium

Another Quiz:-

Question # 1 of 15 ( Start time: 04:39:43 AM ) Total Marks: 1
A





The risk premium of a bond will:
Select correct option:

Higher for investment-grade bonds than for high-yield bonds
Positive but small if the risk of default is zero
Decrease when the default risk rises
Increase when the risk of default rises

Question # 2 of 15 ( Start time: 04:40:01 AM ) Total Marks: 1
Banks can also borrow by using a repurchase agreement or repo, which is a short-term _____________.
Select correct option:

Discount loan
Collateralized loan
Personal loan
Corporate loan

Question # 3 of 15 ( Start time: 04:40:21 AM ) Total Marks: 1
There is no guarantee that a bond issuer will make the promised payments is known as which one of the following?
Select correct option:

Default risk
Inflation risk
Interest rate risk
Systematic risk

Question # 4 of 15 ( Start time: 04:40:39 AM ) Total Marks: 1
Mr A need 1000000 to buy a car for his personal use he contact with bank that give his loan this would be called
Select correct option:

Direct finance
Indirect finance
Facilitate payment
All of above

Question # 5 of 15 ( Start time: 04:41:01 AM ) Total Marks: 1
A graph of the term structure with YTM on Y-axis and time to maturity on X-axis is called:
Select correct option:

Demand curve
Supply curve
Yield curve
Leffer curve

Question # 6 of 15 ( Start time: 04:41:20 AM ) Total Marks: 1
Expectation hypothesis focuses on which one of the following?
Select correct option:

Risk premium
Risk free interest rate
Yield to maturity
None of the given options

Question # 7 of 15 ( Start time: 04:41:39 AM ) Total Marks: 1
What is true about the relationship between standard deviation and risk?
Select correct option:

Greater the standard deviation greater will be the risk
Greater the standard deviation lower will be the risk
Greater the standard deviation risk remains the same
No relation between them

Question # 8 of 15 ( Start time: 04:41:58 AM ) Total Marks: 1
Diversification is the principle of:
Select correct option:

Holding more than one risk at a time
Reducing the risks we carry to just two
Creating risk to increase returns
Eliminating investments from our portfolio that have idiosyncratic risk

Question # 9 of 15 ( Start time: 04:42:16 AM ) Total Marks: 1
The Financial Systems makes it easier to trade because it:
Select correct option:

Facilitate Payments
Channels Funds from Savers to Borrowers
Enables Risk Sharing
All of the given options

Question # 10 of 15 ( Start time: 04:42:31 AM ) Total Marks: 1
Which of the following statement is true about the relation ship between bond ,coupon payment and interest?
Select correct option:

Coupon payments fall, the interest rate falls, and Bond price will rise
Coupon payments rises, the interest rate falls, and Bond price will rise
Coupon payments fall, the interest rate falls, and Bond price will fall
Coupon payments rise, the interest rate falls, and Bond price will fall

Question # 11 of 15 ( Start time: 04:42:48 AM ) Total Marks: 1
If information in a financial market is asymmetric, this means:
Select correct option:

Borrowers and lenders have perfect information
Borrowers would have more information than lenders
Borrowers and lenders have the same information
Lenders lack any information

Question # 12 of 15 ( Start time: 04:43:22 AM ) Total Marks: 1
Which of the following is NOT an example of financial institutions?
Select correct option:

Banks
Securities firms
Stock exchanges
Insurance companies

Question # 13 of 15 ( Start time: 04:44:29 AM ) Total Marks: 1
Time affects the value of which of the following?
Select correct option:

Financial Instruments
Financial Markets
Financial Institutions
Central Banks

Question # 14 of 15 ( Start time: 04:44:47 AM ) Total Marks: 1
When stock prices reflect fundamental values:
Select correct option:

All investors will experience capital gains
All companies will have an easier task of obtaining financing for investment projects
The allocation of resources will be more efficient
The overall level of the stock market should move higher continuously

Question # 15 of 15 ( Start time: 04:45:13 AM ) Total Marks: 1
A bank can usually offer a saver a higher return for the same risk because:
Select correct option:

The bank can usually purchase assets at a higher cost than any one saver
The bank can pool the resources of larger savers and purchase lower denominated assets
Economies of scale can be applied by the bank in its purchase of assets
None of the given options
Another Quiz:-

Question # 1 of 15 ( Start time: 04:51:28 AM ) Total Marks: 1
The risk premium for an investment:
Select correct option:

Increases with risk
Is a fixed amount added to the risk free return
Is negative for U.S. Treasury Securities
Is negative for risk averse investors


Question # 2 of 15 ( Start time: 04:51:46 AM ) Total Marks: 1
If information in a financial market is asymmetric, this means:
Select correct option:

Borrowers and lenders have perfect information
Borrowers would have more information than lenders
Borrowers and lenders have the same information
Lenders lack any information

Question # 3 of 15 ( Start time: 04:51:54 AM ) Total Marks: 1
A typical bank will offer ________ type/s of checking accounts.
Select correct option:

Only one type
Two types
Four types
Six or more types

Question # 4 of 15 ( Start time: 04:52:35 AM ) Total Marks: 1
If the annual interest rate is 6%, the price of a 1-year Treasury bill with $100 face value would be:
Select correct option:

$94.00
$94.33
$95.25
$96.10

Question # 5 of 15 ( Start time: 04:52:50 AM ) Total Marks: 1
Government bonds called …….. Where as corporate bonds are called ……
Select correct option:

Zero coupon bond, coupon bond
Risky bond. Risk free bond
T bill, corporate bond
Console bond, junk bonds

Question # 6 of 15 ( Start time: 04:53:15 AM ) Total Marks: 1
Which of the following is NOT a depository financial institution?
Select correct option:

Credit Union
Savings and Loan
Commercial bank
Life Insurance Company

Question # 7 of 15 ( Start time: 04:53:31 AM ) Total Marks: 1
Bonds without maturity dates are which of the followings?
Select correct option:

Zero coupon bonds
Coupon securities
Consols
Preferred Bonds

Question # 8 of 15 ( Start time: 04:53:48 AM ) Total Marks: 1
Which of the following best expresses the proceeds a lender receives from a simple loan?
Select correct option:

PV(1 + i)
FV/i
PV + i
PV/i

Question # 9 of 15 ( Start time: 04:54:03 AM ) Total Marks: 1
Debt instruments is categorized on the basis of which one of the following?
Select correct option:

Loan maturity period
Interest rates
Mode of payment of interest
Amount of the debt taken

Question # 10 of 15 ( Start time: 04:54:20 AM ) Total Marks: 1
In the long run, the yield curve tends to be which of the following?
Select correct option:

Upward sloping
Downward sloping
Nearly vertical
Nearly horizontal

Question # 11 of 15 ( Start time: 04:54:35 AM ) Total Marks: 1
Financial instruments are evolved just as ____________.
Select correct option:

Currency
Stock
Bond
Commodity

Question # 12 of 15 ( Start time: 04:54:51 AM ) Total Marks: 1
If YTM is less than the coupon rate the price of the bond is __________.
Select correct option:

Greater than its face value
Lower than its face value
Equals to its face value
All of the given options

Question # 13 of 15 ( Start time: 04:55:54 AM ) Total Marks: 1
_____________ are organized to eliminate the need of costly information gathering.
Select correct option:

Central bank
Commercial banks
Stock exchanges
Insurance companies

Question # 14 of 15 ( Start time: 04:56:21 AM ) Total Marks: 1
Which of the following best describes the relationship between Bond prices and yields?
Select correct option:

Move together inversely
Bond yields do not change since the coupon is fixed
Move together directly
Are independent of each other

Question # 15 of 15 ( Start time: 04:56:37 AM ) Total Marks: 1
At which money aggregate definitions relation is stronger with inflation and growth
Select correct option:

M1
M2
M3
None of above
 
Another Quiz:-

Question # 1 of 15 ( Start time: 04:59:31 AM ) Total Marks: 1
The interest rate that is involved in _____________ calculation is referred to as discount rate
Select correct option:

Present value
Future value
Intrinsic value
Discount value

Question # 2 of 15 ( Start time: 04:59:47 AM ) Total Marks: 1
Previously financial markets are located in which of the following?
Select correct option:

Coffee houses or Taverns
Stock exchanges
Bazaar
Coffee houses and Stock exchanges

Question # 3 of 15 ( Start time: 05:00:04 AM ) Total Marks: 1
----- example of channel fund from saver to borrower.
Select correct option:

Bank
Mutual fund
Finance companies
All of above

Question # 4 of 15 ( Start time: 05:00:15 AM ) Total Marks: 1
What characteristic of money is not included in securities characteristics
Select correct option:

Mean of payment
Unit of account
Store of value
Transfer of risk

Question # 5 of 15 ( Start time: 05:00:38 AM ) Total Marks: 1
The fact that common stockholders are residual claimants means:
Select correct option:

The stockholders receive their dividends before any other residuals are paid
The stockholders receive the remains after everyone else is paid
The stockholders are paid any past due dividends before other claims are paid
The common stockholders are responsible for all corporate debts

Question # 6 of 15 ( Start time: 05:01:51 AM ) Total Marks: 1
If YTM equals the coupon rate the price of the bond is __________.
Select correct option:

Greater than its face value
Lower than its face value
Equals to its face value
Insufficient information

Question # 7 of 15 ( Start time: 05:02:07 AM ) Total Marks: 1
Stock market bubbles can lead to:
Select correct option:

An inefficient allocation of resources
Stock market crashes
Patterns of volatile returns from the stock market
All of the given options

Question # 8 of 15 ( Start time: 05:03:19 AM ) Total Marks: 1
Core principles of Money and Banking include each of the following except?
Select correct option:

People act rationally
Time has value
Information is the basis for decisions
Risk requires compensation

Question # 9 of 15 ( Start time: 05:03:34 AM ) Total Marks: 1
Yield curves show which of the followings?
Select correct option:

The relationship between bond interest rates (yields) and bond prices
The relationship between liquidity and bond interest rates (yields)
The relationship between risk and bond interest rates (yields)
The relationship between time to maturity and bond interest rates (yields)

Question # 10 of 15 ( Start time: 05:03:56 AM ) Total Marks: 1
If bond’s rating is lower, what will be its price?
Select correct option:

Higher
Lower
Equal to
No change

Question # 11 of 15 ( Start time: 05:04:57 AM ) Total Marks: 1
The default premium:
Select correct option:

Is positive for a U.S. Treasury bond
Must always be less than 0 (zero)
Is also known as the risk spread
Is assigned by a bond rating agency

Question # 12 of 15 ( Start time: 05:05:14 AM ) Total Marks: 1
Which one of the following is the procedure of finding out the Present Value (PV)?
Select correct option:

Discounting
Compounding
Time value of money
Bond pricing

Question # 13 of 15 ( Start time: 05:05:37 AM ) Total Marks: 1
___________ include savings and time deposits and account for nearly two-thirds of all commercial bank liabilities.
Select correct option:

Non transactions Deposits
Borrowings
Checkable Deposits
Discount loans

Question # 14 of 15 ( Start time: 05:06:35 AM ) Total Marks: 1
The____________ are an assessment of the creditworthiness of the corporate issuer.
Select correct option:

Bond yield
Bond ratings
Bond risk
Bond price

Question # 15 of 15 ( Start time: 05:06:56 AM ) Total Marks: 1
When the auto manufacturing industry does poorly due to a recession this is an example of:
Select correct option:

Idiosyncratic risk
Systematic risk
Risk premium
Unique risk

mgt411 Online Quiz (18-21 June 2010

Question # 1 of 15 ( Start time: 03:58:32 AM ) Total Marks: 1
The return on holding a bond till its maturity is called:
Select correct option:

Coupon rate
Yield to maturity
Current yield
Internal rate of return

Question # 2 of 15 ( Start time: 03:58:53 AM ) Total Marks: 1
What is the true relationship that exists between default risk and yield?
Select correct option:

Higher the default risk, higher the yield
Lower the default risk, higher the yield
Higher the default risk yield will remain constant
Lower the default risk yield will remain constant

Question # 3 of 15 ( Start time: 03:59:11 AM ) Total Marks: 1
The theory of efficient market states that prices of financial instruments reflect:
Select correct option:

All available information
Some of the information
No information
Imperfect information


Question # 4 of 15 ( Start time: 03:59:37 AM ) Total Marks: 1
Which one of the following is the procedure of finding out the Present Value (PV)?
Select correct option:

Discounting
Compounding
Time value of money
Bond pricing


Question # 5 of 15 ( Start time: 04:00:55 AM ) Total Marks: 1
Diversification is the principle of:
Select correct option:

Holding more than one risk at a time
Reducing the risks we carry to just two
Creating risk to increase returns
Eliminating investments from our portfolio that have idiosyncratic risk

Question # 6 of 15 ( Start time: 04:01:16 AM ) Total Marks: 1
The price of a coupon bond can best be described as:
Select correct option:

The present value of the face value
The future value of the coupon payments and the face value
The present value of the coupon payments
Both The present value of the face value and of the coupon payments


Question # 7 of 15 ( Start time: 04:01:36 AM ) Total Marks: 1
An index number is a valuable tool because:
Select correct option:

The number by itself provides all of the useful information needed
The index provides a meaningful measurement scale to calculate percentage changes
The index is more stable than the data it reflects
It does not require any calculations to compute percentage changes


Question # 8 of 15 ( Start time: 04:02:02 AM ) Total Marks: 1
A risk-averse investor will:
Select correct option:

Always prefer an investment with a lower expected return
Always prefer an investment with a certain return to one with the same expected return but any amount of uncertainty
Always require a certain return
Always focus exclusively on the expected return

Question # 9 of 15 ( Start time: 04:02:21 AM ) Total Marks: 1
Which of the following is NOT included in the definition of M1?
Select correct option:

Traveler’s checks
Demand deposits
Currency
Gold coins issued by treasury

Question # 10 of 15 ( Start time: 04:02:33 AM ) Total Marks: 1
Which of the following statement is true about the relation ship between bond ,coupon payment and interest?
Select correct option:

Coupon payments fall, the interest rate falls, and Bond price will rise
Coupon payments rises, the interest rate falls, and Bond price will rise
Coupon payments fall, the interest rate falls, and Bond price will fall
Coupon payments rise, the interest rate falls, and Bond price will fall

Question # 11 of 15 ( Start time: 04:03:32 AM ) Total Marks: 1
There is no guarantee that a bond issuer will make the promised payments is known as which one of the following?
Select correct option:

Default risk
Inflation risk
Interest rate risk
Systematic risk


Question # 12 of 15 ( Start time: 04:03:52 AM ) Total Marks: 1
Banks can also borrow by using a repurchase agreement or repo, which is a short-term _____________.
Select correct option:

Discount loan
Collateralized loan
Personal loan
Corporate loan

Question # 14 of 15 ( Start time: 04:05:05 AM ) Total Marks: 1
Which of the following would be included in a definition of risk?
Select correct option:

Risk is a not measure of uncertainty
Risk is unavoidable
Risk doesn't have a time horizon
Risk seldom involves some future payoff

Question # 15 of 15 ( Start time: 04:06:29 AM ) Total Marks: 1
When the auto manufacturing industry does poorly due to a recession this is an example of:
Select correct option:

Idiosyncratic risk
Systematic risk
Risk premium
Unique risk

Another Quiz:-

Question # 1 of 15 ( Start time: 04:22:12 AM ) Total Marks: 1
The bond rating of a security refers to which of the followings?
Select correct option:

The size of the coupon payment relative to the face value
The return a holder is likely to receive
The likelihood the lender/borrower will be repaid by the borrower/issuer
The years until the bond matures

Question # 2 of 15 ( Start time: 04:22:32 AM ) Total Marks: 1
Which of the following are used to monitor and stabilize the economy?
Select correct option:

Stock exchanges
Commercial Banks
Central Banks
Financial institutions

Question # 3 of 15 ( Start time: 04:22:51 AM ) Total Marks: 1
The relationship between the price and the interest rate for a zero coupon bond is best described as:
Select correct option:

Volatile
Stable
Non-existent
Inverse

Question # 4 of 15 ( Start time: 04:23:14 AM ) Total Marks: 1
Which of the following NOT true for financial institutions?
Select correct option:

It reduces the transaction cost
It reduce the information cost
It reduces the asymmetric information
It doesn’t make long term loans

Question # 5 of 15 ( Start time: 04:24:40 AM ) Total Marks: 1
Most of the people among us are ___________.
Select correct option:

Risk lovers
Risk enhancers
Risk averse
Risk tolerating

Question # 6 of 15 ( Start time: 04:25:45 AM ) Total Marks: 1
The price of a coupon bond can best be described as:
Select correct option:

The present value of the face value
The future value of the coupon payments and the face value
The present value of the coupon payments
Both The present value of the face value and of the coupon payments

Question # 7 of 15 ( Start time: 04:26:10 AM ) Total Marks: 1
A risk-averse investor will:
Select correct option:

Always prefer an investment with a lower expected return
Always prefer an investment with a certain return to one with the same expected return but any amount of uncertainty
Always require a certain return
Always focus exclusively on the expected return

Question # 8 of 15 ( Start time: 04:26:18 AM ) Total Marks: 1
What is true relationship between return and risk?
Select correct option:

Lower the risk greater the return
Greater the risk greater the return
Greater the risk the return will remain constant
No relationship between them

Question # 9 of 15 ( Start time: 04:26:42 AM ) Total Marks: 1
Financial development measured by
Select correct option:

M1/GDP
M2/GDP
M3/DGP
All of above

Question # 10 of 15 ( Start time: 04:28:09 AM ) Total Marks: 1
A loan that is used to purchase the real estate is known as:
Select correct option:

Real estate loan
Home mortgages
Fixed payment loan
Home loan


Question # 11 of 15 ( Start time: 04:28:27 AM ) Total Marks: 1
Which of the following is NOT a depository financial institution?
Select correct option:

Credit Union
Savings and Loan
Commercial bank
Life Insurance Company

Question # 12 of 15 ( Start time: 04:28:44 AM ) Total Marks: 1
If the tax rate is higher than gap between yield on taxable and tax exempt bond?
Select correct option:

Shorter
Wider
No gap
Any thing can be possible

Question # 13 of 15 ( Start time: 04:29:01 AM ) Total Marks: 1
----- example of channel fund from saver to borrower.
Select correct option:

Bank
Mutual fund
Finance companies
All of above

Question # 14 of 15 ( Start time: 04:30:10 AM ) Total Marks: 1
You receive a check for $100 two years from today. The discounted present value of this $100 is:
Select correct option:

$100/(1+i)
$100*(1+i)2
$100*(1+i)
$100/(1+i)2

Question # 15 of 15 ( Start time: 04:30:31 AM ) Total Marks: 1
Which one of the following is NOT true for the expectation hypothesis?
Select correct option:

Risk free interest rate can be computed
There is uncertainty in the future
Identifying yield of bond today that will be available next year
It focuses on risk free interest rate and the risk premium

Another Quiz:-

Question # 1 of 15 ( Start time: 04:39:43 AM ) Total Marks: 1
A





The risk premium of a bond will:
Select correct option:

Higher for investment-grade bonds than for high-yield bonds
Positive but small if the risk of default is zero
Decrease when the default risk rises
Increase when the risk of default rises

Question # 2 of 15 ( Start time: 04:40:01 AM ) Total Marks: 1
Banks can also borrow by using a repurchase agreement or repo, which is a short-term _____________.
Select correct option:

Discount loan
Collateralized loan
Personal loan
Corporate loan

Question # 3 of 15 ( Start time: 04:40:21 AM ) Total Marks: 1
There is no guarantee that a bond issuer will make the promised payments is known as which one of the following?
Select correct option:

Default risk
Inflation risk
Interest rate risk
Systematic risk

Question # 4 of 15 ( Start time: 04:40:39 AM ) Total Marks: 1
Mr A need 1000000 to buy a car for his personal use he contact with bank that give his loan this would be called
Select correct option:

Direct finance
Indirect finance
Facilitate payment
All of above

Question # 5 of 15 ( Start time: 04:41:01 AM ) Total Marks: 1
A graph of the term structure with YTM on Y-axis and time to maturity on X-axis is called:
Select correct option:

Demand curve
Supply curve
Yield curve
Leffer curve

Question # 6 of 15 ( Start time: 04:41:20 AM ) Total Marks: 1
Expectation hypothesis focuses on which one of the following?
Select correct option:

Risk premium
Risk free interest rate
Yield to maturity
None of the given options

Question # 7 of 15 ( Start time: 04:41:39 AM ) Total Marks: 1
What is true about the relationship between standard deviation and risk?
Select correct option:

Greater the standard deviation greater will be the risk
Greater the standard deviation lower will be the risk
Greater the standard deviation risk remains the same
No relation between them

Question # 8 of 15 ( Start time: 04:41:58 AM ) Total Marks: 1
Diversification is the principle of:
Select correct option:

Holding more than one risk at a time
Reducing the risks we carry to just two
Creating risk to increase returns
Eliminating investments from our portfolio that have idiosyncratic risk

Question # 9 of 15 ( Start time: 04:42:16 AM ) Total Marks: 1
The Financial Systems makes it easier to trade because it:
Select correct option:

Facilitate Payments
Channels Funds from Savers to Borrowers
Enables Risk Sharing
All of the given options

Question # 10 of 15 ( Start time: 04:42:31 AM ) Total Marks: 1
Which of the following statement is true about the relation ship between bond ,coupon payment and interest?
Select correct option:

Coupon payments fall, the interest rate falls, and Bond price will rise
Coupon payments rises, the interest rate falls, and Bond price will rise
Coupon payments fall, the interest rate falls, and Bond price will fall
Coupon payments rise, the interest rate falls, and Bond price will fall

Question # 11 of 15 ( Start time: 04:42:48 AM ) Total Marks: 1
If information in a financial market is asymmetric, this means:
Select correct option:

Borrowers and lenders have perfect information
Borrowers would have more information than lenders
Borrowers and lenders have the same information
Lenders lack any information

Question # 12 of 15 ( Start time: 04:43:22 AM ) Total Marks: 1
Which of the following is NOT an example of financial institutions?
Select correct option:

Banks
Securities firms
Stock exchanges
Insurance companies

Question # 13 of 15 ( Start time: 04:44:29 AM ) Total Marks: 1
Time affects the value of which of the following?
Select correct option:

Financial Instruments
Financial Markets
Financial Institutions
Central Banks

Question # 14 of 15 ( Start time: 04:44:47 AM ) Total Marks: 1
When stock prices reflect fundamental values:
Select correct option:

All investors will experience capital gains
All companies will have an easier task of obtaining financing for investment projects
The allocation of resources will be more efficient
The overall level of the stock market should move higher continuously

Question # 15 of 15 ( Start time: 04:45:13 AM ) Total Marks: 1
A bank can usually offer a saver a higher return for the same risk because:
Select correct option:

The bank can usually purchase assets at a higher cost than any one saver
The bank can pool the resources of larger savers and purchase lower denominated assets
Economies of scale can be applied by the bank in its purchase of assets
None of the given options
Another Quiz:-

Question # 1 of 15 ( Start time: 04:51:28 AM ) Total Marks: 1
The risk premium for an investment:
Select correct option:

Increases with risk
Is a fixed amount added to the risk free return
Is negative for U.S. Treasury Securities
Is negative for risk averse investors


Question # 2 of 15 ( Start time: 04:51:46 AM ) Total Marks: 1
If information in a financial market is asymmetric, this means:
Select correct option:

Borrowers and lenders have perfect information
Borrowers would have more information than lenders
Borrowers and lenders have the same information
Lenders lack any information

Question # 3 of 15 ( Start time: 04:51:54 AM ) Total Marks: 1
A typical bank will offer ________ type/s of checking accounts.
Select correct option:

Only one type
Two types
Four types
Six or more types

Question # 4 of 15 ( Start time: 04:52:35 AM ) Total Marks: 1
If the annual interest rate is 6%, the price of a 1-year Treasury bill with $100 face value would be:
Select correct option:

$94.00
$94.33
$95.25
$96.10

Question # 5 of 15 ( Start time: 04:52:50 AM ) Total Marks: 1
Government bonds called …….. Where as corporate bonds are called ……
Select correct option:

Zero coupon bond, coupon bond
Risky bond. Risk free bond
T bill, corporate bond
Console bond, junk bonds

Question # 6 of 15 ( Start time: 04:53:15 AM ) Total Marks: 1
Which of the following is NOT a depository financial institution?
Select correct option:

Credit Union
Savings and Loan
Commercial bank
Life Insurance Company

Question # 7 of 15 ( Start time: 04:53:31 AM ) Total Marks: 1
Bonds without maturity dates are which of the followings?
Select correct option:

Zero coupon bonds
Coupon securities
Consols
Preferred Bonds

Question # 8 of 15 ( Start time: 04:53:48 AM ) Total Marks: 1
Which of the following best expresses the proceeds a lender receives from a simple loan?
Select correct option:

PV(1 + i)
FV/i
PV + i
PV/i

Question # 9 of 15 ( Start time: 04:54:03 AM ) Total Marks: 1
Debt instruments is categorized on the basis of which one of the following?
Select correct option:

Loan maturity period
Interest rates
Mode of payment of interest
Amount of the debt taken

Question # 10 of 15 ( Start time: 04:54:20 AM ) Total Marks: 1
In the long run, the yield curve tends to be which of the following?
Select correct option:

Upward sloping
Downward sloping
Nearly vertical
Nearly horizontal

Question # 11 of 15 ( Start time: 04:54:35 AM ) Total Marks: 1
Financial instruments are evolved just as ____________.
Select correct option:

Currency
Stock
Bond
Commodity

Question # 12 of 15 ( Start time: 04:54:51 AM ) Total Marks: 1
If YTM is less than the coupon rate the price of the bond is __________.
Select correct option:

Greater than its face value
Lower than its face value
Equals to its face value
All of the given options

Question # 13 of 15 ( Start time: 04:55:54 AM ) Total Marks: 1
_____________ are organized to eliminate the need of costly information gathering.
Select correct option:

Central bank
Commercial banks
Stock exchanges
Insurance companies

Question # 14 of 15 ( Start time: 04:56:21 AM ) Total Marks: 1
Which of the following best describes the relationship between Bond prices and yields?
Select correct option:

Move together inversely
Bond yields do not change since the coupon is fixed
Move together directly
Are independent of each other

Question # 15 of 15 ( Start time: 04:56:37 AM ) Total Marks: 1
At which money aggregate definitions relation is stronger with inflation and growth
Select correct option:

M1
M2
M3
None of above
 
Another Quiz:-

Question # 1 of 15 ( Start time: 04:59:31 AM ) Total Marks: 1
The interest rate that is involved in _____________ calculation is referred to as discount rate
Select correct option:

Present value
Future value
Intrinsic value
Discount value

Question # 2 of 15 ( Start time: 04:59:47 AM ) Total Marks: 1
Previously financial markets are located in which of the following?
Select correct option:

Coffee houses or Taverns
Stock exchanges
Bazaar
Coffee houses and Stock exchanges

Question # 3 of 15 ( Start time: 05:00:04 AM ) Total Marks: 1
----- example of channel fund from saver to borrower.
Select correct option:

Bank
Mutual fund
Finance companies
All of above

Question # 4 of 15 ( Start time: 05:00:15 AM ) Total Marks: 1
What characteristic of money is not included in securities characteristics
Select correct option:

Mean of payment
Unit of account
Store of value
Transfer of risk

Question # 5 of 15 ( Start time: 05:00:38 AM ) Total Marks: 1
The fact that common stockholders are residual claimants means:
Select correct option:

The stockholders receive their dividends before any other residuals are paid
The stockholders receive the remains after everyone else is paid
The stockholders are paid any past due dividends before other claims are paid
The common stockholders are responsible for all corporate debts

Question # 6 of 15 ( Start time: 05:01:51 AM ) Total Marks: 1
If YTM equals the coupon rate the price of the bond is __________.
Select correct option:

Greater than its face value
Lower than its face value
Equals to its face value
Insufficient information

Question # 7 of 15 ( Start time: 05:02:07 AM ) Total Marks: 1
Stock market bubbles can lead to:
Select correct option:

An inefficient allocation of resources
Stock market crashes
Patterns of volatile returns from the stock market
All of the given options

Question # 8 of 15 ( Start time: 05:03:19 AM ) Total Marks: 1
Core principles of Money and Banking include each of the following except?
Select correct option:

People act rationally
Time has value
Information is the basis for decisions
Risk requires compensation

Question # 9 of 15 ( Start time: 05:03:34 AM ) Total Marks: 1
Yield curves show which of the followings?
Select correct option:

The relationship between bond interest rates (yields) and bond prices
The relationship between liquidity and bond interest rates (yields)
The relationship between risk and bond interest rates (yields)
The relationship between time to maturity and bond interest rates (yields)

Question # 10 of 15 ( Start time: 05:03:56 AM ) Total Marks: 1
If bond’s rating is lower, what will be its price?
Select correct option:

Higher
Lower
Equal to
No change

Question # 11 of 15 ( Start time: 05:04:57 AM ) Total Marks: 1
The default premium:
Select correct option:

Is positive for a U.S. Treasury bond
Must always be less than 0 (zero)
Is also known as the risk spread
Is assigned by a bond rating agency

Question # 12 of 15 ( Start time: 05:05:14 AM ) Total Marks: 1
Which one of the following is the procedure of finding out the Present Value (PV)?
Select correct option:

Discounting
Compounding
Time value of money
Bond pricing

Question # 13 of 15 ( Start time: 05:05:37 AM ) Total Marks: 1
___________ include savings and time deposits and account for nearly two-thirds of all commercial bank liabilities.
Select correct option:

Non transactions Deposits
Borrowings
Checkable Deposits
Discount loans

Question # 14 of 15 ( Start time: 05:06:35 AM ) Total Marks: 1
The____________ are an assessment of the creditworthiness of the corporate issuer.
Select correct option:

Bond yield
Bond ratings
Bond risk
Bond price

Question # 15 of 15 ( Start time: 05:06:56 AM ) Total Marks: 1
When the auto manufacturing industry does poorly due to a recession this is an example of:
Select correct option:

Idiosyncratic risk
Systematic risk
Risk premium
Unique risk