Problem:
How well do you understand java? Are you a master of the programming language java or are just some junkie who memeorized the rules pass an exam or a standarized test? Test yourself!
1.1 What is a requirements document?
1.2 What is the difference between the design stage and the implementation stage in the development software?
1.3 What is the difference between the state and the behavior of a class?
1.4 What is an abstract data type?
1.5 What constitutes a Java program?
1.6 What kinds of members can a class have?
1.7 What is an implicit argument?
1.8 What is the purpose of the toString() method?
1.9 What is the purpose of the equals() method?
1.10 What's the difference among public, protected, and private?
1.11 What is a package?
1.12 What is the difference between an abstract class and an abstract data type?
1.13 What is the difference between a constructor and a method?
1.14 What is the difference between a class method and an instance method?
1.15 What is the difference between equality of objects and equality of the references that refer to
them?
1.16 Explain the difference between the output from
String s;
System.out.println("s = " + s);
and the output from
String s = new String();
System.out.println("s = " + s);
1.17 What is the purpose of declaring a field private and declaring a mutator method that allows
the public to change it. Wouldn’t it be just as good to just make it public?
1.18 What is an enum type?
1.19 What is the difference between composition and aggregation?
1.20 What is polymorphism?
1.1 What is a requirements document?
1.2 What is the difference between the design stage and the implementation stage in the development software?
1.3 What is the difference between the state and the behavior of a class?
1.4 What is an abstract data type?
1.5 What constitutes a Java program?
1.6 What kinds of members can a class have?
1.7 What is an implicit argument?
1.8 What is the purpose of the toString() method?
1.9 What is the purpose of the equals() method?
1.10 What's the difference among public, protected, and private?
1.11 What is a package?
1.12 What is the difference between an abstract class and an abstract data type?
1.13 What is the difference between a constructor and a method?
1.14 What is the difference between a class method and an instance method?
1.15 What is the difference between equality of objects and equality of the references that refer to
them?
1.16 Explain the difference between the output from
String s;
System.out.println("s = " + s);
and the output from
String s = new String();
System.out.println("s = " + s);
1.17 What is the purpose of declaring a field private and declaring a mutator method that allows
the public to change it. Wouldn’t it be just as good to just make it public?
1.18 What is an enum type?
1.19 What is the difference between composition and aggregation?
1.20 What is polymorphism?
Output:
Not applicable.
Solution:
1.1 The requirements document of a software development project is a precise specification of what the software should do. 1.2 In the development of software, the design stage identifies the components (classes) to be used and the relationships among them. The implementation stage is where the computer progam code is actually written. 1.3 The state of a class consists of the values of its fields. The behavior of a class is defined by its methods. 1.4 An abstract data type is a specification of the type’s operations: what an instance of that type can do. 1.5 A Java program is a Java class with a main() method? The main() method must have this header: public static void main(String[] args) 1.6 A class member may be a field, a constructor, a method, a nested class, a nested interface, or an enum type. 1.7 The implicit argument of a method is the object to which the method invocation is bound. 1.8 The toString() method returns a String object that represents the state of its implicit argument. 1.9 The equals() method returns true if and only if states (contents) of its implicit and explicit arguments are the same. 1.10 A class member that is declared public is accessible from any other class. A class member that is declared protected is accessible only from its own class and subclasses (extensions). A class member that is declared private is accessible only from its own class. 1.11 A package is a namespace, that is, a name for a group of classes, interfaces, and enum types that can be used to distinguish those from other classes, interfaces, and enum types with the same name. 1.12 An abstract class is a Java class with at least one abstract method—a method that has no body. An abstract data type is a specification of a type’s operations that could be implemented in any object-oriented programming language. 1.13 A constructor is a member function of a class that is used to create objects of that class. It has the same name as the class itself, has no return type, and is invoked using the new operator. A method is an ordinary member function of a class. It has its own name, a return type (which may be void), and is invoked using the dot operator. 1.14 A class method is declared static and is invoked using the class name. For example, double y = Math.abs(x); invokes the class method abs() that is defined in the Math class. An instance method is declared without the static modifier and is invoked using the name of the object to which it is bound. For example, double x = random.nextDouble(); invokes the class method nextDouble() that is defined in the Random class and is bound to the object random which is an instance of that class. 1.15 Two objects should be equal if they have the same data values (i.e., the same state). Two references are equal if they refer to the same object. The condition (p == q) tests equality of the references p and q, not the equality of the objects to which they refer. 1.16 The output from the code String s; System.out.println("s = " + s); is s = null The output from the code String s = new String(); System.out.println("s = " + s); is s = In the first case, the reference s is initialized by default to be null; there is no String object. In the second case, s is initialized to refer to the empty String object. 1.17 The advantage of forcing the public to use a mutator method to change a field is that you can control how the field is changed. 1.18 An enum type is a type, defined with the enum keyword that lists by name each possible value for the type. 1.19 When a type is composed of another type, the complete existence of that component type’s objects is controlled by the composing type’s object; the components are uniquely bound to it and cannout be changed by any outside object. With aggregation, the component elements exits outside of the collection, can be changed by other classes, and may even be components of other aggregates. 1.20 Polymorphism describes the way an object or variable may be treated in different contexts as though it has a different type. For example, inheritance allows an argument of type B to be passed to a parameter of type A if B extends A.
new liposuction Korea's #1 Liposculpture Clinic. Lydian plastic surgery is the home of VIP patients. Celebrities, Influencers and Diplomats all know and trust Doctor An and Lydian plastic surgery clinic to provide detailed results.
ReplyDelete