wasim hajwane


{ City } pune
< Country > india
* Profession * software tester
User No # 105118
Total Questions Posted # 4
Total Answers Posted # 5

Total Answers Posted for My Questions # 7
Total Views for My Questions # 25368

Users Marked my Answers as Correct # 13
Users Marked my Answers as Wrong # 5
Questions / { wasim hajwane }
Questions Answers Category Views Company eMail

What is system testing? when we use system testing in our project?

Infosys, NSS,

2 Manual Testing 7358

Today an interviewer asked me if severity assigned by tester and priority is by developer then why tester assigned priority of defect in defect report ?? 

TCS,

1 Manual Testing 6923

What is mutation testing?? And when we use it??

IBM,

2 Manual Testing 6713

what is functional testing?Explain with one example?And when we use functional testing in your project???

TCS,

2 Manual Testing 4374




Answers / { wasim hajwane }

Question { 4679 }

what is lamda expression?


Answer

lambda expression :
Lambda expression is introduce in c# version 3.0.Its a method without having declaration,
A lambda expression is a anonymous function mostly used to create delegate in LINQ.
 Syntax:

parameter => expression or statement block.

simple program to understand lambda expreesion


class A
{
// we have to declare delegate here

public delegate int B(int a);

static void main()
{
B b=a=>a*a;
int res=b(5);
Console.WriteLine("result = ",res);
}
}

Is This Answer Correct ?    0 Yes 0 No

Question { Ness Technologies, 8872 }

What is the difference between smoke an sanity testing with
example ?


Answer

Smoke Testing - testing the major functionality of the application by the development team before deploy the application into testing environment is called smoke testing.

Sanity Testing- testing the major functionality of the application is called sanity testing.once the application has developed and deploy into testing environment, We can performing the sanity testing, because if the major functionality is working properly, then only we can continue further testing in the application.

Definition wise only we have difference between sanity and smoke testing but practically both are same because only testing team performing the major functionality of the application in testing environment. That why some tester in some project called as sanity testing and some tester in some project called as smoke testing.

Is This Answer Correct ?    3 Yes 2 No


Question { 10118 }

What is a test case?


Answer

Test case is noting but sequential,elaborative and executable form of the requirement.

In every project we are getting the requirement in the shortcut format, with short cut format of the requirements, it is very difficult for us to perform testing on the application, so we are using test cases to easily solve such problem.

Is This Answer Correct ?    0 Yes 0 No

Question { Confidential, 6952 }

Black box Testing


Answer

Black Box:
 Performing testing on the application with functional knowledge id called as black box testing.

Techniques
1 BVA
2 Ecp
3 Error guessing

Is This Answer Correct ?    6 Yes 0 No

Question { IBM, 6713 }

What is mutation testing?? And when we use it??


Answer

Mutation Testing
Performing Testing on the application after the development team has changed the source code intentionally is called as mutation testing.

After completion of unit testing activity in our project that means we have to write the test cases for unit  testing and execute it then at that time developer changes the source code to verify all the test cases which can be used during unit testing is giving the pass result or fail one ..if all the  same test cases giving the pass result then we don't execute all possibility of unit testing.so we have to write another cases for unit testing and perform testing on the basis of those test cases and repeat the process until some of the test cases provides false result in mutation testing.

Is This Answer Correct ?    4 Yes 3 No