what are the questions that will be asked for a 3yrs experienced candidate in solaris system admin. how to face first hr round if one puts fake experience of 2or 3 yrs in solaris system admin. please respond with an opt answer. thank you in advance...
2 9372How can i explain my project architecture in interview..? in Igate asked me tell me your project flow from source to target..?
1 221011.hi all, my question is how maximum number of ports can exist in a switch? 2.Which type of switching good in using and why?
4 7970Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
2 6889We are having two seperate LANs(seperate workgroups) in our company. And configured mail server(Mail domain) in windows 2003 std server in each LAN seperately. And created user mail Ids also. Both servers working fine, and able to send mails with in the LAN. Let me know how we can able to send mail from one mail domain to second mail domain.
2 4927Post New HCL Interview Questions
What are ISO standards ?
How to integrate the ssrs reports in application?
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)
Which are the two main static classes of linq api that contain extension methods?
What is the metallurgical explanation of effects of chromium, nickel, molybdenum, and carbon in stainless steels?
Which asp object is often used to retrieve user information from forms?
Can you write css3 code for creating boarder image?
Define resource files.
Provision of Bad Debts is made in compliance with the convention of -----------
Which configuration setting allow a calibration order to trigger an inspection lot from maintenance order?
my jindal interview is on 24th.. can anyone give me few tips regarding the same? lik how i shud prep
How to use webcam in wpf application?
What is the permissible maximum flux density in transformer core?
What is request user in django?
What happens to the theoretical transfer rate when a full duplex transmission mode is used?