Keywords: control program - 제어 프로그램

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 7

정보 시험 정리 ♡

Keywords

control program_ 제어 프로그램


the series of instructions given to a control system
제어 시스템에 제공되는 일련의 지침

control system_ 제어 시스템


system where a computer is used to operate devices automatically
컴퓨터를 사용하여 장치를 자동으로 작동시키는 시스템

flowchart_ 순서도
a chart or diagram used to break down a task into smaller parts
작업을 더 작은 부분으로 나누는 데 사용되는 차트 또는 다이아그램

flowol_ 플로울
a piece of software used to make control programs
제어 프로그램을 만드는 데 사용되는 소프트웨어

system_ 시스템
a set of equipment arranged and organised to perform a certain task
특정 작업을 수행하기 위해 배열되고 구성된 일련의 장비

feedback_ 피드백
where the output from a system directly affects the input
시스템으로부터의 출력이 입력에 직접적으로 영향을 미치는 경우

sensor_ 감지기
a device that measures a physical quantity
물리량을 측정하는 장치

decision_ 결정
a step that asks a question to where there is a yes or no answer
예 또는 아니오 대답이 있는 곳에 질문을 하는 단계

input_ 입력
data supplied to the computer from a sensor for processing
처리를 위해 감지기에서 컴퓨터에 제공되는 데이터

output_ 출력
data that a computer sends
컴퓨터가 보내는 데이터
subroutine_ 서브루틴
a section of a program that can be called upon when needed
필요할 때 호출할 수 있는 프로그램 섹션

system life cycle_ 소프트웨어 개발 수명 주기


the series of steps carried out during the creation of a new system
새로운 시스템을 만드는 동안 수행되는 일련의 단계

simulation_시뮬레이션
a mock-up of a real situation
실제 상황의 모형

monitor_모니터
means to check the conditions continuously, using sensors
센서를 이용하여 상태를 지속적으로 확인하는 것을 의미

state table_상태표
table showing all of the possible inputs and the outputs used to test the working
of a control program/flowchart
제어 프로그램/흐름도의 작업을 테스트하는 데 사용되는 모든 가능한 입력 및 출력을 보여주는 표

gantt chart_ 간트차트


horizontal time line used to plan and schedule activities.
활동을 계획하고 계획하는 데 사용되는 수평 타임 라인

what if...?
a question that you ask the spreadsheet
스프레드시트에 묻는 질문

spreadsheet_스프레드시트
a file that exists of cells in rows and columns and can help arrange, calculate and
sort data
행과 열에 있는 셀로 존재하며 데이터를 정렬, 계산 및 정렬하는 데 도움이 될 수 있는 파일
1단원_control system
컨트롤 시스템)

Control system in many places_다양한 장소의 컨트롤시스템

Place where you Example 1 Example 2 Example 3


might find
computers in
control

School Central heating security cameras projectors


system
Home Washing machine refrigerator tv
At a fairground turnstiles street lamps popcorn
/theme park generators
Along road Fog warning system speed enforcement tollgates
system
temperature
Shopping center monitoring elevators security cameras

Different symbols in flowchart_순서도 기호

Command/Instruction Symbol Meaning

used to represent either the


Start beginning or ending of a program

used to indicates a sequenced set


Subroutine of actions that perform specific,
smaller tasks that are part of a
larger process.

used to represent any data that can


Input/output be available for input and output

Processs ( delay ) used to represent an action,


function or process

used to indicate a question that


Decision results in a "yes" or "no" answer, as
well as a possible "true" or "false"
situation

Arrows used to shows relationships between


the representative shapes.
How to draw flowcharts_순서도 그리는 법

예) Red on for 7 seconds ,yellow on 3 seconds, green on 7 seconds

start

turn off yellow,


turn on red turn on green

delay 7 delay 7

start
end
turn off red,
on yellow

delay 3

예2) Red on for 7 seconds ,yellow on 3 seconds, green on 7 seconds ( should be


repeat red-yellow-green-yellow-red-yellow-green-yellow-red) 위밑위밑

start

turn off yellow,


turn on turn on green
red

delay 7
delay 7

turnoff
turn on green,
red
yellow on
turn off red,
on yellow

delay 3

delay 3
turn off yellow
Using the concept of subroutine in flowcharts

예) 0 1

start start

turn on light
on top sub 1- light

delay 5 stop

turn off light on top,


turn on light on bottom

delay 5

sub 1-light

turn on light
on top

delay 5

turn off light on


top, turn on light
on bottom

delay 5
2단원_spreadsheet

system life cycle_소프트웨어 개발 수명 주기

Identify_확인
Identiify the problem
Analyse_분석
investigate the problem in detail and
make sure you understand what needs to
be done.
Design_디자인
plan each part of the system
Implement_구현
새로운 시스템을 만듭니다.
Test_테스트
make sure that every part of the system
worrks and that the whole system
functions when the parts are put
together
Evaluate_평가
consider if improvements to the system
are needed.
Fomula
COUNT_=COUNT(A1:A10) 숫자의 개수
COUNTA_=COUNTA(A1:A10) 공백이 아닌 셀의 개수
COUNTIF_=COUNTIF(A1:A10,1) 1의 개수
COUNTIF_=COUNTIF(A1:A10,“Jane”) 제인의 개수
COUNTBLANK_=COUNTBLANK(A1:A10) 공백 셀 개수
=COUNTA(A1:10)-COUNT(A1:A10) 단어 셀
=COUNTA(A1:A10)+COUNTBLAMLNK(A1:A10) 모든 셀 개수
=COUNTIF(A1:A10,“>100”) 백보다 큰 수의 개수

IF(COUNDITION,TRUE-value,FALSE-value)
숫자예) IF(A1>=500,25,15) A1이 500보다 크거나 같으면 25, 작으면 15가 나타남
문자예) IF(A1>=50,“Pass”,“False”) A1이 50보다 크거나 같으면 pass, 작으면 false가 나타남

IF(AND(A1=“Yes”,A3=“Yes”),“Pass”,“Fail”) 두 조건이 모두 맞으면 pass, 아니면 false


IF(OR(A1=“Yes”,A3=“Yes”),“Pass,”Fail“) 둘 중 하나라도 맞으면 pass, 아니면 false

RANDBETWEEN_=RANDBETWEEN(1,100) 1부터 100사이의 숫자를 랜덤으로 나타냄


IF function

- IF function= Logical function, because it makes the decision to do one of two


things based on the value it it testing.
- It is useful because you can use it to test a condition and then choose between
two actions based on whether the condition is tru or false.
- IF 함수 = 논리 함수, 테스트하는 값에 따라 두 가지 중 하나를 수행하기로 결정하기 때문입니다.
- 조건을 테스트한 다음 조건이 참인지 거짓인지에 따라 두 가지 작업 중에서 선택할 수 있기 때문에
유용합니다.

IF function makes use of something called relational operators.


IF 함수는 관계 연산자라는 것을 사용합니다.

IF(COUNDITION,TRUE-value,FALSE-value)

You might also like