Reading password from console

 

import java.io.Console;

class ReadPasswordFromConsole {

public static void main(String[] args) {
Console c = System.console();
System.out.println("Enter the Password");
char[] ch = c.readPassword();
String password = String.valueOf(ch);
System.out.println("The password is : " + password);
}
}

Google Script for Data Entry Form in Google Spreadsheet

// function to validate the entry made by user in user form function validateEntry (){ // declare a variable and referernece of active goog...