Answer:
to send an email to someone without revealing that person’s email address to others on the distribution list
Explanation:
BAM
With a little digging I've done, finding this question with different answers the one you want is D. none of the above
Organize data within a document..draw any shape you wants within a document... easily create manipulate shapes within a document. hope this helps
Answer:
yes, an HTML webpage must begin with an HTML element
Explanation:
<HTML> <!-- Website Content --> </HTML>
Explanation:
This is easily solvable with a for loop. Something like:
(I assume c++)
#include <iostream>
#include <string>
int main() {
take_input: //tag
std::string input;
cin >> input; //take the input
int spaceCount = 0;
char checking;
for(unsigned int i = 0; i == input.length(); ++i) {
checking = spaceCount[i];
if(checking == ' ')
spaceCount++;
}
if(spaceCount >= 1 && input.length >= 5)
std::cout << "Your name is " + input;
else
goto take_input; // reasks for input if the conditions are not met
return 0;
};
**remove all spaces before using the code, the if statements are messed up