Copying an array to another array

 import java.util.*;


public class CopyArray{
public static void main(String args[]){
int my_arr[]={1,2,3,4,5,6,7,8,9,10};
int new_arr[] = new int[10];

for(int i=0;i<my_arr.length;i++){
new_arr[i]=my_arr[i];
}
System.out.println("The Original Array is :"+Arrays.toString(my_arr));
System.out.println("The copied array is : "+Arrays.toString(new_arr));
}
}

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