Solution -
In order to convert a binary number to hexadecimal ,we need to chunk the binary number into groups of 4 digits, adding 0 if necessary.
As the given number number is a 16 digit binary number, so when chunk in 4 digit groups, it will form 4 groups. Each group will represent a single digit in hexadecimal code.
So, a 16-digit binary pattern converts to a 4 digit hexadecimal value.
Hello,
function minmax(int p1,int p2,int p3, int adr_big, int adr_small)
{ int mini=p1,maxi=p1;
if (p1>p2) {mini=p2;}
else {maxi=p2;};
if (p3>maxi) maxi=p3;
if (p3<mini) mini=p3;
*adr_big=maxi;
*adr_small=mini;
};
// main
int a=31,b=5,c=19,big,small;
minmax(a,b,c,&big,&small);
Answer : 6 is opposite of 1
All you have to do is write your question and someone will answer. For example, instead of writing "I do not understand how I find answers on here" you would ask something like what is 9*5? Then 2 people will see your question and answer. There are no pre-recorded answers, everything happens live. Hope this helps!
A segment bisector is a segment, ray, line, or plane that intersects a given segment at its midpoint.
For example, in the diagram shown, line SQ bisects segment PR because line SQ intersects segment PR at its midpoint which is Q.