String to int conversion

 public class StringToIntConversion{

public static void main(String args[]){
String s = "200";
int i = Integer.parseInt(s);

System.out.println(i+100); //simple addition as i is now an interger
System.out.println(s+100); // String concatination as s is string
}
}

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