The argument for the function would be answer "D".
Answer:
Question users
Explanation:
Q:
Several users on the second floor of your company's building are reporting that the network …
A. Establish a plan of action
B. Question users...
A:
B. Question users
<span>The Internet Simulator “broadcast” every message to every person in the group. Even with a good protocol, there are some privacy and security challenges while playing battleship on the internet simulator. Some of them are:</span><span>
- Broadcast mode allows all users to see all of the moves in plain text
- You do not know exactly who the message came from</span>
The user requests an application to run by making a system call to get it started
Answer:
Please find the edited program below:
#include<iostream>
#include <stdio.h>
using namespace::std;
int main()
{
char ch;
cout<<"Enter any letter: ";
ch=getchar();
if(ch=='a' || ch=='e' || ch=='i' || ch=='o' || ch=='u'|| ch=='A' || ch=='E' || ch=='I' || ch=='O' || ch=='U')
cout<<"Vowel";
else
cout<<"Consonant";
return 0;
}
Explanation:
We cannot input char type using cin, we need to use getchar, and it is under header file stdio.h. Also, for comparing we need to use == and not =. And corrrect way of including std is using namespace::std;