Answer:
Toner probe
Explanation:
A Toner probe is a useful device for the installation of electrical cabling of any type, it can be used as Probe and Tone Tool: it enables someone in finding individual leads among a large number in a cable trunk, without having to either connect or strip the remote end.
Its major use is to trace wires or cables by sending a signal from one end of a wire down its entire length. This is typically done to track the spot of a cut or missing door, window, or other alarm wire.
Answer:
Following are the Statement in the Java Language .
Scanner out = new Scanner( System.in); // creating the object
datum = out.nextInt(); // Read the integer value bu using the instance of scanner class
Explanation:
In the Java Programming Language The scanner class is used for taking the user input from the standard input The definition of scanner class is java.util package means that if you taking the input by using scanner class firstly importing the predefined package i.e Java.util.
The description of the above code is given below
- Scanner out = new Scanner( System.in);: This statement created the instance "out" of the scanner class which is used for taking the input.
- datum = out.nextInt(); : This statement taking the integer input and store them into the datnum variable.
I think Face book hope that helped XD
Answer:
function moves(a) {
var left = 0;
var right = a.length-1;
var count = 0;
while (left < right) {
if(a[left] % 2 == 0) {
left++;
continue;
}
if(a[right] % 2 == 1) {
right--;
continue;
}
var temp = a[left];
a[left] = a[right];
a[right] = temp;
left++;
right--;
count++;
}
return count;
}
var a = [4,13,10,21,20];
console.log('Number of moves: ' + moves(a));
console.log('Sorted array: ' + a);
Explanation:
The answer is HTTP and it works over the application layer. The hypertext transfer protocol or as called as HTTP is an application protocol for distributed, collaborative and hypermedia information systems in which this is the foundation of the data communication for the world wide web or as called as www.