views:

1066

answers:

13

These days I have an interview for the position: Software Testing Engineer.

Any ideas what questions might pop to the interview? Any tips?

+2  A: 

How do you go about testing software?

Here's a link I found with a list of interview questions you might be interested in: http://www.buzzle.com/articles/software-testing-interview-questions.html

Jim
+1  A: 

How do you know you have tested completely.

fastcodejava
Answer: you can't?
Kev
@Kev "When it ships" ;-)
pst
+2  A: 

I like this one: what is the difference between verification and validation?

Pedro Estrada
+2  A: 

What is software testing ?

Xinus
+1  A: 

a Java-specific question for a tester would be (targeting the awareness of Exceptions)

  • what do you look for when there is a problem with the software you are testing?
akf
A: 

How would you implement Assert.IsTrue?

MedicineMan
A: 

What part does testing takes in software development cycle? (You start writing tests the day you start project and put some of your best engineers to do that. When the project is almost done you test it)

tulskiy
A: 

I think that in the software business the behavior and openess of people is very important. That's especially true for testing people.

I would try to know if the person is going to be able to work with the dev team and ask him what he is doing when he is testing a software with a lot of very obvious bugs. How does it work with the developper to improve that situation. I think that he should find a way to help the developper for example by proposing to make smoke-tests and to integrate it to the build process or by reviewing the unit tests.

I would also ask the person to write a defect report and see if it is clear enough for the one in charge of fixing it.

Joel's test mention that you must ask a developper to write code during his interview. In the same way, I think that you must ask a tester to write a defect report.

I hope it helps

luc
A: 

Just go through the link below and you will get a idea of the questions asked in the interview.

http://www.geekinterview.com/Interview-Questions/Testing

http://www.testinginterviewquestions.com/

PJ
A: 

Software Testing is not language dependent. A quick search on Google gave me what you are looking for

Rachel
+1  A: 

Hey.
You should be more specific in your question.

If the keyword here is Java Software Tester, than expect questions about:
unit testing (assertions, test suits, testSetUp etc), unit testing frameworks (junit, testNG), mocks usage and different mock frameworks(EasyMock, Mockito, jMock), Continuous Integration, Test Driven Development, Behavior Driven Development, working with code repository,code coverage, path coverage, statement coverage, tools for bug tracking (bugzilla/jira)... maybe some about class invariants, design by contract...
You can get something practical like, code review, write tests for some class/interface, write something using TDD approach.

If the keywords are Java Software Tester than expect questions about:
Boundary Values, Equivalence Classes, black-box testing, white-box testing, Test Case, Test Suite, Bug Report, Software Development models (V model, waterfall, DSDM, iterative, agile approach), role of testing in development cycle, role of a tester on development team, when testing is enough, what is quality, definitions and differences between issue, bug, defect, fault, what differences in iseb/istqb/Tmap certifications, what is difference between System/Integration/UserAcceptance/smoke/regression testing, when to automatize and what are pros and cons, tools for test acclimatization (not unit tests), tools for test/bug management (HP QualityCenter/IBM Rational Quality Manager)...
As for practical stuff: how would you test installer or wizard, write bug report, re-design/optimize test case/script, (if position connected with test acclimatization) write code snippet in VBscript (or other scripting language).

In either case check SO for questions with proper tags and/or google for mentioned topics.

yoosiba
A: 

This is also one of the good site for java interview questions, lot of stuff:

http://www.interviewhelper.org/categorydetail.php?Cat=10&level=1&title=JAVA

Nisha