Answer:
C. a registered Microsoft Account
Answer:
i like ghost and modern 3
Explanation:
Hi there!
A audit trial is a report of changes that have been obtained to a file or some kind of database.
Hope this helped!~
Answer:
Statement to get input values:-
cin>>birthMonth>>birthYear;
Statement for output:-
cout<<birthMonth<<"/"<<birthYear<<endl;
Explanation:
The statements are in C++ language.
To get the input we use cin in C++ with >>.
We are taking the input of birthMonth and birthYear.
For printing we use cout .We have printed birthMonth then slash and then birthYear.