Answer:
ask customers to use strong passwords to protect their accounts
The answer is copyright like for example if you copy and paste a essay offline and don’t give credit to the author it called copyright
Hard Disk Drive
Solid State Drive
And Random Access Memory (RAM)
Answer:
if ( name1 > name2) {
first = name1;
} else {
first = name2;
}
Explanation:
First you need take a decision for that reason you need and if - else structure to decide if asign the variable name1 or the variable name2 to the result. Later you can use an > or < to compare two strings because it use the ASCII code to compare wich one is larger than another.
if ( name1 > name2) {
first = name1;
} else {
first = name2;
}