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

HCL Manual Testing Interview Questions
Questions Answers Views Company eMail

what is difference between waterfall model and vmofel?

6 18882

A Succesful testcase Means..?

14 20525

Suppose " You are given a build with 5 modules to test as per the Customer request after finalization of SRS, But the SRS contains only documentation about 4 modules. On what basis you will continue the testing of 5th module." ?

15 26180

What is difference between Smoke&Sanitary Testing?

9 13076

What r the different testing techniques other than BVA and EQP?

6 15496

How did u perform regression testing what r the steps involved?

2 15566

How many scripts u use to run daily?

1 8655

how does a client /server environment affects testing?

3 11634

can u give me the sample bug report

3 9393

during alpha testing why customer people r invited?

9 14840

how to perform security testing manualy.I given the answer but interviwer not satisfeid from my answer

5 13889

If there is no sufficent time for testing & u have to complete the testing then what will u do?

20 24845

You are the test manager starting on system testing. The development team says that due to a change in the requirements, they will be able to deliver the system for SQA 5 days past the deadline. You cannot change the resources (work hours, days, or test tools). What steps will you take to be able to finish the testing in time?

3 8336

Is it mandatory to use USECASES or directly one can write test casesfrom requirments?

5 10980

How do you select test cases for Regression Testing(The point is when there is change code how do you come know which part of code or modules it will affect).

15 25936

Post New HCL Manual Testing Interview Questions


HCL Manual Testing Interview Questions


Un-Answered Questions

How can you print a signature line in standard letters in recruitment?

590


How do you install a new service pack for Web Logic?

880


what is the generator rating for 40 amp load of 3phase motor.?? 400v voltage of generator... plz tell me with formula its urgent...plzzz... and also tell me that this 40 amp at all phases mean 40 amp on red,40 amp on yellow,40 amp on blue...... or the total sum of that 3phase is 40 amp....

7032


What are natural killer cells?

158


What is notching?

1






Why can't we parallel Voltage transformer secondary circuits?

964


What is the use of sorting the data?

539


Explain how can you create production order without routing and bom?

593


Why is android so popular?

470


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)

1447


Does windows 10 come with a word processing program?

295


What is difference between odbc and jdbc?

500


Why we use delegate in ios?

425


Which will start a session?

574


What is the meaning of 3 dots in java?

675