Write InStr function. Write the test cases for this function?
Submitted by: Murtazausing System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace InStr
{
class Program
{
static void Main(string[] args)
{
//test case 1, should return -1
string txt = "this is a test";
string searchString = "ae";
Console.WriteLine(InStr(txt, searchString));
//cast case 2, should return 2
txt = "this is a test";
searchString = "is";
Console.WriteLine(InStr(txt, searchString));
Console.Read();
}
//return the position of the first occurrence of one
string "searchString" within another "txt"
//return -1 means cannot find
static int InStr(string txt, string searchString)
{
return txt.IndexOf(searchString);
}
}
}
Submitted by: Murtaza
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace InStr
{
class Program
{
static void Main(string[] args)
{
//test case 1, should return -1
string txt = "this is a test";
string searchString = "ae";
Console.WriteLine(InStr(txt, searchString));
//cast case 2, should return 2
txt = "this is a test";
searchString = "is";
Console.WriteLine(InStr(txt, searchString));
Console.Read();
}
//return the position of the first occurrence of one
string "searchString" within another "txt"
//return -1 means cannot find
static int InStr(string txt, string searchString)
{
return txt.IndexOf(searchString);
}
}
}
Submitted by: Murtaza
Read Online Project Assistant Job Interview Questions And Answers
Top Project Assistant Questions
☺ | What is a successful project in Project Management? |
☺ | Described Project Planning? |
☺ | How to handle stress and pressure? |
☺ | What are rights of customer in Project life cycle? |
☺ | How to deliver the product fast to costumers? |
Top Human Resource (HR) Categories
☺ | Technical Support Interview Questions. |
☺ | Office Boy Interview Questions. |
☺ | Project Assistant Interview Questions. |
☺ | HR Officer Interview Questions. |
☺ | Business process outsourcing (BPO) Interview Questions. |