Inquisitivesoftwaretester's Blog
Sr.Software Test Engineer.
Search This Blog
Wednesday, 4 December 2013
Monday, 5 August 2013
Tuesday, 25 June 2013
Roles and Responsibilities of a "Software Testing Engineer"
Generally Roles and Responsibilities of a Testing Engineer may vary, depending upon the working company. But here we are going to discuss about the general and important roles and responsibilities of a Testing Engineer.
1) Analyzing the Requirements from the client
2) Participating in preparing Test Plans
3) Preparing Test Scenarios
4) Preparing Test Cases for module, integration and system testing
5) Preparing Test Data’s for the test cases
6) Preparing Test Environment to execute the test cases
7) Analyzing the Test Cases prepared by other team members
8) Executing the Test Cases
9) Defect Tracking
10) Giving mandatory information of a defect to developers in order to fix it
11) Preparing Summary Reports
12) Preparing Lesson Learnt documents from the previous project testing experience
13) Preparing Suggestion Documents to improve the quality of the application
14) Communication with the Test Lead / Test Manager
15) Conducting Review Meetings within the Team
These are the Roles and Responsibilities of a Testing Engineer which is based upon my knowledge. If you know more about this kindly write it down in the comments section.
Your Feed backs are welcome!
Friday, 21 June 2013
Embedded System Testing Blog: Why there is difference in salary between Develope...
Embedded System Testing Blog: Why there is difference in salary between Develope...: Why there is difference in salary between Developer and Tester ? Who is responsible for it? In product companies there is no salary diffe...
Thursday, 8 March 2012
VBscript for prime nos between given ranga of nos
rem print prime nos between given ranga of nos
option explicit
Dim no1,no2,prime, flag,no
no1=inputbox("enter the starting no")
no2=inputbox("enter the ending no")
no1=cint(no1)
no2=cint(no2)
prime("the porime nos between "&no1&" and "&no2&" are")
prime=""
For no= no1 to no2
flag=0
For i=2 to no-1
if( no mod i)=0 then
flag=1
end if
Exit for
Next
If flag=0 then
prime=prime &vbtab& cint(no)
print(prime)
End If
Next
Subscribe to:
Posts (Atom)