Comparing Signed and Unsigned Numbers.

 

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

int a = Integer.MIN_VALUE;
int b = Integer.MAX_VALUE;

int signedNum = Integer.compare(a, b);
System.out.println("Result of comparing signed number" + signedNum);
int unsignedNum = Integer.compareUnsigned(a, b);
System.out.println("Result of comparing unsigned number" + unsignedNum);
}
}

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