Answer:
First check the if the adapters on the router or site are connected (Ipconfig)
Next run a flush Dns to clear the sites dns logs (ipconfig/flushdns)
If non of that works you would run a restart on the server that is transfering data through the site.
If that doesn't work you will have to call a tech support from another company or your boss to tell him that there is nothing you can do and to ask for help!
Explanation:
Hopefully this helps! BTW I'm 13 so I wouldn't rely on my information that is personal what I would do though.
Answer:
if 3 + 3 == 6:
print("Hey 3 and 3 is 6")
if 5 + 3 == 8:
print("You are not going to catch me")
if 5 + 6 == 10:
print("****nag*****")
else:
print("You thought like 5 + 6 = 11 ")
if 6 + 6 == 12:
print("Great! This one is correct")
if 5 + 7 == 12:
print("Great, this is correct as well")
if 3 + 3 == 4 and 5 + 5 == 10:
print("Great! Congrats")
Explanation:
Please check the answer, and practice if else and various other ladders as much as you can.
Answer:
The solution is implemented using C++
int getRowTotal(int a[][5], int row) {
int sum = 0;
for(int i =0;i<5;i++)
{
sum += a[row][i];
}
return sum;
}
Explanation:
This defines the getRow function and the parameters are arr (the 2 d array) and row and integer variable
int getRowTotal(int arr[][5], int row) {
This defines and initializes sum to 0
int sum = 0;
This iterates through the row and adds the row items
<em> for(int i =0;i<5;i++) {
</em>
<em> sum += arr[row][i];
</em>
<em> }
</em>
This returns the calculated sum
return sum;
}
Answer:
The hacker which represents the highest risk to my computer is the Script Kiddie.
Explanation:
A Script Kiddie cannot make their own programs.
They hack by using existing codes, scripts, web shells etc to access a work station, mutilate webpages etc.
The difference between a Hacker and a Script Kiddie is that a hacker does not need another person's code. They are skilled at writing their own codes which are can be very potent. This level of skill can be difficult to attain except for very bright minds.
The script kid needs very little knowledge of scripts and they are well on their way to causing damage.
Cheers!