Copy Constructor

 import java.util.*;


class Student1 {

String name;
int age;

public void printInfo() {
System.out.println(this.name);
System.out.println(this.age);
}

Student1(Student1 s2) {
this.name = s2.name;
this.age = s2.age;
}

Student1() {}
}

public class OOPS3 {

public static void main(String args[]) {
Student1 s1 = new Student1(); //This is a Constructor:- to construct object
s1.name = "aman";
s1.age = 24;

Student1 s2 = new Student1(s1);
s2.printInfo();
}
}

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