Concatenating and printing a String

 import java.util.*;


public class ConcatenateStrings {
public static void main(String args[]) {
String str1 = "My name is";
String str2 = "Sudeep Kumar Bondwal";

String str3 = str1.concat(str2);
System.out.println(str3);
}
}

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