Answer:
a) and b) are correct.
Explanation:
You can also type ipconfig on windows terminal to see your ip address - or ifconfig if you are running linux / macos terminal.
Answer:
It can be expressed in 2 ways horizontal and vertical ways.
make sure to follow me and mark me as the brainliest
Answer:
long power(int i)
{
return pow(2,i);
}
Explanation:
The above written function is in C++.It does not uses loop.It's return type is long.It uses the function pow that is present in the math library of the c++.It takes two arguments return the result as first argument raised to the power of second.
for ex:-
pow(3,2);
It means 3^2 and it will return 9.
The process of combining information from a variety of sources