design a black box test suite for a program that accepts
two strings and checks if the first string is a substring
of the second string and displays the number of times the
first string occurs in the second string.
Answer Posted / bhupndra
#include<stdio.h>
#include<conio.h>
int main()
{
int i=0,j=0,k=0,count=0,l=0,k1=0;
char a[80],b[80];
clrscr();
printf("\nEnter main string:-\n");
gets(a);
printf("\nEnter sub-string:-\n");
gets(b);
l=strlen(b);
while (a[i]!=EOF)
{
if (a[i]==b[j])
{
i++;
j++;
k1=1;
if (j==l)
{
j=0;
k=1;
count=count+1;
}
}
else
{
if (k1==1)
{
j=0;
k1=0;
}
else
i++;
}
}
if (k==1)
{
printf("\n\nThe given sub-string is present in the main
string.");
printf("\nIt is present %d times.",count);
}
else
{
if (k==0)
printf("\n\nThe given sub-string is not present in the
main string.");
}
}
| Is This Answer Correct ? | 10 Yes | 3 No |
Post New Answer View All Answers
Hello, I want to know how to write a regression test plan? Can someone please send me the format/template? Thanks in advance
What is security Hole ? Is this possible Some one can acess any of restricted page (like admin side)? How you test this previllaze?
What is srs and brs document?
Risk Analysis a) 2 step, b)3 step, c) 4 step, d) 6 step
what is TAS language which is used as a language for some projects/
How to Generate Test Case for Shopping Cart?
In what situation would you want to parameterize a text verification check?
Discuss what test metrics you feel are important to publish an organization?
Tell me a critical defect in which your Client,PM,PL appreciate on you
Explain Test Plan with example? Explain following in the test plan with examples What is being tested? What are pass/fail criteria? When will each test occur? What Hardware & Software environment is required? What features must be tested? What features will not be tested? What are the responsibilities of individuals & organisation in the project?
what is traceability matrix and its usefulness
1.How to maintain the Bug status Report? 2.What is project based Company and product based company?
Manual and automation how do they help in bringing out quality product? Explain?
what is test strategy,test plan and test policy?Does anyone have dummy documents or any links that gives more idea about these?I am a beginner...interested in learning more abt testing.plz help and encourage me........!
how we write test cases to brs,srs,hlds,llds