Answered Questions

  • UAT

    At what level is UAT done?

    goksn

    • Sep 3rd, 2009

    UAT - User acceptance testing.When it will be performed? - It depends up on the SDLC the project team is doing. In traditional waterfall, spiral or incremental interative process, the UAT is performed...

  • Testing

    1. How many types of reviews that we have in our testing?2. What is bad defect? why do we write bad defects?3. How RTM will be helpful for the QC team?

    kurtz182

    • Dec 20th, 2009

    1) There are peer reviews, walkthroughs and inspections.2) It is a high priority and/or severity bug.  We attach a high priority or severity level in the defect report and our description often c...

  • Types of Testing Techniques

    There are many types of testing like syntactic test,Semantic test,Equivalence partitioning, Boundary value analysis,Elementary comparison test, Decision flow making etc and so on. The main thing is what is the difference between Boundary value analysis and Equivalence partitioning

  • Quality assurance

    What is the difference between Quality Assurance, Quality Control and Audit Function.

    Sagar detroja

    • Mar 13th, 2018

    The maintenance of a desired level of quality in a service or product, especially by means of attention to every stage of the process of delivery or production.

    ameena

    • Aug 11th, 2016

    Quality assurance is a set of activities involved in the processes and Quality control is set of activities involved in product and audit function is nothing but periodic inspection in the quality system.

  • Release Notes

    What is Release Notes?What is Final Candidate?

  • How to swap without third variable?

    A variable is a named location in memory that is used to store data which can be modified in a program. Let us see how to swap two variables without using third variable. This can be done in number of namely By using arithmetic operators By using Bitwise operators By using Pointers Concept and so on Let us see one of the method namely by using arithmetic operators. Consider 2 variables...

    Ramya Shetty

    • Nov 11th, 2015

    A and b are two variables ; Following code will swap both number and string inputs

    a = Inputbox("Enter a")
    b = Inputbox("Enter b")

    a = a + b

    b = left(a,(instr(a,b)-1))
    a = Right(a,(len(a)-len(b)))

    msgbox "b ="&b
    msgbox "a = "&a