They're (Almost) the same thing, Silly!
Answer:
result = pow(10,5);
Explanation:
A complete code in C++ with the necesary header file for the math class is given below:
#include <iostream>
//import the header file to use the power function
#include<cmath>
using namespace std;
int main()
{
double base = 10.0;
double result;
//Use Power function to raise base to power of 5
result = pow(10,5);
//print out the result
cout<<result;
return 0;
}
Answer:
Explanation:
It aims to transform the entire ecosystem of public services through the use of information technology.ICT holds particular promise in areas of governance and public participation. Age can use information to reduce corruption and increase government transparency, accountability, efficiency and so finally gud night guys and take care.
plz mark as brainliest
Answer:
B) False
Explanation:
You can adjust the boxes to whatever you'd like, and even add more if you needed too.
Answer:
// here is code in c++.
#include <bits/stdc++.h>
using namespace std;
// recursive function to print digit of number in revers order
void rev_dig(int num)
{
if(num==0)
return;
else
{
cout<<num%10<<" ";
// recursive call
rev_dig(num/10);
}
}
// driver function
int main()
{
int num;
cout<<"enter a number:";
// read the number from user
cin>>num;
cout<<"digits in revers order: ";
// call the function with number parameter
rev_dig(num);
return 0;
}
Explanation:
Read the input from user and assign it to variable "num". Call the function "rev_dig" with "num" parameter.In this function it will find the last digit as num%10 and print it. Then call the function itself with "num/10". This will print the second last digit. Similarly it will print all the digits in revers order.
Output:
enter a number:1234
digits in revers order: 4 3 2 1
Diagram :