3.148085752161e17
-should be right,did my best
Answer: Time division multiplexing
Explanation: because a slot is equivalent to 125ms
And each position inside a slot is for each signal and a single bit frim each voice conversation is sent during each 125ms slot
Answer:
#include <iostream>
#include <math.h>
using namespace std;
int to_the_power_of(int first, int second){
int result = pow(first, second);
return result;
}
int main()
{
int side;
cout<<"Enter the side of cube: ";
cin>>side;
int volume = to_the_power_of(side, 3);
cout<<"The volume is "<<volume<<endl;
return 0;
}
Explanation:
include the library iostream and math.h for using the input/output instruction and pow() function.
create the main function and declare the variable.
then, print the message for asking to enter the value from user.
the enter value is then store in the variable using cin instruction.
then, call the function with two parameters. program control move to the define function and calculate the first parameter raised to the power of the second parameter.
then return the result to the main function and finally print the result.
Given that,
Resistance, R = 30 ohms
Current, I = 10 A
To find,
The voltage of the battery.
Solution,
Let V is the voltage of the battery. We can use Ohm's law to find V.
Since, V = IR
Put all the values in the above formula.
V = 10×30
V = 300 Volt
So, the voltage of the battery in the voltmeter is 300 Volt.
Answer:
yall keep giving me the wrong answer
Explanation: