






















Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
A series of questions and answers covering fundamental concepts in java programming. It includes topics such as object-oriented programming, java history, program structures, paradigms, objects vs. Classes, constructor methods, instances of classes, and various elements of java syntax and data types. The questions address key aspects of java, making it a useful resource for students learning the language. It also covers methods, variables, and other essential components of java programming, offering a concise overview of the language's core principles. Useful for exam preparation and quick revision of java concepts.
Typology: Exams
1 / 30
This page cannot be seen from the preview
Don't miss anything!























Java Programming Language - answer - Object-oriented programming language
Method Composition - answer Signature: public void deposit( double amount )
Components of Primitive Data Types - answer 1. Range of values
Increment and Decrement - answer A++ and ++a has same effect
Methods on string objects - answer - Javap java.lang.String for complete list
String s = "Ateneo de manila"; String a = s.substring(0, 6); // "Ateneo" String b = s.substring(6, 9); // " de"
Substring Method - answer - Each character in string object has a position (starting 0) Parameters for substring indicate: