Answer:
D: HTTP
Explanation:
When we talk about the email address and the different parts, we can mention for example:
Firstly the username, always an email address starts with a username, next we must use the symbol @, for example:
peter @
michael @
we can add numbers or some characters
henry_98 @
The last part is the domain name, this is the email's company.
Answer:
problems or struggles
Explanation:
i believe this because with an effective team most problems aren't there and you can understand and work out problems or struggles
Answer:
#include <iostream>
using namespace std;
int main()
{
int i = 45;
for ( i = 45; i <=165; i = i + 6)
cout << i << endl;
}
Explanation:
I corrected your code and highlighted the mistakes. Even though you wrote the correct algorithm, your code did not compile because of the typos you made.
Remember, C++ is a case-sensitive language. That means, "For" is not same as "for".
Generally, variables and keywords are written in lower case. Of course, there are exceptions, such as constant variables are all written in uppercase letter and class names start with an uppercase letter.