Answer:
Consistency
Explanation:
Bi integrating marketing communications, we can infer that the different brands working under Excel Enterprises have the same basic design, so the marketing department can sell their features easily, without having to create different campaigns or protocols for each individual product.
This homogeneous design then turns intuitive for the user, a textbook definition of consistent design, and the tone is maintained through the different brands.
Just like when you move from Microsoft's Excel to Microsoft's Word, you know the usage of each program is different, but the layout is the same, allowing you to understand the basics of the UX (user interface) of one, by understanding the other.
Answer:
#include <bits/stdc++.h>
using namespace std;
int main() {
string in;//string in for taking input...
cout<<"Do you want to continue ?"<<endl;
getline(cin,in);//taking input from the user...
if(in=="y"||in=="Y"||in=="yes"||in=="OK"||in=="Why not?")//conditions..
cout<<"OK"<<endl;
else if(in=="No")
cout<<"terminating"<<endl;
else
cout<<"Bad input"<<endl;
return 0;
}
Explanation:
I have taken a string in.
Then taking input from user.
Checking the conditions using if else if ladder.
Answer:
Page up(PgUp) and Page down(PgDn) keys fall under the navigation keys.
Explanation:
Page up(PgUp) and Page down(PgDn) keys fall under the navigation keys.
They include the four Arrow keys, Page Up, Page Down, Home and End keys.
<u>Arrow Keys:</u>
One of four computer keys marked with an up, down, left, or right arrow, used for moving the cursor.
<u>Page Up and Page down:</u>
Page Up and Page Down keys abbreviated as PgUp and PgDn are two keys commonly found on computer keyboards. The two keys are used to scroll up or down in documents.
<u>Home Key:</u>
The Home key is used to return the typing cursor to the beginning of the line on which you are currently typing.
<u>End Key:</u>
The end key is opposite to home key. It is used to return the typing cursor to the end of the line on which you are currently typing....