The answer is D =(<span>$A$1-$B$1)
sources:just took the test</span>
Answer:War driving
Explanation: War driving is the activity which is done for searching for the Wi-Fi connection while driving vehicle .The main purpose of the war driving is gaining and accessing the network of Wi-Fi by being in slowly moving vehicle. The act is carried out by the individual or more people.
Other options are incorrect because Wifi driving and Wifi finding are not technical words in the computer field and E-stalking is the stacking activity with the help of internet enables electronic devices.Thus, the correct option is war driving.
Comparison would be most suitable. I hope I could be a help
When running in a browser, your source webpage should load the .js file containing the library, e.g.,:
<span><script type="text/javascript" src="<span>http://your.cdn.com/somelib.js</span>"></script>
In a stand-alone environment, like node.js, you use the require() statement:
</span><span>const crypto = require('crypto'<span>);
To load the required libraries, you use the package manager npm:
npm install crypto
This will create a local copy of the library.</span></span>