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

NSIC Electrical Engineering Interview Questions
Questions Answers Views Company eMail

what is AH of battery

6 24501

Post New NSIC Electrical Engineering Interview Questions


NSIC Electrical Engineering Interview Questions


Un-Answered Questions

What is the purpose of a constructor? Destructor?

732


what is the role of configuration manager?

549


Mention how many types of delivery groups found in ms exchange 2013?

737


Can I use kali linux as my main os?

452


What are the different types of luws?

673






How to Declare a SafeArray in the type library editor?

1748


write a program to develop a graphic user interface application of marks book with students names and their names.the program should show the following options main menu,add student details,display student details,maximum mark and minimum mark.

1189


When was ariane launched?

444


What do you mean by custom tag in jsp?

521


Explain polymorphism in c# with a simple example?

525


What are the features provided by dojo widgets?

1


Which tag is used to insert images into your web page?

413


Where is asp cache located on iis 6.0?

538


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)

1463


How do you copy conditional formatting in excel?

307