Microsoft Interview for SDET2

They will chat your porject with you in english. and then wirter some algorithm,then write some test case.
 
 1. Give you a website which just implement one function: translating. such as: Chinese will be translated to English. there is a Textbox to input,a Button to click and a Label to return the result from translated.
 Question: please try to write more test cases to test this website.
 
 // The below algorithm is from Microsoft
2.  The function will return the count of str1 containing str2.
        such as: str1=abc, str2=ab, return 1
        str1=aaa, str2=aa, return 2 ....
  
        /// <summary>
        ///  The function will return the count of str1 containing str2.
        ///  such as: str1=abc, str2=ab, return 1
        ///  str1=aaa, str2=aa, return 2 ....
        /// </summary>
        /// <param name="str1"></param>
        /// <param name="str2"></param>
        /// <returns></returns>
        public int ContainNumber(string str1, string str2)
        {
            if (string.IsNullOrEmpty(str1))
                return 0;
            if (string.IsNullOrEmpty(str2))
                return 0;
            if (str1.Length < str2.Length)
                return 0;
            int number = 0;
            int i=0;
                while(str1.Length - i >= str2.Length)
                {
                    string temp = str1.Substring(i, str2.Length);
                    if (temp == str2)
                    {
                        number++;
                    }
                    i++;
                }
           
            return number;
        }

        /// <summary>
        /// the function will return the content between quotation in one string inputed.
        /// such as:   input str:  I am "from" china, I love "china". this sentence will return a list which take two eletements
        /// from, china.
        /// </summary>
        /// <param name="str"> </param>
        /// <returns></returns>
        public List<string> GetContentOfQuotation(string str)
        {
            if (string.IsNullOrEmpty(str))
                return null;
            List<string> Qlist = new List<string>();
            int i=0;
            int start = 0;
            while (i < str.Length)
            {
                if (str[i] == '"')
                {
                    start = i;
                    i++;
                    while (i < str.Length)
                    {
                        if (str[i] == '"')
                        {
                            Qlist.Add(str.Substring(start+1, i - start-1));
                            break;
                        }
                        i++;
     }                  
                }
                i++;
            }
            return Qlist;
        }

       /*
        At last:  All the method, you should writte test case to test these method.      
       */

 

4. how to ensure night point on one circular?

-------------------------------------------------------------

5. reverse wards by space. And write test case

6. Given two parameters, string sentence and int length. Then you should cut the sentence by the specific length. But if the cut point located in a vocabulary, you move the cut point in the previous space in0 front of the vocabulary. And write test case

Example:

String : I love this game.

Length: 6

Result: I love

                this

                game.

 

String : I love basketball.

Length: 6

Result: I love

Give a message here: the cut point located in “basketball” which is a vocabulary

转载于:https://www.cnblogs.com/tomin/archive/2010/11/17/1879904.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值