write the test cases on prime number with result?

Answers were Sorted based on User's Feedback



write the test cases on prime number with result? ..

Answer / babitha

Precondition:let the prime no be n
case1: expected o/p (prime no)result
divide the no n by 1 remainder=0 pass
divide the no n by n remainder=0 pass

divide the no n by 2 remainder!=0 pass
.
.
divide the no n by upto n-1 and if remanider not equal zero
then it is a prime no.

Is This Answer Correct ?    43 Yes 15 No

write the test cases on prime number with result? ..

Answer / guest

Testcase ID test condition Result
1 1 true
2 3 true
3 4 false
4 5 true

Is This Answer Correct ?    24 Yes 15 No

write the test cases on prime number with result? ..

Answer / guest

-field area should take only numeric value
-number should not contain fraction or decimal
-number should not contain any special character
-number should be divisible by 1
-if number is divisible by other than 1 then reminder should
be 1

Is This Answer Correct ?    6 Yes 3 No

write the test cases on prime number with result? ..

Answer / pavithramadhesh

import java.util.Scanner;

public class prime {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
System.out.println("Enter a Number: ");
int a=sc.nextInt();
if(((a/a)==1) && ((a/1)==a)){
System.out.println(a+" is Prime Number");
}else {
System.out.println(a+" is Not Prime Number");
}
}
}

Is This Answer Correct ?    2 Yes 0 No

write the test cases on prime number with result? ..

Answer / md.mosaj gohar

- chech if the number is not a decimal no.
- check if the number is not of the from p/q
- check if the number is not a negative no.
- if the number is a natural number a greater than 6 then,
-if it can be converted to the form 6k-1or
6k+1,then it is prime no.else not.
- for natural nos. less than 6: 2,3 7 5 are prime nos. to
be taken as granted.

Is This Answer Correct ?    4 Yes 3 No

write the test cases on prime number with result? ..

Answer / surya gandepalli

for input = 1 , Ouput: should be "Not a Prime Number"

Prime Number(Definition): A number Greater Than 1 is called
a prime number, if it has exactly two factors, namely 1 and
the number itself.

so check with the boundary values.
({INPUT},OUTPUT ) = ({0,1,4}, {NOT PRIME})
({INPUT},OUTPUT ) = ({2,3,5}, {is PRIME})
{Destructive INPUT}=(Type Special Characters),(Copy Past
Special Characters from a Note Pad document Using Mouse ))

0 (Zero is the only Whole Number which is not a natural number)
1

Is This Answer Correct ?    2 Yes 10 No

Post New Answer

More Manual Testing Interview Questions

Hi I want the technical documentation for a sample project, if any one knows about the details plz guide me, mail at gpriya_1980@yahoo.co.in thanks in advance

0 Answers  


What is the difference between test case, test suite, test script, test scenario & test plan?

5 Answers   iSoft, McDonalds,


What is mean by Funtional and Non-Funtional Testing?

3 Answers  


I have 1+ year exp. in web based testing & now I want to switch my job so anyone can tell me which types question generally ask in interview(which related to web based testing ) ???

1 Answers  


How to write a mail to PM and Client regarding Bug status report.And how u r introducing your self to the client through mail.I want a format of both.

1 Answers  


What is integration testing

2 Answers   Nucleus Software,


Explain Vmodel

3 Answers   Infosys,


what r the different types of test case? and tell me the names.

5 Answers   Object Orb, Synova Inc,


What is Ur Streght?(In P.M)

12 Answers   L&T, MBT,


how deployment phase of SDLC differs in product based and in service based company ?

0 Answers   TCS,


If there is requirement After 6-7 months from client such that "Apply Shortcut keys[keyboard keys]to all buttons on all the screen. And If test cases are written for the buttons then Again we have to write test cases for Shortcut kays

1 Answers   TCS,


how can we identify the regression testcases suppose we hava three functionalities for these functionalities we had write some testcases in that testcases how can we find out them

2 Answers   HeadStrong, Mindteck,


Categories