Answer:true
Explanation:they are your management and want you to tell them when you have completed a task or if something happens
What kind of question is this?
Answer:
T
Explanation:
Doxing:
search for and publish private or identifying information about (a particular individual) on the internet, typically with malicious intent.
i would say it matches the definition
Answer:
Following is the C++ code for the question given :-
#include <iostream>
#include<string>
using namespace std;
int main() {
string s1,s2;//two strings to store the words.
cin>>s1;//Input statement.
cin>>s2;//Input statement.
cout<<s1<<" "<<s2<<endl;//printing both words in one line separated by space.
return 0;
}
Input:-
make
choices
Output:-
make choices
Explanation:
I have taken two strings two store two words.After taking the input I have printed both the strings which contains the words entered by the user separated by space.