Printing Zero One Triangle

public class ZeroOneTriangle {

public static void main(String args []) {
int n = 5;
for(int i = 1; i <= n; i++) {
for(int j = 1; j <= i; j++){
int sum = i+j;
if (sum % 2 == 0)
{
System.out.print("1");

}
else
{
System.out.print("0");
}
}
System.out.println();
}
}
}

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