// Worksheet Sept. 18 Q1: Write a statement to assign 12 to a pre-defined int variable a? A1: a = 12; Q2: Write the statement to read an integer from keyboard to predefine variable b? A2: b = input.nextInt(); Q3: Read the first name to a variable? A3: String fname; fname = input.next(); Q4: Read a full name to pre-defined variable myName? A4: myName = input.nextLine(); Q5: Read two lines of text into String variables line1, and line2? A4: Q5: My input is as follows: Here is the number - 132 Print all, please. Read the above to three variables: msg (String), vol (int), msg2 (String)? A5: msg = input.nextLine(); vol = input.nextInt(); msg2 = input,nextLine();