Core Java Interview Questions
Questions Answers Views Company eMail

What's the difference between an abstract class and interface in java?

546

What is the significance of java packages?

609

What are three types of loops in java?

576

Which types of exceptions are caught at compile time?

556

What is final keyword in java?

545

I want my class to be developed in such a way that no other class (even derived class) can create its objects. How can I do so?

512

What is meant by anonymous class?

583

How objects are stored in java?

538

Can a class have multiple constructors?

526

Describe different states of a thread.

567

What are the various access specifiers for java classes?

537

Can we call the constructor of a class more than once for an object?

615

Is string a data type in java?

585

I want to control database connections in my program and want that only one thread should be able to make database connection at a time. How can I implement this logic?

630

Can we have two methods in a class with the same name?

571


Post New Core Java Questions

Un-Answered Questions { Core Java }

What is type conversion in java?

565


What is a parameter in matrices?

532


Explain the difference between abstract classes and interfaces in java?

586


What is the purpose of the strictfp keyword?

600


What is the difference between a loader and a compiler?

516






What is independent and dependent variables in research?

460


What is the final class modifier?

550


The following program reads data (details of students) from a file named students.txt and converts it into e-mail addresses. The results are written to a file named studentemail.txt. students.txt consists of a number of lines, each containing the data of a student in colon delimited format: Last Name:First Name:Student Number Each input record is converted to an e-mail address and written to studentemail.txt in the following format: the first character of the last name + the first character of the first name + the last four digits of the student number + “@myunisa.ac.za” import java.io.*; public class EmailConverter { public static void main(String[] args) throws IOException { BufferedReader input = new BufferedReader(new FileReader ("students.txt")); PrintWriter output = new PrintWriter(new FileWriter ("studentemail.txt")); String line = input.readLine(); while (line != null) { // Extract the information for each student String[] items = line.split(":"); // Generate the email address String email = "" + items[0].charAt(0) + items[1].charAt(0) + items[2].substring(4,8) + "@myunisa.ac.za"; email = email.toLowerCase(); // Output output.println(email); line = input.readLine(); } input.close(); output.close(); } } Rewrite the class so that it handles possible errors that may occur. In particular, it should do the following: • It should catch at least three appropriate exceptions that might occur, and display suitable messages. • At this stage, the program will not run correctly if there is an empty line in the input file. Change the program so that if an empty line is encountered, an exception is thrown and the empty line is ignored. This exception should be handled with the display of a suitable error message. • Before the e-mail address is added to the output file, check if the student number has 8 digits. If not, throw an InvalidFormatException (which the program should not handle itself)

1445


Explain OOPs concept.

636


How are variables stored?

523


Can we have more than one package statement in the source file?

629


placement papaers of spring computing technology

1016


What is an association?

540


What are the important features of Java 10 release?

506


In a container there are 5 components. I want to display the all the components names, how will you do that one?

596