Searching for "Ho"

Q:

A trader owes a maerchant Rs10028 due 1yr hence The trader wants to settle the account after 3 months .If the rate of interest is 12%per annum How much cash should he pay?

A) Rs.9000 B) Rs.9002
C) Rs.9200 D) Rs.9120
 
Answer & Explanation Answer: C) Rs.9200

Explanation:

Required Money = P.W of Rs. 10028 due 9 months hence  

= Rs.[10028 x 100] / [100+(12 x 9/12)] =Rs.9200

Report Error

View Answer Report Error Discuss

Filed Under: True Discount

Q:

What is a Multi-homed Host?

Answer

It is a host that has a multiple network interfaces and that requires multiple IP addresses is called as a Multi-homed Host

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

Q:

How many days are there in x weeks x days?

A) 7x * x B) 8x
C) 14x D) 7
 
Answer & Explanation Answer: B) 8x

Explanation:

x weeks x days = (7x + x) days = 8x days.

Report Error

View Answer Report Error Discuss

Filed Under: Calendar

Q:

At a game of billiards, A can give B 15 points in 60 and A can give C to 20 points in 60. How many points can B give C in a game of 90?

A) 30 points B) 20 points
C) 10 points D) 12 points
 
Answer & Explanation Answer: C) 10 points

Explanation:

Report Error

View Answer Report Error Discuss

Filed Under: Races and Games

Q:

How to set breakpoints?

Answer

Setting up the break points:



  1.  Go to the line where you need to mark the breakpoint.

  2.  Click with mouse on left corner margin of that line.

  3.  Another way is to press F9

Report Error

View answer Workspace Report Error Discuss

Subject: .NET

Q:

Explain how to configure Trace switches in the application’s .config file.?

Answer

switches are configured using the .config file


<system.diagnostics>


<switches>


<add name="MyTraceSwitch" value="1" />


<add name="TraceSwitch2" value="1" />


</switches>


</system.diagnostics>


both are on.

Report Error

View answer Workspace Report Error Discuss

Subject: .NET

Q:

Describe how to step through code in .NET.

Answer

Steps to step through the code in .NET:



  1. Start the program in debug mode.

  2. When the first breakpoint is reached then step through can be done in one of the two ways:



  •  Press F10 to move to next line.

  •  Select debug menu and click on step over. This would step over the breakpoint to next level.


       3. Other options are: “Step Into” and “Step Out”.

Report Error

View answer Workspace Report Error Discuss

Subject: .NET

Q:

How to create a Delegate?

Answer

public delegate void Del<T>(T item);


Del<int> d1 = new Del<int>(Notify);

Report Error

View answer Workspace Report Error Discuss

Subject: .NET