Cloning a TreeMap

 

import java.util.TreeMap;

public class TreeMapClone {

public static void main(String[] args) {
//creating our tree map
TreeMap<Integer, String> tm = new TreeMap<>();
//Inserting element in our TreeMap
tm.put(17, "this");
tm.put(13, "Invent");
tm.put(18, "blog");
tm.put(16, "on");
tm.put(15, "you");
tm.put(14, "welcomes");
tm.put(12, "Java");
System.out.println("The clone of TreeMap is");
System.out.println(tm.clone());
}
}

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