The Contact Details of the DTP firm would usually be found at the bottom of the flyer, to give way to the event to be advertised on the top and the middle of the flyer.
Answer:
Microsoft Poweroint
Explanation:
this software helps people to present their projects.
Answer:
EMI, and RFI
Explanation:
EMI stands for Electromagnetic Interference when in the radiofrequency spectrum can also be known as Radio-Frequency Interference (RMI).
An unshielded ethernet cable (which is made of copper) can act as an antenna, any noise that leaks to it will cause an interference with the signal, and thus causing data corruption and signal distortion.
Answer:
#include<iostream>//library inclusion
using namespace std;
int main()
{
int userInput;
do//start of do while loop
{
cout << "Enter a number less than a 100" << endl;
cin >> userInput;
if (userInput < 100) //condition
{
cout << "YOu entered less than a hundred: " << userInput << endl;
}
else
{
cout << "your number is greater than 100" << endl;
}
} while (userInput > 100);//condition for do while
return 0;//termination of int main
}
Explanation:
The program has been commented for you. The do-while loop enters the first loop regardless of the condition. Then after the first iteration, it checks for the condition. If the condition is being met, it will iterate through, again. Otherwise it will break out of the loop and land on the "return 0;" line. Which also happens to be the termination of the program in this case. The if-else condition is used for the user to see when prompted.