logo

CuriousTab

CuriousTab

Discussion


Home Technical Questions Software Testing Comments

  • Question
  • What is "bug leakage?" and what is "bug release?"


  • Correct Answer
  • A bug leakage results when a bug is detected which should have been detected in earlier builds/versions of the application A defect which exists during testing yet unfound by the tester which is eventually found by the tester/end-user is also called bug leakage A bug release is when a particular version of s/w is released with a set of known bug(s)/defect(s) These bugs are usually low severity and/or low priority bugs It is done when the company can afford the existence of bug in the released s/w rather than the time/cost for fixing it in that particular version These bugs are usually mentioned in the Release Notes 


  • Software Testing problems


    Search Results


    • 1. Unreachable code would best be found using

    • Options
    • A. code inspections
    • B. a static analysis tool
    • C. code reviews
    • D. a test management tool
    • Discuss
    • 2. In HTML, ___________ tag is used to construct drop-down list boxes and scrolling list boxes.

    • Options
    • A.
  • 3. Undefined reference to 'pthread_create' How to Fix this error?
  • Discuss
  • 4. What would be the output of the following program assuming that the array beigns at location 1002? main() { int a[3][4] = { 1 , 2 , 3 , 4 5, 6 , 7, 8 9, 10 , 11, 12 }; Printf ("\n%u %u %u", a[0] + 1, *( a[0] + 1), *( *(a + 0) + 1) ); }
  • Discuss
  • 5. Indicate what would the SWAP macro be expanded to on preprocessing. Would the code compile? #define SWAP (a, b, c ) (c t; t = a, a = b, b = t; ) main() { int x = 10, y = 20; SWAP (x, y, int ); printf ( " %d%d ", x, y); }
  • Discuss
  • 6. main() { float me = 1.1; double you = 1.1; if(me==you) printf("yes"); else printf("No"); }

  • Options
  • A. Yes
  • B. No
  • C. Both
  • D. Compilation error
  • Discuss
  • 7. Which is the simplest file structure?

  • Options
  • A. Sequential
  • B. Indexed
  • C. Random
  • D. None
  • Discuss
  • 8. Of the following tree structure, which is, efficient considering space and time complexities?

  • Options
  • A. Incomplete Binary Tree
  • B. Complete Binary Tree
  • C. Full Binary Tree
  • D. None
  • Discuss
  • 9. Statement coverage will not check for the following

  • Options
  • A. Dead Code
  • B. Unused Statement
  • C. Missing Statements
  • D. Unused Branches
  • Discuss
  • 10. What are the common problems with software automation?
  • Discuss


Comments

There are no comments.

Enter a new Comment









More in Technical Questions:

DatabaseHardwareNetworkingOperating SystemsProgrammingSoftware Testing