Answer:
The answer is A4B₁₆ = 2635₁₀ = 101001001011₂
Explanation:
To convert from hexadecimal base system to binary base system, first you can do an intermediate conversion from hexadecimal to decimal using this formula:
where position of the x₁ is the rightmost digit of the number and the equivalents hexadecimal numbers to decimal:
- A = 10.
- B = 11.
- C = 12.
- D = 13.
- E = 14.
- F = 15.
A4B₁₆ = A*16²+4*16¹+B*16⁰ = 2560 + 64 + 11 = 2635₁₀
Now, you have the number transformed from hexadecimal to decimal. To convert the decimal number 2635 to binary: Divide the number repeatedly by 2, keeping track of each remainder, until we get a quotient that is equal to 0:
2635 ÷ 2 = 1317 + 1;
1317 ÷ 2 = 658 + 1;
658 ÷ 2 = 329 + 0;
329 ÷ 2 = 164 + 1;
164 ÷ 2 = 82 + 0;
82 ÷ 2 = 41 + 0;
41 ÷ 2 = 20 + 1;
20 ÷ 2 = 10 + 0;
10 ÷ 2 = 5 + 0;
5 ÷ 2 = 2 + 1;
2 ÷ 2 = 1 + 0;
1 ÷ 2 = 0 + 1;
Now, construct the integer part base 2 representation, by taking the remainders starting from the bottom of the list:
2635₁₀ = 101001001011₂
Answer:
My goal is to have good grades because I failing now and I want to try and try to get my grade up if I do I will be successful and when I grow up I will have a good job and a better life for me and my family.If I success my life will be so different.
One rupee is about .015 of an American dollar. So multiply with how ever many rupee's she had.
Answer:
1. the number of employees using each computer
2. the number of networked computers
Explanation:
In modern times, instead of the old passing of physical files in and out of different departments of the firm, business firms are now using networks to conduct their day to day activities. These activities are work shared between the employees in the firm.
However, network design is affected by certain factors. These factors are:
1. Number of users connected to the network: in this case, good examples are: the number of employees using each computer and the number of networked computers
Other factors include
2. software,
3. viruses,
4. hardware, and
5. connection.
Answer:
Written in C++
#include<iostream>
using namespace std;
int main()
{
const float SALES_TAX = 0.06625;
int total = 1000;
cout<<"Total: ";
cin>>total;
float grand_total = 0;
grand_total = total + total * SALES_TAX;
if (grand_total <= 1000)
{
cout<<"Grand total is less than or equal to 1000 it is $";
printf("%.2f", grand_total);
}
else if (grand_total > 1000 && grand_total <= 2000 )
{
cout<<"Grand total is more than 1000 less than or equal to 2000 it is $";
printf("%.2f", grand_total);
}
else
{
cout<<"Grand total is greater than 2000 it is $";
printf("%.2f", grand_total);
}
cout<<"\nProgram finished!";
return 0;
}
Explanation:
<em>I've added the full source code as an attachment where I use comments to explain difficult lines</em>