Você está na página 1de 3

61

Q What is numeric promotion? A Numeric promotion is the conversion of a smaller numeric type to a larger numeric type. In numerical promotion, byte, char, and short values are converted to int values. The int, long and float values are converted to the desired types if required. Q What is the difference between the prefix and postfix forms of the ++ operator? A The prefix form first performs the increment operation and then returns the value of the increment operation. The postfix form first returns the current value of the expression and then performs the increment operation on that value. Q What are synchronized methods and synchronized statements? A Synchronized methods are methods that are declared with the keyword synchronized. A thread executes a synchronized method only after it has acquired the lock for the method's object or class. Synchronized statements are similar to synchronized methods. It is a block of code declared with synchronized keyword. A synchronized statement can be executed only after a thread has acquired the lock for the object or class referenced in the synchronized statement. Q How can we create a thread? A A thread can be created by extending Thread class or by implementing Runnable interface. Then we need to override the method public void run(). Q What is the difference between a switch statement and an if statement? A If statement is used to select from two alternatives. It uses a boolean expression to decide which alternative should be executed. The expression in if must be a boolean value. The switch statement is used to select from multiple alternatives. The case values must be promoted to an to int value. Q What is hashCode? A The hashcode of a Java Object is simply a number (32-bit signed int) that allows an object to be managed by a hash-based data structure. A hashcode should be, equal for equal object (this is mandatory!) , fast to compute based on all or most of the internal state of an object, use all or most of the space of 32-bit integers in a fairly uniform way , and likely to be different even for objects that are very similar. If you are overriding hashCode you need to override equals method also. Q What is an I/O filter? A An I/O filter is an object that reads from one stream and writes to another, usually altering the data in some way as it is passed from one stream to another. Q What is the difference between RandomAccessFile and File? A The File class contains information the files and directories of the local file system. The RandomAccessFile class contains the methods needed to directly access data contained in any part of a file. Q What is final ? A A final is a keyword in java. If final keyword is applied to a variable, then the variable will become a constant. If it applied to method, sub classes cannot override the method. If final keyword is applied to a class we cannot extend from that class.

62

63

64

65

66

67

68

69

70

Q What is the difference among JVM Spec, JVM Implementation, JVM Runtime ? A The JVM spec is the blueprint for the JVM generated and owned by Sun. The JVM implementation is the actual implementation of the spec by a vendor and the JVM runtime is the actual running instance of a JVM implementation Q How is the difference between thread and process? A A process runs in its own address space. No two processes share their address space. Threads will run in the same address space of the process that owns them. Q What is the difference between Vector and ArrayList ? A Vector is synchronized, ArrayList is not. Vector is having a constructor to specify the incremental capacity. But ArrayList don't have. By default Vector grows by 100% but ArrayList grows by 50% only. Q What is the difference between Hashtable and HashMap ? A Hashtable is synchronized . but HashMap is not synchronized. Hashtable does not allow null values , but HashMap allows null values. Q What are the access modifiers available in Java. A Access modifier specify where a method or attribute can be used. Public is accessible from anywhere. Protected is accessible from the same class and its subclasses. Package/Default are accessible from the same package. Private is only accessible from within the class. Q Why java is said to be pass-by-value ? A When assigning an object to a variable, we are actually assigning the memory address of that object to the variable. So the value passed is actually the memory location of the object. This results in object aliasing, meaning you can have many variables referring to the same object on the heap.

71

72

73

74

75

76 Q A

What do you mean by immutable ? How to create an immutable object ? Immutability means an object cannot be modified after it has been initialized. There will not be any setter methods in an immutable class. And normally these classes will be final. What is class loader in java ? A class loader is a class that is responsible for loading the class. All JVM contains one class loader called primordial class loader. What is a weak reference ? A weak reference is the one that does nor prevent the referenced object from being garbage collected. The weak reference will not keep the object that it refers to alive. A weak reference is not counted as a reference in garbage collection. This will make the memory use more effective. What is object cloning? It is the process of duplicating an object so that two identical objects will exist in the memory at the same time. What is object pooling? Creating a large number of identical short lived objects is called object pooling. This helps to minimize the need of garbage collection and makes the memory use more effective. What is garbage collection? Garbage collection is the process of releasing memory used by unreferenced objects. It

77 Q A

78 Q A

79 Q A

80 Q A

81 Q A

relieves the programmer from the process of manually releasing the memory used by objects . 82 Q A What is the disadvantage of garbage collection? It adds an overhead that can affect performance. Additionally there is no guarantee that the object will be garbage collected. What is a Dictionary? Dictionary is a parent class for any class that maps keys to values., In a dictionary every key is associated with at most one value. What is JAR file ? JAR stands for Java Archive. This is a file format that enables you to bundle multiple files into a single archive file. A jar file will contains a manifest.mf file inside META-INF folder that describes the version and other features of jar file. Why Java is not fully objective oriented ? Due to the use of primitives in java, which are not objects. What is a marker interface ? An interface that contains no methods. Eg: Serializable, Cloneable, SingleThreadModel etc. It is used to just mark java classes that support certain capability. What are tag interfaces? Tag interface is an alternate name for marker interface. What are the restrictions placed on static method ? We cannot override static methods. We cannot access any object variables inside static method. Also the this reference also not available in static methods. What is JVM? JVM stands for Java Virtual Machine. It is the run time for java programs. All are java programs are running inside this JVM only. It converts java byte code to OS specific commands. In addition to governing the execution of an application's byte codes, the virtual machine handles related tasks such as managing the system's memory, providing security against malicious code, and managing multiple threads of program execution. What is JIT? JIT stands for Just In Time compiler. It compiles java byte code to native code.

83 Q A

84 Q A

85 Q A 86 Q A

87 Q A 88 Q A

89 Q A

90 Q A

Você também pode gostar