Answer:
Explanation: This seems more like an opinion answer so give your opinion, try yout best, just trying to help ;)
Answer:
$14
Explanation:
Simple interest can be calculated using below formula
I=PRT .................(1)
Where P= principal = $200
I= interest = 1%
T= time = 7 years
R= rate = 1% = (1/100) =0.01
Then substituting the given values into eqn (1)
I = (200× 0.01 × 7)
I =$14
Hence, she will her earn $14 of interest
Answer:
Option(d) i. e "Data Source Configuration" is the correct answer for the given question.
Explanation:
In the ADO.Net of Visual basic 2012 when we want to create the dataset we used the Data Source Configuration wizard. The Data Source Configuration wizard helps to connect with the database in the visual basic of the 2012 application. The Following are the step when we want to create the Dataset.
- Select the project which will we have to connect with the database
- After Selecting the project open the wizard of Data Source Configuration.
- After selecting the wizard to choose the new data source as well as the database type of the data-source.
- Finally, configure the appropriate database file.
Answer:
The pseudocode algorithm is as follows:
- Start
- Input Quantity
- Input Price
- Bill = Quantity * Price
- Discount = 0.10 * Bill
- Display "Before Discount: "+bill
- Display "Discount: "+discount
- Display "After Discount: "+(bill - discount)
- Stop
Explanation:
This begins the algorithm
Start
First, get input for quantity
Input Quantity
Then, get input for price
Input Price
Calculate the total bill (before discount)
Bill = Quantity * Price
Calculate discount
Discount = 0.10 * Bill
Print the total bill (before discount)
Display "Before Discount: "+bill
Print the discounted amount
Display "Discount: "+discount
Print the total bill (after discount)
Display "After Discount: "+(bill - discount)
End of algorithm
Stop