Answer:
D. It does not reflect any changes made in the document
Explanation:
A limited access is usually done by middle level and top level managers in an organisation to prevent other staff member to edit or make changes to confidential documents when they are out of the office, though the staff can read it, they can not make changes to it.
Explanation:
#include<iostream>
#include<string.h>
using namespace std;
char *removestring(char str[80])
{
int i,j,len;
len = strlen(str);
for( i = 0; i < len; i++)
{
if (str[i] == ' ')
{
for (j = i; j < len; j++)
str[j] = str[j+1];
len--;
}
}
return str;
}
int main ()
{
char str[80];
cout << "Enter a string : ";
cin.getline(str, 80);
strcpy(removestring(str), str);
cout << "Resultant string : " << str;
return 0;
}
In this program the input is obtained as an character array using getline(). Then it is passed to the user-defined function, then each character is analyzed and if space is found, then it is not copied.
C++ does not allow to return character array. So Character pointer is returned and the content is copied to the character array using "strcpy()". This is a built in function to copy pointer to array.
Answer:
Jorge would need over 13 number of 9 volts battery to create 120 volts.
Explanation:
A series connecting is one in which two or more batteries are connected terminal-to-terminal, so that the same current flow through each battery. Each battery has an internal resistance, r, which is the opposition to the flow of current by the battery itself.
The total emf, E, of a given number of cells connected in series is given by;
E = + + + + .........
And each of the cell has an internal resistance, r. So that the total internal resistance of the cells in series is;
r = + + + + .......
Thus, Jorge's mistake was that 13 number of 9 volts batteries would not give 120 volts because each battery has its internal resistance. Therefore the appropriate answer is that he would need over 13 number of 9 volts battery to create 120 volts.
Socractic Would Definitely Help With An Answer Like This