My thoughts on recruiting programmers over the past few days, and I have attached another interview question, approved by everyone.

Source: Internet
Author: User

Questions from http://community.csdn.net/Expert/topic/5002/5002550.xml? Temp =. 8560144.

======================================================== ====================================

I have a set of interview questions. How can I help you?

1. Let's talk about the three-tier architecture.

2. How to Handle paging in the Asp.net website. That is to say, the data processing method is displayed by page.
For example, you can use the page function provided by the DataGrid, custom (User) controls, and others.

3. What is the most important aspect of website writing?

4. What is the most important aspect of a website after it is launched?

5. How can team members effectively cooperate with each other?

6. Do you like forums? On what forum?

7. programming questions: S = 1 + 2-3 + 4-5 + 6-7 ...... n
Compile a function and input the parameter n to return the value of S.

 

========================================================== ==========================================================

I will try it myself. Purely entertaining, because I am not familiar with ASP ^_^

1. I did a C/S and B/S technical topic during my online communication course. I also spoke on the podium, haha.

2. Don't understand. I used DataGrid before, but I forgot ......

3. I think it is safe (including preventing hacker attacks and ensuring that too many users do not crash when logging on to the website), and secondly, the website browsing speed (I am too lazy to open a very slow website)

5. Communication.

6. Of course, how can I have a blog on csdn? Hey, it's good to have vckbase and codeguru.

7. I wrote one by myself. Let's take a look at the pick-up bug ^_^

/* 7. programming questions: S = 1 + 2-3 + 4-5 + 6-7 ...... n
Compile a function and input the parameter n to return the value of S. */

# Include <stdio. h>

Int total (int n)
{
// Int S, N;
If (n <1) return 0;
Else if (N % 2 = 0) Return (1 + N-(N-2)/2); // return (2 + n/2)
Else return (1-(N-1)/2); // return (3/2-n/2)
}

// Test

Int main ()
{
Int temp;

Printf ("Please input a integer :");
Scanf ("% d", & temp );
Printf ("% d", total (temp ));

Getchar ();
Return 0;
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.