Reading String from Console

 

import java.io.Console;

class ReadStringFromConsole {

public static void main(String[] args) {
Console c = System.console();
System.out.println("Enter your name");
String s = c.readLine();
System.out.println("Java Invent welcomes you " + s);
}
}

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...