Which of the following symbols is used in a flowchart for Process, as well as declarations statements? A Rectangle A Parallelogram CM A Circle What would the following Java program snippet output on screen, provided it was within main() method: int x = 3; System.out.println("Hello"+5+x); Hello 8 Hello 53 Hello53 Hello8 When using System.out.printf(); The format specifier for an float number is %d %f %s Given the following word problem, which answer best represents an object we can use to solve the problem? A farmer grows lemons and sells them by the kilogram. The farmer has several large fields with different types of lemons like yellow lemons and green lemons. The program needs to track the weight and type of the harvested lemons. Yellow Green Grows Lemons Which answer correctly orders the java integer data types from smallest memory use to largest memory use? (left is smallest, moving towards the right and ending with largest) byte, short, int, long long, int, short, byte short, byte, long, int short, byte, int, long What tool translates Java source code into files that contain instructions for the Java Virtual Machine? compiler editor interpreter The Eclipse software we are using in this course is an Integrated Development Environment (IDE). Software for creating flowchart diagrams. Software for creating UML class diagrams. A UML class diagram is used to visualize the program logic, like start, stop, input, output, using shapes and arrows. document the structure of a class, field names and types, method names and return types, and constructor(s) document the inner workings of methods using pseudocode In Java programming an) is an instance of a class. variable object class Given: String country = "U.S.A"; What will print out from the following statement? System.out.println( country.length()); 3 5 abc.length() 6 What is wrong with the following Java statement? final double sales_tax = 0.14; The variable name does not follow Java coding conventions for a constant (a final variable) The variable name is not correct. The value 0.14 is a float type and Java will not assign it to a double You cannot assign a value to a variable marked final Question 45 (1 point) Given: String country = "U.S.A"; What will print out from the following statement? System.out.println( country.length(); 3 ( ) 5 abc.length 6