FromScratch, Part 1 QUESTION: About how many minutes do you think it will take you to complete Part 1 of FromScratch? QUESTION: What time is it now? The following statement, which appears in main, declares a variable: FromScratch mainFrame = new FromScratch(); QUESTION: What is the name of the variable declared by the above statement? QUESTION: What is the type of that variable? QUESTION: What value is that variable given? QUESTION: After you add an output statement to the FromScratch constructor, your program writes three messages to the console. Does the message that you just put inside the FromScratch constructor appear first, second, or third in the output? Why? QUESTION: After you comment out the five statements that refer to the mainFrame variable, does the message that you put inside the FromScratch constructor get printed? Why or why not? QUESTION: After you un-comment the five statements that refer to the mainFrame variable, does the program stop running when it reaches the end of the main program? Why or why not? QUESTION: What JCreator menu, and which item on that menu, do you use to create a new project? QUESTION: What statement do you use to write a String to the console? QUESTION: What code would the expression "new Blah()" cause to execute? QUESTION: How much time did you spend on Part 1 of FromScratch?