Difference between revisions of "Technical Interviews"

From Computer Science
Jump to: navigation, search
(Created page with "Computer science technical interviews can include various kinds of tasks... * Particular question about a concept (like there would be on a quiz or exam on the topic in a cour...")
 
 
Line 10: Line 10:
 
* https://www.indeed.com/career-advice/interviewing/computer-science-interview-questions
 
* https://www.indeed.com/career-advice/interviewing/computer-science-interview-questions
 
* Programming problem sites - leetcode, hackerrank, ...
 
* Programming problem sites - leetcode, hackerrank, ...
 +
 +
Some lists of problems at LeetCode that are a good introduction... (check these links in the following order...)
 +
* [https://leetcode.com/explore/featured/card/the-leetcode-beginners-guide/ Beginner's Guide]
 +
* [https://leetcode.com/explore/learn/card/the-leetcode-beginners-guide/692/challenge-problems/ Beginner Challenge Problems]
 +
* [https://leetcode.com/studyplan/leetcode-75/ LeetCode 75]
 +
* [https://leetcode.com/explore/learn/card/the-leetcode-beginners-guide/679/sql-syntax/4358/ Explore Card Track]

Latest revision as of 15:49, 30 October 2024

Computer science technical interviews can include various kinds of tasks...

  • Particular question about a concept (like there would be on a quiz or exam on the topic in a course).
  • Describe some concept (possibly with a whiteboard) - like the instructor of a course on the topic would do.
  • Write code to solve a particular task (like there would be for a programming assignment for a course).
  • Design a solution to a problem (a detailed outline, taking into account efficiency) - this is something that you will see instructors do in courses, but oftentimes students are not asked to do this very much in courses.

Some places to look at tasks like these...

Some lists of problems at LeetCode that are a good introduction... (check these links in the following order...)