<< < 140 141 142 143 144 145 146 147 148 149 150 > >>   Sort: Date

How does an exception permeate through the code?
How does an exception permeate through the code? An unhandled exception moves up the method stack in search of a matching When an exception is thrown from a code which is wrapped in a try block followed by one or more catch blocks, a search is made for matching catch block. If a matching type is fou...
2013-05-31, 2145👍, 0💬

What is HashMap and Map?
What is HashMap and Map? Map is Interface and Hashmap is class that implements that.
2013-04-25, 2145👍, 0💬

How is it possible for two String objects with identical values not to be equal under the == operator?
How is it possible for two String objects with identical values not to be equal under the == operator? The == operator compares two objects to determine if they are the same object in memory. It is possible for two String objects to have the same value, but located indifferent areas of memory.
2012-12-28, 2145👍, 0💬

What is an Iterator interface?
What is an Iterator interface? The Iterator interface is used to step through the elements of a Collection.
2012-09-26, 2145👍, 0💬

What’s the .NET datatype that allows the retrieval of data by a unique key?
What’s the .NET datatype that allows the retrieval of data by a unique key? What’s the .NET datatype that allows the retrieval of data by a unique key? * Primary * Integer * Unique Identifier * HashTable HashTable
2014-03-24, 2144👍, 0💬

What is AggressiveHeap?
What is AggressiveHeap? The -XX:+AggressiveHeap option inspects the machine resources (size of memory and number of processors) and attempts to set various parameters to be optimal for long-running, memory allocation-intensive jobs. It was originally intended for machines with large amounts of memor...
2013-03-26, 2144👍, 0💬

What Checkbox method allows you to tell if a Checkbox is checked?
What Checkbox method allows you to tell if a Checkbox is checked? getState()
2012-12-31, 2143👍, 0💬

What happens to the static fields of a class during serialization?
What happens to the static fields of a class during serialization? There are three exceptions in which serialization doesnot necessarily read and write to the stream. These are 1. Serialization ignores static fields, because they are not part of ay particular state state. 2. Base class fields are on...
2013-05-23, 2142👍, 0💬

Is null a keyword?
Is null a keyword? The null value is not a keyword.
2013-02-14, 2142👍, 0💬

Why are the methods of the Math class static?
Why are the methods of the Math class static? So they can be invoked as if they are a mathematical code library.
2012-12-28, 2140👍, 0💬

Can an exception be rethrown?
Can an exception be rethrown? Yes, an exception can be rethrown.
2012-12-13, 2140👍, 0💬

What modifiers can be used with a local inner class?
What modifiers can be used with a local inner class? A local inner class may be final or abstract.
2012-12-11, 2140👍, 0💬

Return a null pointer or a pointer to 0 bytes? .....
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes? The ANSI/ISO Standard says that it may do either; the behavior is implementation-defined ortable code must either take care not to call malloc(0), or be prepared for the possibility of a null return.
2016-04-21, 2139👍, 0💬

What is externalization? Where is it useful??
What is externalization? Where is it useful?? Use the Externalizable interface when you need complete control over your Bean's serialization (for example, when writing and reading a specific file format).
2013-03-08, 2139👍, 0💬

Can we define private and protected modifiers for variables in interfaces?
Can we define private and protected modifiers for variables in interfaces? Yes.
2013-02-05, 2139👍, 0💬

What are the Object and Class classes used for?
What are the Object and Class classes used for? The Object class is the highest-level class in the Java class hierarchy. The Class class is used to represent the classes and interfaces that are loaded by a Java program.
2013-01-25, 2139👍, 0💬

Explain the Inheritance principle.
Explain the Inheritance principle. Inheritance is the process by which one object acquires the properties of another object.
2013-03-01, 2138👍, 0💬

Can try statements be nested?
Can try statements be nested? Try statements may be tested.
2013-01-23, 2138👍, 0💬

Primitive data types are passed by reference or pass by value?
Primitive data types are passed by reference or pass by value? Primitive data types are passed by value.
2013-05-16, 2137👍, 0💬

Explain the Encapsulation principle
Explain the Encapsulation principle Encapsulation is a process of binding or wrapping the data and the codes that operates on the data into a single entity. This keeps the data safe from outside interface and misuse. One way to think about encapsulation is as a protective wrapper that prevents code ...
2013-02-28, 2137👍, 0💬

The process that ASP.NET uses to keep track of Sessions without cookies is ..,
The process that ASP.NET uses to keep track of Sessions without cookies is .., The process that ASP.NET uses to keep track of Sessions without cookies is * Cookie Munging * Cookie Monking * Cookie Mocking * Cookie Munching Cookie munging
2014-06-16, 2136👍, 0💬

Can an Interface be final?
Can an Interface be final? yes.
2013-02-04, 2135👍, 0💬

Can an abstract class be final?
Can an abstract class be final? An abstract class may not be declared as final.
2013-01-17, 2135👍, 0💬

How are the elements of a CardLayout organized?
How are the elements of a CardLayout organized? The elements of a CardLayout are stacked, one on top of the other, like a deck of cards.
2012-11-28, 2135👍, 0💬

<< < 140 141 142 143 144 145 146 147 148 149 150 > >>   Sort: Date