Answer:
FFF4
Explanation:
Binary representation of 12 = 00001100
Expressing it in hexadecimal format : 0C
Binary representation of -12:
Step 1 : Computing 1's complement for 12 =11110011
Step 2 : Adding 1 to 1's complement to get the 2's complement =>
11110011+1 = 11110100
Converting the 2's complement representation to hexadecimal format:
F4 ( 8 bit representation) or FFF4 ( 16 bit representation)
Can I get some options?
The second one is most likely "Heart", but the first one could be a number of things, unless this just pasted incorrectly.'
I think the student success many people are into the technology today’s and it’s not really a lot of people are not
I'm gonna say D. No sentence error
Answer:
<em>#include <iostream></em>
<em>using namespace std;</em>
<em>//function definition</em>
<em>void send_variable(int num){</em>
<em> cout<<"The Number is "<<num<<endl;</em>
<em>}</em>
<em>// main function begins here</em>
<em>int main()</em>
<em>{</em>
<em> int x =15; //declares an it variable and assigns 15</em>
<em> // Calls the function send_variable</em>
<em> send_variable(x);</em>
<em> return 0;</em>
<em>}</em>
Explanation:
Using C++ programming language we created the function called send_variable and in the main function we call this function which only displays the value of an int variable passed unto it.