Meaning of keyword "Static"


 class Pupil{
String name;
static String school;

}

public class TestStaticMeaning{
public static void main(String args []){
Pupil.school = "IPS"; //as school is static so can be
//accessed with class name; no object needed;
Pupil.school = "JVM";
Pupil p1 = new Pupil();
p1.name = "KDMD";

System.out.println(p1.school);

}
}

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