Answer:
Functional requirements usually define if/then behaviours and include calculations, data input, and business processes. Functional requirements are features that allow the system to function as it was intended. Put another way, if the functional requirements are not met, the system will not work.
Explanation:
Wouldn’t be A, C. When editing a word document it would be B and when just opening one from someone it would be D. This question doesn’t give a brief explanation of what’s happening. Can you give more information or is that all of the question?
Don’t crowd the slide, use images that will grab them audience’s attention, don’t use fonts that are hard to read, make sure your font color can show up on your background color!
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.