Relational Operators


public class RelationalOperators{
public static void main(String args[]){

//relational operators <,>,==,!=

int a = 10;
int b =20;
//All these operators will return either true or false
System.out.println(a<b);
System.out.println(a>b);
System.out.println(a==b);
System.out.println(a!=b);
}
}

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