20,121,107 Rong Di Information Technology Co., Ltd. interview summary

1, DateTime.Pase (myString); this line of code what is the problem?

     A: There are problems when the time format myString not meet the requirements, it will throw an exception, it is recommended to use DateTime.TryParse ();

 

2, using the remote jquery crawl a web page ( http://www.test.com/abc.aspx ) content to fill a Div (Id = "DivTest") , write a JS?

     answer:
 
 
$.ajax({
  url: "http: //www.test.com/abc.aspx",
  cache: false,
  success: function(html){
    $("#DivTest").append(html);
  }
});

 

3, simple to elaborate Ajax works?

 

4, if 2008 is a single-digit number is a power of 2008?

     A: The 2008 is an 8-bit one side
         2008 was 4 quadratic bits
         2008 cubic bits is 2
         2008 to the fourth digit is 6
         ........... cycle to some, the answer is 6

5, write a regular expression to validate the password can only be 6-20 characters, numbers and letters can be?

 

. 6, A =. 3, B =. 4, a third party without the premise of the variable, the a, b values interchange (may be a variety of methods, the method is not limited to)?

 

7, please explain the deep copy and shallow copy;

 

8. Please explain the method of passing parameters between several commonly used pages .net, and say their strengths and weaknesses?

 

9, enclose the string "programmer a am I" word by word and reverse output "I am a programmer" (. Net)?

 

10,      in the table below, greater than the average level of sales recorded in the region, with a Sql query?

Ordered   Region    Total

1          A      100.00

2          C      80.00

3          A      130.00

4          B      90.00

5          B      100.00

 

11,      write a sql statement, to remove the article 31 in the table 40 records A, Note: Sqlserver automatic growth ID as the primary key, but the ID may not be continuous.

  select top 10 * from A where id > (select MAX(Id) from (select top 30 Id from A orderby Id)a)

 

12.      Given the following XML file, draw through all the file name (FileName) flowchart and C # code (use the recursive algorithm)

 

13,      with C # design patterns to write a single case?

 

14,      shopping with a school of painting a B2C e-mall site of the basic flow chart?

 

15,      a software development project is usually divided into several stages, each stage of the division of labor, talk about your strengths and weaknesses on the development process of a project, as well as to improve the way?

Published 97 original articles · won praise 8 · views 190 000 +

Guess you like

Origin blog.csdn.net/llorjj999/article/details/8172413