1. 시험 제공 웹사이트
한국 사이트
SW Expert Academy
SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!
swexpertacademy.com
프로그래머스
코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.
programmers.co.kr
구름DEVTH - 개발자 채용을 위한 코딩 테스트, 프로그래밍 시험
구름DEVTH는 LG전자, NHN, 스마일게이트 등에서 활용 중인 온라인 코딩 테스트 서비스입니다. 부서별, 직군별 시험 관리부터 문제 제작, 관리 기능과 응시자 초대 기능 등 개발자 채용을 위한 모든 기능을 제공합니다.
devth.goorm.io
algospot.com :: 문제 목록 보기
algospot.com
해외사이트
Tech Recruiting Platform, Online Code Testing | Codility
Codility is a software platform that helps technical recruiters hire and train stronger engineers. Learn how to test coders online by requesting a demo today!
www.codility.com
Tests4Geeks - Online Programming & Coding Tests
Test Programming Skills Online before inviting applicants to interview! Testing Service for Recruiters, HR Managers and Team Leaders How it works: Send your candidates a link to the programming test. Receive a report by email when a candidate finishes the
tests4geeks.com
LeetCode - The World's Leading Online Programming Learning Platform
Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
leetcode.com
2. 책
코딩 인터뷰 완전 분석
Elements of Programming Interviews (조금 더 고난이도)
3. 학습 사이트
- 인프런(유료, 한글) : 알고리즘 강좌도 제공하고 있습니다. 그 외에 여러 실무 강좌도 있습니다.
- Coursera
- Codecademy
- Freecodecamp : 아예 Coding Interview Prep (코딩 인터뷰 준비) 라는 커리큘럼이 있습니다;;
- Khanacademy : 무료 MOOC로 유명한 칸 아케데미에도 알고리즘 강좌가 있습니다.
- Udacity
4. 블로그
- 우리나라 개발자의 외국기업 코딩 인터뷰 정리
- 미국 개발자의 실리콘벨리 대표 IT기업 6개 합격 사례와 준비 등
- 알고리즘 잡스 : 코딩 테스트 코칭과 교육을 제공하는 곳.
5. 질문 예시 목록
Prototype이란? Prototype Chaining은?
자바스크립트 능숙도는?
Es6의 Symbol은?
Es6에 추가된 primitive는?
let과 var의 차이점은
Closure란?
자바에서 싱글톤패턴을 쓰는 이유는?
동기, 비동기에 대해 설명하고 장단점
- 동기 : call하고 응답을 기다린 후 다음 로직을 실행. 안전성이 보장되나 느리다
- 비동기 : call하고 다음 로직을 실행. 빠르나 처리가 까다롭고 순서보장이 안됨
DB클러스터링과 리플리케이션의 차이
clustering 클러스터링 : DB서버를 다중화하는 것.
replication 리플리케이션 : 서버와 데이터를 같이 다중화 하는 것
사용해본 UI 프레임워크는
Babel의 용도는
CSS의 포지션이란
아는 디자인패턴을 설명
Sass, Less
Webpack
자바별찍기
package basic;
public class star {
public void print(int num) {
for(int j=1; j<=num; j++) {
for(int i=1; i<=j; i++) {
System.out.print("*");
}
System.out.println("");
}
}
public static void main(String[] args) {
star starPrint = new star();
starPrint.print(10);
}
}
'Project > Coding Test' 카테고리의 다른 글
신입 개발자 면접 준비 (1) : 일반 면접 관련 예상 질문(개발 외) (0) | 2019.10.26 |
---|---|
신입 개발자 면접 준비 (2) : 기술면접 (2) | 2019.10.26 |
부산인재개발원 취업지원팀에서 들은 이력서 자기소개서 작성법 수업 (0) | 2019.08.27 |