Answer:
LinkedIn is very safe
Explanation:
LinkedIn is very safe, that being said you should never post private information about yourself anywhere that you do not want others to see/know. LinkedIn is a job recruiting and networking site, meaning that all the information that you have or will be publishing there should be related to your career. There is no reason for you to publish private information such as document numbers, social security number, address, bank account info, etc.
Answer:
int[] a = {10, 20, 30, 40, 50, 60, 70, 80, 90, 100};
Explanation:
//written in java
The left side <u>int[] a</u> Declare a variable(a) which is of type Integer array(<u>int[]</u>).
The equal sign(=) assign the right side to the left side.
The right side initialize the integer array(a) with ten element.
Take this one step at a time. Your teacher has given you the code for step 1. Now write step 2. Then 3, and so on.
For step 2: if you're using Python v2.x you'd use a line like
guess = int( raw_input( "Take another guess: " ) )
For Python v3.x it would be:
guess = int( input( "Take another guess: " ) )
Break it down into small pieces, it's not a complicated assignment.