If truth or false it should be true
Answer:
Function:
int fun(int n,char c) // function definition with a two argument in which variable n is a integer type and variable c is a character type.
{
while(n>0)// while loop
{
printf("%c",c); // print statement for character
n--; // decrease statement to false the loop.
}
return 0; //return statement.
}
output:
- When the user pass n=5 and c='a', it will prints 5 times 'a' character.
- When the user passes n=10 and c='t', it will print 10 times 't' character.
Explanation:
- Firstly we declare a function of two arguments in which variable n is an integer type and variable c is a character type.
- Then in the function body, we use while loop from n times iteration because question demands to print n time any character.
- Then in the loop body, we use a print statement to print a character and a decrease statement to false the loop after a finite iteration.
Answer: Web Jacking
Here, the hacker takes control of a web site fraudulently. He may change the content of the original site or even redirect the user to another fake similar looking page controlled by him.
If you have any other questions about computers or even hacking hit me up because I know a lot about computers
Answer: by using the safe mode
Explanation: to start the computer using the safe mode immediately after the computer is powered on or restarted (usually after you hear your computer beep), tap the F8 key in 1 second intervals.