Printing reverse counting

 class RevCount{

public static void main(String args []){
for(int i=10; i>=0;i--){
System.out.println(i);
}
}
}

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