rohini


{ City }
< Country > india
* Profession *
User No # 110065
Total Questions Posted # 3
Total Answers Posted # 2

Total Answers Posted for My Questions # 17
Total Views for My Questions # 17337

Users Marked my Answers as Correct # 17
Users Marked my Answers as Wrong # 3
Questions / { rohini }
Questions Answers Category Views Company eMail

How to write JSON query ? Explain with Example

TCS, Wahab,

1 Manual Testing 2910

Write SQL query to see first 100 recorders from table?

9 Manual Testing 7735

If you find bug while testing, and Developer reject your bug, You will try to explain developer this is bug, Please fix it, Still Developer does not listen to you ? What you will do at this situation.

Tech Mahindra,

7 QA Concepts 6692




Answers / { rohini }

Question { Satyam, 3924 }

Write Testcases for creditcard limit.


Answer

You can check each and every type of card will have a specific number of digits as Card Number.

For example say, Discover should have 17 digits only. Also each card will have an expiry date. With these validations in mind, we will write test cases like :---
1. Test the boundary conditions for credit card by giving more than 17 digits and less than 17 digits.
2. Invalid credit card number.
3. Invalid Expiry date etc

Check the credit card number with alpha numeric also. It should not accept alpha numeric characters & tst with 4500 5500 0000 0001 number. This will work only in staging env's

Test credit card(CC) numbers are avail for CC testing purpose,

for ex : 4111111111111111 - for Visa card,

Is This Answer Correct ?    6 Yes 1 No

Question { 7735 }

Write SQL query to see first 100 recorders from table?


Answer

I think query should be:

select TOP(100) from TABLE_NAME;

Not sure, its correct or not.

Is This Answer Correct ?    11 Yes 2 No