<span>The character to the right of the cursor is deleted. </span>
P = $48,000
r (Rate) = 5%
t (Time) = 5 (Years)
Interest = Prt =(48,000)(0.05)(5)= $12,000
The simple interest is $12,000 over the course of 5 years, with an annual interest of 5% and a loan of $48,000
I hope that answers your question! (I'm new to this app so sorry if that's not what you were looking for!)
Answer:
A) Internet Protocol address
Explanation:
An IP (Internet Protocol) address is a 32-bit number typically rendered in decimal as four fields ranging in value from 0–255, separated by periods. The number given matches that pattern, so could be considered to be an IP address. ICANN manages a registry that associates such addresses with domain names.
Answer:
its easy
Explanation:
there are are 5 main rules
in binary there are 2 number 0 and 1
0 + 0 = 0
0 + 1 = 1
1+0=1
1+1=0 carry 1
e . g
1 1 1
1 0 1 0 1 0
+ 1 1 0 0 1 0
-------------------------
1 1 1 1 1 0 0
*in bold are the ones that you need to carry.
in decimal there are 10 possible numbers 0- 9
when you do 1 + 9 it becomes 10, this can be done easily, however if you do 1 + 9 in a table like above, you will get 0 for the first column and you will carry 1 to the next column .
in binary is the same idea but using on 2 numbers 1 and 0
e.g
1
1
+ 9
----------
1 0
*in bold are the ones that you need to carry.
hope it helps and good luck in your exam.
Answer:
See explaination for program code
Explanation:
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
int main() {
string name;
int age;
cout << "Enter name of user: ";
getline(cin, name);
cout << "Enter age of user: ";
cin >> age;
ofstream outdata("outdata");
outdata << name << " " << age << endl;
outdata.close();
return 0;
}