VUsolutions Transferred to AchiKhasi.com
From December 2011, this blog www.VUsolutions.blogspot.com is transferred to http://achikhasi.com/vu/ . So, you may visit http://achikhasi.com/vu/ for latest study related help.
Wednesday, June 17, 2009
Posted In
Important Notices
Edit This
Dear Students,Thanks for your TRUST and continuous appreciation. We feel proud when we look at the visiting students ratio of our website i.e. almost 10,000 visitors/students visit per day and we received more than 3000 emails daily.
We feel very happy to inform you that our updater service (update on Cell Phone) is going very successful and have more than 6500 cell numbers in our UPDATER service book.
Dear students, if you are away from your computer (PC) and want to keep in touch with our websit anyway, just email us your mobile/cell/Vfon number at "virtual.uni.help.updater@gmail.com". We 100% keep you touch with our website (www.VUsolutions.blogspot.com).
Please feel free to comments on this offer, all type of comments will highly be appreciated and responded.
BEST OF LUCK
VU Help Desk..
Wednesday, June 17, 2009
Posted In
MGT
Edit This
Quiz Start Time: 07:13 PM Time Left 72
sec(s)
Question # 1 of 20 ( Start time: 07:13:59 PM ) Total Marks: 1
Financial instruments are evolved just as ____________.
Select correct option:
Currency
Stock
Bond
Commodity
Quiz Start Time: 07:13 PM Time Left 69
sec(s)
Question # 2 of 20 ( Start time: 07:14:21 PM ) 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
uiz Start Time: 07:13 PM Time Left 86
sec(s)
Question # 3 of 20 ( Start time: 07:14:53 PM ) Total Marks: 1
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
Quiz Start Time: 07:13 PM Time Left 56
sec(s)
Question # 5 of 20 ( Start time: 07:16:30 PM ) Total Marks: 1
One argument for an independent central bank is:
Select correct option:
Without independence competent people would not take a position in a central bank
Successful monetary policy requires a long time horizon usually well beyond the next election of most public officials
Politicians have a long-run focus that is not well tuned to addressing economic problems
Central bankers have a short run focus that usually corrects problems faster
Quiz Start Time: 07:13 PM Time Left 80
sec(s)
Question # 6 of 20 ( Start time: 07:17:08 PM ) Total Marks: 1
We need __________ to carry out day to day transactions.
Select correct option:
Money
Bonds
Stocks
Loans
Quiz Start Time: 07:13 PM Time Left 75
sec(s)
Question # 7 of 20 ( Start time: 07:17:29 PM ) 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
Quiz Start Time: 07:13 PM Time Left 81
sec(s)
Question # 8 of 20 ( Start time: 07:17:58 PM ) 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
Quiz Start Time: 07:13 PM Time Left 68
sec(s)
Question # 9 of 20 ( Start time: 07:18:26 PM ) Total Marks: 1
An increase in the expected inflation shifts the bond demand to the _________.
Select correct option:
Right
Left
No change
All of the given options
Quiz Start Time: 07:13 PM Time Left 84
sec(s)
Question # 10 of 20 ( Start time: 07:18:51 PM ) Total Marks: 1
Requiring a large deductible on the part of an insured is one way insurers treat the problem of:
Select correct option:
Free-riding
Moral hazard
Adverse selection
The Lemons market
Quiz Start Time: 07:13 PM Time Left 81
sec(s)
Question # 11 of 20 ( Start time: 07:19:29 PM ) Total Marks: 1
Mark borrows $8,000 and then repays $8,600 to ABC bank. What is the amount of interest in this payment?
Select correct option:
$600
$500
$400
$100
Quiz Start Time: 07:13 PM Time Left 84
sec(s)
Question # 12 of 20 ( Start time: 07:19:52 PM ) Total Marks: 1
Which one of the following is the narrowest definition of money?
Select correct option:
C
M1
M2
M3
Quiz Start Time: 07:13 PM Time Left 73
sec(s)
Question # 13 of 20 ( Start time: 07:20:07 PM ) 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
Quiz Start Time: 07:13 PM Time Left 85
sec(s)
Question # 15 of 20 ( Start time: 07:22:30 PM ) 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
Quiz Start Time: 07:13 PM Time Left 74
sec(s)
Question # 16 of 20 ( Start time: 07:22:47 PM ) Total Marks: 1
The Fed lacks complete control over the money supply because it cannot perfectly predict:
Select correct option:
Discount borrowing by the banks
Shifts from deposits to currency
Excess reserves held by banks
Any of the above
Quiz Start Time: 07:13 PM Time Left 32
sec(s)
Question # 17 of 20 ( Start time: 07:23:38 PM ) Total Marks: 1
___________ is the strategy of reducing overall risk by making two investments with opposing risks.
Select correct option:
Spreading the risk
Standard deviation
Hedging the risk
Variance
Quiz Start Time: 07:13 PM Time Left 63
sec(s)
Question # 18 of 20 ( Start time: 07:24:39 PM ) 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
Wednesday, June 17, 2009
Posted In
CS and IT
Edit This
SOLUTION:
#include
#include
#include
using namespace std;
int main()
{char filename[30];
int num,i;
string name,classs,line;
ifstream input;
ofstream output;
cout<<"what is the name of the file you are using? ";
cin>>filename;
output.open(filename); //open file
if(output.fail())
{ cout<<"file did not open please check it ";
system("pause");
return 1;
}
output<<"Roll NO Student Name Class ";
cout<<"Enter Roll No ( <0 to exit): ";
cin>>num;
while(num>0)
{cin.ignore(255,' ');
cout<<"Enter name: ";
getline(cin,name);
cout<<"Enter class: ";
getline(cin,classs);
output<<" "<<<" "<<<" "<<
cout<<"Enter Roll No ( <0 to exit): ";
cin>>num;
}
output.close();
input.open(filename); //open file
if(input.fail())
{ cout<<"file did not open please check it ";
system("pause");
return 1;
}
cout<
while(input)
{getline(input,line);
cout<<
}
output.close();
system("pause");
return 0;
}
______________________________
2nd SOLUTION
______________________________
#include
#include
#include
int main(void)
{
char rollNo[10],studentName[20],studentClass[20];
ifstream iFile;
ofstream oFile;
oFile.open("Student_info.txt",ios::out);
iFile.open("Student_info.txt");
if (!iFile)
{
cout << "iFile could not be opend";
}
if (!oFile)
{
cout << "oFile could not be opened";
}
oFile << "RollNo" << "\t" << "StudentName" << "\t" << "Class" <oFile << "101" << "\t" << "AliRaza" << "\t" << "BS(CS)" <oFile << "102" << "\t" << "Usman" << "\t" << "MS(CS)" <oFile << "103" << "\t" << "Faizan" << "\t" << "BS(CS)" <oFile << "104" << "\t" << "Rehan" << "\t" << "MIT" <oFile << "105" << "\t" << "Ahmed" << "\t" << "MCS";
oFile.close();
while (!iFile.eof())
{
iFile >> rollNo >> studentName >> studentClass;
cout << rollNo << "\t"<< studentName << "\t"<<"\t"<
}
iFile.close();
system("PAUSE");
return 0;
}
www.VUsolutions.blogspot.com
[[NOTE:- We always try our best to upload 100% correct solution BUT it is requested that you kindly review it before submission, please.]]
_________________________________________
Problem Statement:
Writing and Reading student data in a file.
Detailed Description:
Write a program in which you have to:
1. Create a text file “Student_info”.
2. Using Code Write the following data in it:
Roll NO Student Name Class
101 Ali Raza BS(CS)
102 Usman MS(CS)
103 Faizan BS(CS)
104 Rehan MIT
105 Ahmed MCS
3. Open file and read data from it and display on the screen.
Sample Output
Student Information
Roll NO Student Name Class
101 Ali Raza BS(CS)
102 Usman MS(CS)
103 Faizan BS(CS)
104 Rehan MIT
105 Ahmed MCS
Deadline
Your assignment must be uploaded/submitted on or before 18-06-2009.
Wednesday, June 17, 2009
Posted In
CS and IT
Edit This
Download from this link:
http://www.2shared.com/file/6344029/ffa49302/VUsolutions.html
NOTE: when u'll try to open the solution file, u may see a msg like an error, its not an error, u just click OPEN button instead of cancel.
VU Help Desk
www.VUsolutions.BlogSpot.com
Wednesday, June 17, 2009
Posted In
Fin
Edit This
Download from this link:
http://www.2shared.com/file/6343932/e36b78fd/Fin621__VUsolutions_.html
Best of Luck
VU Help Desk
www.VUsolutions.BlogSpot.com