개발자 필독도서 리뷰

[노개북] "클린코드" 챌린지 10일차

개발자 배찌 2022. 3. 2. 11:03
728x90

"노개북" 노마드 개발자 북클럽 10일차!!

#코딩 #개발자 #노마드북클럽 #노개북 #노마드챌린지 #클린코드 #3주스케쥴

 

수 | Assignment #10

  • 📚 복습
  • ✔️ 퀴즈 Quiz (1)

QUESTION 1

Is better to write code that does not need comments.

 -> true

QUESTION 2

We write comments when we fail to communicate using only our code.

 -> true

QUESTION 3

We should try to minimize comments as much as possible by writing better code.

 -> true

QUESTION 4

The best place to find information about the code is should be the code itself rather than comments.

 -> true

QUESTION 5

Where should we declare our variables in a function?

 -> true

QUESTION 6

If one function calls another, they should be vertically close.

 -> true

QUESTION 7

A function that is called should be below a function that does the calling.

 -> true

QUESTION 8

What does DTO mean?

-> Data Transfer Object

QUESTION 9

When do we use DTOs?

-> When working with DBs or parsing WebSocket messages.

QUESTION 10

Objects expose functions to operate in their data.

-> true