Wipe off the hard drive with a software eraser but it won't be quick and won't work on defective disks
Answer: (D) IPCONFIG
Explanation:
The IPCONFIG is the type of tool that can be use to flush or refresh the dynamic host configuration (DNS) cache on the window client. The IPCONFIG display various types of parameters such as subnet mask, IP address and the default gateway.
In the computing, the IPCONFIG is stand for the internet protocol configuration and it is one of the operating system applications which basically display all Transmission control protocol/ Internet protocol (TCP/IP) network configurations.
Therefore,Option (D) is correct.
Answer:
Social networking platform and WindowsandroidIOS
Explanation:
Social media mostly uses Social networking platform and WindowsandroidIOS.
Hope this helps!
Feel free to ask if you have anymore questions!
I don’t know what it’s called but it’s where they can speak by moving there eyes
Answer:
Shows the programming checking if num1 is greater than num2
Explanation:
So num1 and num2 are inputs
for you to code this you would need to put
num1=int(input("What is your first number? ))
and the same for num2 except change num1 for num 2 and first for second
When the input is completed, the computer will check if num 1 is greater than num2
it will do this by using a code something like:
if num1>num2:
Print("Your first input was greater than your second")
But in this example if it greater it just ends
But if it was less than you would put
if num1>num2:
Print("Your first input was greater than your second")
elif num1<num2:
Print("Your first input is less than your second")
So basically this code shows the computer checking if one number is greater than the other or not