Company Name Starts with ...
#  A  B  C  D  E   F  G  H  I  J   K  L  M  N  O   P  Q  R  S  T   U  V  W  X  Y  Z

KMCH Interview Questions
Questions Answers Views Company eMail

Please give me the information regarding the studied in uk and the documentation for visa application

2 6544

Post New KMCH Interview Questions


KMCH Interview Questions


Un-Answered Questions

What is the difference between ‘git remote’ and ‘git clone’?

5


What is a histogram chart?

173


5.Develop an entity relationships diagram that identifies physical entity relationships.

2433


How does run-time type information (rtti) work?

510


Benefits of process information page ?

128






What new value can you add to our organization?

686


Explain the differences between exchange 2000 and exchange 2003?

476


How would you convert multiple PRs in POs

717


How can I find out how much free space is available on disk?

620


How do you identify which files are loaded in the gui map?

620


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


What's the layout of parameter file (what does a parameter file contain?)?

1905


How to submit a form in apache-wicket?

5


In sap scripts, how will you link form with the event driven?

540


what are the advantages and disadvantages of empirical knowledge?

7104