Printing all alphabets(UpperCase) without using ASCII value


import java.util.*;

public class PrintAlphabets1 {

public static void main(String args[]) {
char c = 'A';
for (int i = 0; i < 26; i++) {
System.out.print(c + " ");
c += 1;
}
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...