728x90
728x90

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. 블로그

 

 

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);
	}
}

 

728x90
728x90
블로그 이미지

coding-restaurant

코딩 맛집에 방문해주셔서 감사합니다.

,

v