Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Can somebody check my answers & explain? Thankyou! True/False 1. RAM is consider

ID: 3613964 • Letter: C

Question

Can somebody check my answers & explain? Thankyou!
True/False
1. RAM is considered to be secondary storage.   True
2. IDE is an acronym for the first computer.   False
3. Two methods with the same name but different parameter lists areexamples of overloaded methods. True
4. It is a good idea to alias object variables especially as abeginner programmer. True
5. System is capitalized in our hello world program because Systemis a class. True
6. Javadoc comments begin with //   False
7. An object reference is considered to be a memoryaddress.   True
8. The statement
Rectangle rectA = new Rectangle(1, 2, 3, 4);
is valid and compiles with no errors. False?
9. All packages from the java.lang class are importedautomatically. False
10. Instance fields are generally public rather than private. True
Can somebody check my answers & explain? Thankyou!
True/False
1. RAM is considered to be secondary storage.   True
2. IDE is an acronym for the first computer.   False
3. Two methods with the same name but different parameter lists areexamples of overloaded methods. True
4. It is a good idea to alias object variables especially as abeginner programmer. True
5. System is capitalized in our hello world program because Systemis a class. True
6. Javadoc comments begin with //   False
7. An object reference is considered to be a memoryaddress.   True
8. The statement
Rectangle rectA = new Rectangle(1, 2, 3, 4);
is valid and compiles with no errors. False?
9. All packages from the java.lang class are importedautomatically. False
10. Instance fields are generally public rather than private. True

Explanation / Answer

1. RAM is considered to be secondary storage.    False...Ram will be used as primarystorage. Examples of secondary storage is flash memory 2. IDE is an acronym for the first computer.      False 3. Two methods with the same name but differentparameter lists are examples of overloaded methods.     True 4. It is a good idea to alias object variablesespecially as a beginner programmer.     True 5. System is capitalized in our hello world program because Systemis a class.      True 6. Javadoc comments begin with //     False 7. An object reference is considered to be a memoryaddress.     True 8. The statement Rectangle rectA = new Rectangle(1, 2, 3, 4); is valid and compiles with no errors.     False if constructor in Rectangle classhas fewer or more than four arguments     If the constructor in Rectangle class has 4arguments then it is true. 9. All packages from the java.lang class are importedautomatically.     False 10. Instance fields are generally public rather thanprivate.     True