A clickable text or image that takes you to a different site is called a Hyperlink or simply a Link.
Answer:
Check the explanation
Explanation:
Selecting the bio-metric technique fingerprint, it requires a scanner to read the fingerprint The cost for a scanner is in between 1000 and 5000 Placing two scanners at two entrance of office win cost bellow 10,000 So the cost needed for this technique is medium as compared with other bio-metric techniques
Attacks on this technique can be in saner, channel from scanner to feature extractor, in feature extractor, way in between feature extractor and marcher, in marcher, in database etc this attacks can be protect by using security methods such as cryptography, hashing, watermarking, noses etc
By using watermarking, cryptography and stenography methods, fingerprint has less false detection rate I e it gives high accuracy
I recommend fingerprint technique. Because of it is a standard technique, it has good accuracy and cost is less, and easy to handle, and it is taking small storage space in database.
Kindly check the attached image below.
Answer:compiler software translatesthe code into machine language
Explanation:
Answer:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.println("Enter an integer");
int num = input.nextInt();
int i=1;
while( i*num < 100) {
System.out.println(i*num);
i++;
}
input.close();
}
}
Explanation:
If you want the value 100 to be included, change the < to <=.