• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/39

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

39 Cards in this Set

  • Front
  • Back

What do you know about Java

Java is a high level programming language originally developed by Sun Micro systems and released in 1995. Java runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX.

What are the supported platforms by Java Programming Language?

Java runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX/Linux like HP-Unix, Sun Solaris, Redhat Linux, Ubuntu, CentOS, etc.

List Any Five Features of Java

Some features include Object Oriented, Platform Independent, Robust, Interpreted, Multi-Threaded

Why is Java Architectural Neutral

It's compiler generates an architecture-neutral object file format, which makes the compiled code to be executable on many processors, with the presence of Java runtime system.

How did Java enable High Performance

Java uses Just-In-Time compiler to enable high performance. Just-In-Time compiler is a program that turns Java bytecode, which is a program that contains instructions that must be interpreted into instructions that can be sent directly to the processor.

Why is Java considered dynamic?

It is designed to adapt to an evolving environment. Java programs can extensive amount of run-time information that can be used to verify and resolve accesses to objects in run-time.

What is Java Virtual Machine and how is it considered in context of Java's platform independent feature?

When Java is compiled, it is not compiled into platform specific machine, rather into platform independent byte code. This byte code is distributed over the web and interpreted by Virtual Machine (JVM) on whichever platform it is being run.

List two Java IDEs?

Netbeans, Eclipse, Android Studio

List some Java keywords(unlike C, C++? keywords)?

Some Java keywords are import, super, finally, etc.

What do you mean by Object?

Object is a runtime entity and it's state is stored in fields and behavior is shown via methods. Method operate on an object's internal state and serve as the primary mechanism for object-to-object communication.

Define class?

A class is a blue print from which individual objects are created. A class can contain fields and methods to describe the behavior of an object.

What kind of variables a class can consist of?

A class can consist of Local variable, instance variable, and class variables.

What is Local Variable?

Variables defined inside methods, constructors or blocks are called local variables. The variables will be declared and initial used within the method and it will destroyed when the method has completed.

What is Instance Variable?

Instance variable are variable within a class but outside any method. These variable are instantiated when the class is loaded.

What is a Class Variable?

These are variable declared with in a class, outside any method, with static keyword.

What is Singleton Class?

Singleton class control object creation, limiting the number to one but allowing the flexibility to create more objects if the situation changes.

What do you mean Constructor?

Constructor gets invoked when a new object is created. Every class has a constructor. If we do not explicitly write a constructor for a class the Java compiler builds a default constructor for that class.

List the three steps for creating an Object for a class?

An Object is first declared, then instatiated and then it is initialized.

What is the default value of byte data type in Java?

Default value of byte data type is 0.

What is the default value of float and double data type in Java?

Default value of float and double data type in different as compared to C/C++. For float it's 0.0f and for double 0.0d.

When a byte data type is used?

This data type is used to save space in large arrays, mainly in place of intergers, since a byte is four times smaller.

When a byte data type is used?

This data type is used to save space in large arrays, mainly in place of intergers, since a byte is four times smaller.

What is a static variable?

Class variables also known as static variables are declared with the static keywords in a class, but outside a method, constructor or a block.

What do you mean by Access Modifier?

Java provides access modifiers to set access levels for classes, variables, methods and constructors. A member has package or default accessibility when no accessibility modifier is specified.

What is protected access modifier?

Variables, methods and constructors which are declared protected in a superclass can be accessed only by the superclasses in other packages or any class within the package of the protected members class.

What do you mean by synchronized Non Access Modifier?

Java provides these modifiers for providing functionalities other than Access Modifiers, synchronized used to indicate that method can be accessed by only one thread at a time.

According to Java Operator precedence, which operator is considered to be with highest precedence?

Post fix operators i.e. ()[]. Is at the highest precedence.

Variables used in a switch statement can be used with which data types?

Variables used in a switch statement can only be a string, enum, byte, short, int, or char.

When parseInt() method can be used?

This method is used to get the primitive data type of a certain String.

Why is String class considered immutable?

The String class is immutable, so that once it is created a String object cannot be changed. Since String is immutable it can safely be shared between many threads, which is considered very important for multi threaded programming.

Why is StringBuffer called mutable?

The String class is considered as immutable, so that once it is created a String object cannot be changed. If there is a necessity to make a lot of modifications to Strings of characters then String buffer should be used.

What is the difference between StringBuffer and StringBuilder class?

Use StringBuilder whenever possible because it is faster than StringBuffer. But, if thread safety is necessary then use StringBuffer objects.

Which package is used for pattern matching with regular expressions?

Java.util.regex package is used for this purpose.

Java.util.regex consists of which classes?

Java.util.regex consists of three classes -- Pattern class, Matcher class and PatternSyntaxException class.

What is finalize() method?

It is possible to define a method that will be called just before an objects final destruction by the garbage collector.. This method is called finalize(),and it can be used to ensure that an object terminates cleanly.

What is an Exception?

An exception is a problem that arises during the execution of a program. Exceptions are caught by handlers positioned along the threads method invocation stack.

What do you mean by Checked Exceptions?

It is an exceptions that is typically a user error or a problem that cannot be foreseen by the programmer.. For example, if a file is to be opened, but the file cannot be found, an exception occurs. These exceptions cannot simply be ignored at the time of compilation.

Explain Runtime Exceptions?

It is an exception that occurs that probably could have been avoided by the programmer. As opposed to checked exceptions, runtime exceptions are ignored at the time of compilation.

Which are the two sub classes under Exception class?

The Exception class has two main sub classes : IOException class and RunTimeException Class.