0% found this document useful (0 votes)
83 views

Tech Questions

The document provides sample questions that a Microsoft recruiter asked a reader who was interviewing for a position straight out of college. The questions include: 1) How did you first get interested in Computer Science? 2) What programming area do you like best and what do you enjoy about it? 3) What is your strongest programming language? 4) Questions about experience coding in C/C++ and confidence coding in those languages without references.

Uploaded by

rajashekarpula
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
83 views

Tech Questions

The document provides sample questions that a Microsoft recruiter asked a reader who was interviewing for a position straight out of college. The questions include: 1) How did you first get interested in Computer Science? 2) What programming area do you like best and what do you enjoy about it? 3) What is your strongest programming language? 4) Questions about experience coding in C/C++ and confidence coding in those languages without references.

Uploaded by

rajashekarpula
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 1

Microsoft college recruitment questions

Reader faced these questions from Microsoft recruiter, who apparently was hiring straight
out of college.

1. How did you first get interested in Computer Science?


2. What do you like to do best related to computers now (programming,
administration, testing, manage projects, etc)? What is it about that area that you
specifically enjoy?
3. What is your strongest programming language (Java, ASP, C, C++, VB,
HTML,C#, etc.)?
4. When is the last time you coded in C/C++? What is the most lines of original
C/C++ code you have personally written in one project? How confident are you in
your ability to write C or C++ without a reference? (more…)

Read all | Browse topics: General, C++, Windows

55 most frequently asked interview questions

XML interview questions

1. What is the difference between SAX parser and DOM parser?


2. What is the difference between Schema and DTD?
3. How do you parse/validate the XML document?
4. What is XML Namespace? (more…)

Read all | Browse topics: General, Web dev

Solaris interview questions

1. List the files in current directory sorted by size ? - ls -l | grep ^- | sort -nr
2. List the hidden files in current directory ? - ls -a1 | grep "^\."
3. Delete blank lines in a file ? - cat sample.txt | grep -v ‘^$’ > new_sample.txt
4. Search for a sample string in particular files ? - grep “Debug” *.confHere grep
uses the string “Debug” to search in all files with extension“.conf” under current
directory. (more…)

You might also like