Answer:
8 tips for cyber safety
1. Keep Personal Information Professional and Limited
2. Keep Your Privacy Settings On
3. Practice Safe Browsing
4. Make Sure Your Internet Connection is Secure. Use a Secure VPN Connection
5. Be Careful What You Download
6. Choose Strong Passwords
7. Make Online Purchases From Secure Sites
8. Be Careful What You Post
8 STEPS TO STOP YOUR CHILD’S CYBERBULLY
Resist The Urge To Respond Or Retaliate
Document The Bullying
Get Help
Block The Bully
Keep Passwords Secret
Be A Teammate
Approach The Parents
Support Your Child With A Stress-Free, Supportive Home
Explanation:
You'll need a helper variable for this, so depending on your programming language, the solution becomes:
int helper;
helper = arr[i];
arr[i] = arr[j];
arr[j] = helper;
Answer:
Here's some really bad code that works:
public static double average(int a, int b, int c, int d, int e)
{
return (((double)a + b + c + d + e) / 5);
}
Changing a worksheet name in Microsoft Excel can be done in multiple ways, but only one of them is correctly explained in the provided option, which is (A) double-click both the worksheet tabs one at a time and then enter the new names.
The other options are incorrect. Even though you can change a worksheet’s name by right-clicking the sheet name, you also need to choose the appropriate option from the window bar that would appear – which is, of course, the rename option.
Answer:
B. n-1
Explanation:
If there are n vertices then that vertex can be origin of at most n-1 edges.Suppose that you have a graph with 8 vertices you can select a vertex from these 8 vertices now you have 7 other vertices.So the vertex you selected can have at most 7 edges or it can be origin of at most 7 edges.So we conclude that the answer is n-1.