Translate

Thursday, September 6, 2012

CORE JAVA QUESTION ANSWERS 3

CORE JAVA QUESTION ANSWERS 3





61. What value does read() return when it has reached the end of a file?

The read() method returns -1 when it has reached the end of a file.

62. Can a Byte object be cast to a double value?

No, an object cannot be cast to a primitive value.

63. What is the difference between a static and a non-static inner class?

A non-static inner class may have object instances that are associated with instances of the class's

outer class. A static inner class does not have any object instances.

64. What is an object's lock and which object's have locks?

An object's lock is a mechanism that is used by multiple threads to obtain synchronized access to the

object. A thread may execute a synchronized method of an object only after it has acquired the

object's lock. All objects and classes have locks. A class's lock is acquired on the class's Class object.

65. What is the % operator?

It is referred to as the modulo or remainder operator. It returns the remainder of dividing the first

operand by the second operand.

66. When can an object reference be cast to an interface reference?

An object reference be cast to an interface reference when the object implements the referenced

interface.

67. Which class is extended by all other classes?

The Object class is extended by all other classes.

68. Which non-Unicode letter characters may be used as the first character of an identifier?

The non-Unicode letter characters $ and _ may appear as the first character of an identifier

69. What restrictions are placed on method overloading?

Two methods may not have the same name and argument list but different return types.

70. What is casting?

There are two types of casting, casting between primitive numeric types and casting between object

references. Casting between numeric types is used to convert larger values, such as double values, to

smaller values, such as byte values. Casting between object references is used to refer to an object by

a compatible class, interface, or array type reference.

71. What is the return type of a program's main() method?

void.

72. If a variable is declared as private, where may the variable be accessed?

A private variable may only be accessed within the class in which it is declared.

73. What do you understand by private, protected and public?

These are accessibility modifiers. Private is the most restrictive, while public is the least

restrictive. There is no real difference between protected and the default type (also known as

package protected) within the context of the same package, however the protected keyword allows

visibility to a derived class in a different package.

74. What is Downcasting ?

Downcasting is the casting from a general to a more specific type, i.e. casting down the hierarchy

75. What modifiers may be used with an inner class that is a member of an outer class?

A (non-local) inner class may be declared as public, protected, private, static, final, or abstract.

76. How many bits are used to represent Unicode, ASCII, UTF-16, and UTF-8 characters?

Unicode requires 16 bits and ASCII require 7 bits Although the ASCII character set uses only 7 bits, it

is usually represented as 8 bits.

UTF-8 represents characters using 8, 16, and 18 bit patterns.

UTF-16 uses 16-bit and larger bit patterns.

77. What restrictions are placed on the location of a package statement within a source

code file?

A package statement must appear as the first line in a source code file (excluding blank lines and

comments).

78. What is a native method?

A native method is a method that is implemented in a language other than Java.

79. What are order of precedence and associativity, and how are they used?

Order of precedence determines the order in which operators are evaluated in expressions. Associatity

determines whether an expression is evaluated left-to-right or right-to-left.

80. Can an anonymous class be declared as implementing an interface and extending a

class?

An anonymous class may implement an interface or extend a superclass, but may not be declared to

do both.

81. What is the range of the char type?

The range of the char type is 0 to 216 - 1 (i.e. 0 to 65535.)

82. What is the range of the short type?

The range of the short type is -(215) to 215 - 1. (i.e. -32,768 to 32,767)

83. Why isn't there operator overloading?

Because C++ has proven by example that operator overloading makes code almost impossible to

maintain.

84. What does it mean that a method or field is "static"?

Static variables and methods are instantiated only once per class. In other words they are class

variables, not instance variables. If you change the value of a static variable in a particular object, the

value of that variable changes for all instances of that class. Static methods can be referenced with

the name of the class rather than the name of a particular object of the class (though that works too).

That's how library methods likeSystem.out.println() work. out is a static field in

the java.lang.System class.

85. Is null a keyword?

The null value is not a keyword.

86. Which characters may be used as the second character of an identifier, but not as the

first character of an identifier?

The digits 0 through 9 may not be used as the first character of an identifier but they may be used

after the first character of an identifier.

87. Is the ternary operator written x : y ? z or x ? y : z ?

It is written x ? y : z.

88. How is rounding performed under integer division?

The fractional part of the result is truncated. This is known as rounding toward zero.

89. If a class is declared without any access modifiers, where may the class be accessed?

A class that is declared without any access modifiers is said to have package access. This means that

the class can only be accessed by other classes and interfaces that are defined within the same

package.

90. Does a class inherit the constructors of its superclass?

A class does not inherit constructors from any of its superclasses.

1 comment: