ログイン

PRETEST

PRETEST
60問 • 1年前
  • Trix Soriano
  • 通報

    問題一覧

  • 1

    1. This shows you what line number your cursor is on. It is useful since the compiler gives error messages with a line number.

    line number

  • 2

    2. BEFORE your program “CODE” can be sent to the BOARD, it needs to be converted into INSTRUCTIONS that the board understands. This process is called...

    compiling

  • 3

    3. A function often used to SET PINMODE to input or output

    setup ()

  • 4

    4. This code happens over and over again.

    loop()

  • 5

    5. A method of EMULATING AN ANALOG SIGNAL through a digital.

    PWM (PULSE WIDTH MODULATION)

  • 6

    6. No electrical signal present (0V). Also OFF or False in boolean logic.

    LOW

  • 7

    7. This allows you to get READINGS from ANALOG SENSORS or interfaces that have more than two states.

    analogRead

  • 8

    8. Assign a HIGH or LOW value to a pin already declared as an _______.

    digitalWrite

  • 9

    9. Correct syntax of HELLO WORLD?

    void setup() { Serial.begin(9600) } void loop() { Serial.println("Hello World!"); }

  • 10

    10. What does LED stand for?

    Light Emitting Diode

  • 11

    11. What is defined as the DURATION OF "ON TIME"?

    Pulse Width

  • 12

    12. What is NOT a PWM Pin on most Arduino boards?

    8

  • 13

    13. When the condition in a "FOR" loop becomes ______, the LOOP ENDS.

    false

  • 14

    14. The ______ is one integrated ELECTRONIC TRANSDUCERS, DC voltage supply, widely used in computers, printers, copiers, alarm, electronic toys, automotive electronic equipment, telephones timers and other electronic products for sound devices.

    Piezoelectric Buzzer

  • 15

    15. Which statement will mute the buzzer?

    digitalWrite(buzzer, LOW); analogWrite(buzzer, 0);

  • 16

    16. Where should the MIDDLE PIN of the POTENTIOMETER be connected to?

    analog pin

  • 17

    17. What kind of value does the Photoresistor collect?

    analog

  • 18

    18. What does an LM35 measure? —

    temperature

  • 19

    19. Where should the LEGS OF AN LM35 be connected to? (from left to right)?

    5V, ANALOG, GROUND

  • 20

    20. It is designed for mobile robot line TRACKING APPLICATIONS, in three (3) or five (5) IR reflective sensors that will reliably DETECT DARK LINES printed over light color surfaces.

    line sensor

  • 21

    21. The function of a _____________ is to take a LOW CURRENT CONTROL SIGNAL and then turn it into a HIGHER CURRENT SIGNAL that can drive a motor.

    motor driver

  • 22

    22. When the BUTTON IS NOT BEING PRESSED it becomes what is called a _______ pin – it’s NOT CONNECTED TO ANYTHING.

    floating

  • 23

    23. What does the command 'buttonState = digitalRead(buttonPin);' do?

    check the condition of the tact switch

  • 24

    24. Pauses the program for the amount of time (in milliseconds) specified as parameter.

    delay(ms)

  • 25

    25. It is a SIMPLE KNOB that provides a VARIABLE RESISTANCE, which we can read into the Arduino board as an analog value

    potentiometer

  • 26

    26. A device having a DESIGNED RESISTANCE to the passage of an electric current.

    resistor

  • 27

    27. Arduino grammar is built on the basis of _____________ grammar.

    C

  • 28

    28. Which sensor is the odd one out?

    Ultrasonic Sensor

  • 29

    29. The name “________” came from an old Japanese sport, which is two opponents fighting in a ring, each of them trying to push the other opponent out of it.

    Sumo

  • 30

    30. What analog sensor serves as the PRIMARY COMPONENT IN A SUMO ROBOT?

    Ultrasonic Sensor

  • 31

    33. Reads the value from a specified digital pin, either HIGH or LOW.

    digitalRead

  • 32

    34. The ability of a material to hold an electrical charge.

    capacitance

  • 33

    35. A named identifier that cannot change its value in a program.

    constant

  • 34

    36. The process of going through a circuit or code, and FINDING ERRORS, until the expected behavior is achieved.

    debugging

  • 35

    37. A datatype used to REPRESENT A FRACTION which entails the use of decimal points for floating point numbers.

    float

  • 36

    38. The BRAINS OF THE ARDUINO, this is a small computer that you will program to listen for, process, and display information.

    microcontroller

  • 37

    39. A potentiometer returns an analog value between ____ and _____.

    0, 1023

  • 38

    40. A way to SIMULATE a varying static voltage.

    PWM (PULSE WIDTH MODULATION)

  • 39

    41. A component that MEASURES one form of energy and converts it to VOLTAGE OR CURRENT.

    sensor

  • 40

    42. A type of serial protocol between two devices.

    serial communication

  • 41

    43. A component that can OPEN OR CLOSE an electrical circuit.

    switch

  • 42

    44. A data type that STORES VALUES which are likely to change as your program runs.

    variable

  • 43

    45. Generates a SQUARE WAVE of the specified frequency (and 50% duty cycle) on a pin. —

    tone()

  • 44

    46. A _______ loop will loop continuously, and INFINITELY, until while the expression inside the parenthesis, () becomes false.

    while

  • 45

    47. The _______ statement checks for a CONDITIONS and EXECUTES THE PROCEEDING statement or set of statements if the CONDITION IS 'TRUE'.

    if else

  • 46

    48. _________ is a useful C component that allows the programmer to GIVE A NAME TO A CONSTANT VALUE before the program is compiled.

    #define

  • 47

    49. A syntax used to end a statement.

    ; (semicolon)

  • 48

    50. A function used to INITIALIZE variables, pin modes, start using libraries, etc.

    void()

  • 49

    51. Write a HIGH or a LOW value to a digital pin.

    digitalWrite

  • 50

    52. ______ sensor output voltage LINEAR RELATIONSHIP between the Celsius temperature scale.

    LM35

  • 51

    53. It is an electronic device for DISPLAYING NUMERALS or other information using GLOW DISCHARGE.

    Nixie Tube

  • 52

    54. What sensor is designed for mobile robot LINE TRACKING APPLICATIONS?

    line sensor

  • 53

    55. The ______ statement is used to REPEAT A BLOCK OF STATEMENTS enclosed in curly braces.

    for

  • 54

    56. _________ signals OFF or no electrical signal is present.

    LOW

  • 55

    57. Is a sport in which two robots attempt to push each other out of a circle.

    Robot-sumo

  • 56

    58. A form of electronic communication sent as signals of varying frequency INSTEAD of ON or OFF like a DIGITAL DATA TRANSMISSION.

    analog

  • 57

    59. What component can be driven by an OSCILLATING ELECTRONIC CIRCUIT or other audio signal source.

    piezzo buzzer

  • 58

    60. ________ signals ON or electrical signal is present.

    HIGH

  • 59

    The arduino grammar is built on the basis of

    C grammar

  • 60

    Ultrasonic Sensor Additional Info TrigPin: used to trigger the — EchoPin: produces a — when the reflected signal is received

    ultrasonic sound pulses pulse

  • ALERTNESS

    ALERTNESS

    Trix Soriano · 24問 · 2年前

    ALERTNESS

    ALERTNESS

    24問 • 2年前
    Trix Soriano

    ENTREPRENEUR

    ENTREPRENEUR

    Trix Soriano · 24問 · 2年前

    ENTREPRENEUR

    ENTREPRENEUR

    24問 • 2年前
    Trix Soriano

    ATTENTIVENESS

    ATTENTIVENESS

    Trix Soriano · 29問 · 2年前

    ATTENTIVENESS

    ATTENTIVENESS

    29問 • 2年前
    Trix Soriano

    ATTENTIVENESS - QUOTES

    ATTENTIVENESS - QUOTES

    Trix Soriano · 6問 · 2年前

    ATTENTIVENESS - QUOTES

    ATTENTIVENESS - QUOTES

    6問 • 2年前
    Trix Soriano

    INTRODUCTION TO GREEK LITERATURE

    INTRODUCTION TO GREEK LITERATURE

    Trix Soriano · 29問 · 2年前

    INTRODUCTION TO GREEK LITERATURE

    INTRODUCTION TO GREEK LITERATURE

    29問 • 2年前
    Trix Soriano

    GREEK LITERATURE

    GREEK LITERATURE

    Trix Soriano · 23問 · 2年前

    GREEK LITERATURE

    GREEK LITERATURE

    23問 • 2年前
    Trix Soriano

    1.2 Common Logical Fallacies

    1.2 Common Logical Fallacies

    Trix Soriano · 20問 · 2年前

    1.2 Common Logical Fallacies

    1.2 Common Logical Fallacies

    20問 • 2年前
    Trix Soriano

    AVAILABILITY

    AVAILABILITY

    Trix Soriano · 11問 · 2年前

    AVAILABILITY

    AVAILABILITY

    11問 • 2年前
    Trix Soriano

    AVAILABLITIY - Quotes

    AVAILABLITIY - Quotes

    Trix Soriano · 21問 · 2年前

    AVAILABLITIY - Quotes

    AVAILABLITIY - Quotes

    21問 • 2年前
    Trix Soriano

    AVL. - Noah's Ark

    AVL. - Noah's Ark

    Trix Soriano · 9問 · 2年前

    AVL. - Noah's Ark

    AVL. - Noah's Ark

    9問 • 2年前
    Trix Soriano

    AVL. - George Washington

    AVL. - George Washington

    Trix Soriano · 7問 · 2年前

    AVL. - George Washington

    AVL. - George Washington

    7問 • 2年前
    Trix Soriano

    PP1 - Lifestyle

    PP1 - Lifestyle

    Trix Soriano · 34問 · 2年前

    PP1 - Lifestyle

    PP1 - Lifestyle

    34問 • 2年前
    Trix Soriano

    PP1 - MODERATE TO VIGOROUS

    PP1 - MODERATE TO VIGOROUS

    Trix Soriano · 19問 · 2年前

    PP1 - MODERATE TO VIGOROUS

    PP1 - MODERATE TO VIGOROUS

    19問 • 2年前
    Trix Soriano

    PP1 - MODERATE TO VIGOROUS

    PP1 - MODERATE TO VIGOROUS

    Trix Soriano · 18問 · 2年前

    PP1 - MODERATE TO VIGOROUS

    PP1 - MODERATE TO VIGOROUS

    18問 • 2年前
    Trix Soriano

    HP1– Consumer Health Information

    HP1– Consumer Health Information

    Trix Soriano · 17問 · 2年前

    HP1– Consumer Health Information

    HP1– Consumer Health Information

    17問 • 2年前
    Trix Soriano

    HP1 - Alternative Medicine

    HP1 - Alternative Medicine

    Trix Soriano · 27問 · 2年前

    HP1 - Alternative Medicine

    HP1 - Alternative Medicine

    27問 • 2年前
    Trix Soriano

    AD1 - Works

    AD1 - Works

    Trix Soriano · 6問 · 2年前

    AD1 - Works

    AD1 - Works

    6問 • 2年前
    Trix Soriano

    PD1

    PD1

    Trix Soriano · 28問 · 2年前

    PD1

    PD1

    28問 • 2年前
    Trix Soriano

    SKILL RELATED

    SKILL RELATED

    Trix Soriano · 18問 · 2年前

    SKILL RELATED

    SKILL RELATED

    18問 • 2年前
    Trix Soriano

    HEALTH RELATED

    HEALTH RELATED

    Trix Soriano · 14問 · 2年前

    HEALTH RELATED

    HEALTH RELATED

    14問 • 2年前
    Trix Soriano

    HD1

    HD1

    Trix Soriano · 18問 · 2年前

    HD1

    HD1

    18問 • 2年前
    Trix Soriano

    1.3 Kalamidad

    1.3 Kalamidad

    Trix Soriano · 6問 · 2年前

    1.3 Kalamidad

    1.3 Kalamidad

    6問 • 2年前
    Trix Soriano

    QUIZ

    QUIZ

    Trix Soriano · 52問 · 2年前

    QUIZ

    QUIZ

    52問 • 2年前
    Trix Soriano

    STEPS

    STEPS

    Trix Soriano · 10問 · 2年前

    STEPS

    STEPS

    10問 • 2年前
    Trix Soriano

    A3

    A3

    Trix Soriano · 16問 · 2年前

    A3

    A3

    16問 • 2年前
    Trix Soriano

    CATEGORY

    CATEGORY

    Trix Soriano · 11問 · 2年前

    CATEGORY

    CATEGORY

    11問 • 2年前
    Trix Soriano

    CRITERIA

    CRITERIA

    Trix Soriano · 11問 · 2年前

    CRITERIA

    CRITERIA

    11問 • 2年前
    Trix Soriano

    Landforms

    Landforms

    Trix Soriano · 40問 · 2年前

    Landforms

    Landforms

    40問 • 2年前
    Trix Soriano

    MOUNTAIN RANGES

    MOUNTAIN RANGES

    Trix Soriano · 43問 · 2年前

    MOUNTAIN RANGES

    MOUNTAIN RANGES

    43問 • 2年前
    Trix Soriano

    Volcano

    Volcano

    Trix Soriano · 40問 · 2年前

    Volcano

    Volcano

    40問 • 2年前
    Trix Soriano

    Faults

    Faults

    Trix Soriano · 22問 · 2年前

    Faults

    Faults

    22問 • 2年前
    Trix Soriano

    Earthquake

    Earthquake

    Trix Soriano · 22問 · 2年前

    Earthquake

    Earthquake

    22問 • 2年前
    Trix Soriano

    HD1 - Med Pro

    HD1 - Med Pro

    Trix Soriano · 26問 · 2年前

    HD1 - Med Pro

    HD1 - Med Pro

    26問 • 2年前
    Trix Soriano

    GRAPHICS ORGANIZER

    GRAPHICS ORGANIZER

    Trix Soriano · 38問 · 2年前

    GRAPHICS ORGANIZER

    GRAPHICS ORGANIZER

    38問 • 2年前
    Trix Soriano

    GRAPHIC OG PICS

    GRAPHIC OG PICS

    Trix Soriano · 28問 · 2年前

    GRAPHIC OG PICS

    GRAPHIC OG PICS

    28問 • 2年前
    Trix Soriano

    CASH FLOW

    CASH FLOW

    Trix Soriano · 25問 · 2年前

    CASH FLOW

    CASH FLOW

    25問 • 2年前
    Trix Soriano

    LESSON 9

    LESSON 9

    Trix Soriano · 34問 · 2年前

    LESSON 9

    LESSON 9

    34問 • 2年前
    Trix Soriano

    MP

    MP

    Trix Soriano · 36問 · 2年前

    MP

    MP

    36問 • 2年前
    Trix Soriano

    Paglutas ng Climate changr

    Paglutas ng Climate changr

    Trix Soriano · 10問 · 2年前

    Paglutas ng Climate changr

    Paglutas ng Climate changr

    10問 • 2年前
    Trix Soriano

    Kawalan ng Trabaho

    Kawalan ng Trabaho

    Trix Soriano · 25問 · 2年前

    Kawalan ng Trabaho

    Kawalan ng Trabaho

    25問 • 2年前
    Trix Soriano

    Tyoes of Pronouns

    Tyoes of Pronouns

    Trix Soriano · 25問 · 2年前

    Tyoes of Pronouns

    Tyoes of Pronouns

    25問 • 2年前
    Trix Soriano

    Frictional, Structural, Cyclical

    Frictional, Structural, Cyclical

    Trix Soriano · 10問 · 2年前

    Frictional, Structural, Cyclical

    Frictional, Structural, Cyclical

    10問 • 2年前
    Trix Soriano

    EGGS

    EGGS

    Trix Soriano · 30問 · 2年前

    EGGS

    EGGS

    30問 • 2年前
    Trix Soriano

    QUALITY

    QUALITY

    Trix Soriano · 15問 · 2年前

    QUALITY

    QUALITY

    15問 • 2年前
    Trix Soriano

    MARKET

    MARKET

    Trix Soriano · 24問 · 2年前

    MARKET

    MARKET

    24問 • 2年前
    Trix Soriano

    Wave Formation

    Wave Formation

    Trix Soriano · 32問 · 2年前

    Wave Formation

    Wave Formation

    32問 • 2年前
    Trix Soriano

    Proponents of EM Wave Theory

    Proponents of EM Wave Theory

    Trix Soriano · 15問 · 2年前

    Proponents of EM Wave Theory

    Proponents of EM Wave Theory

    15問 • 2年前
    Trix Soriano

    ELECTROMAGNETIC WAVES

    ELECTROMAGNETIC WAVES

    Trix Soriano · 30問 · 2年前

    ELECTROMAGNETIC WAVES

    ELECTROMAGNETIC WAVES

    30問 • 2年前
    Trix Soriano

    RISKS and HAZARDs

    RISKS and HAZARDs

    Trix Soriano · 35問 · 2年前

    RISKS and HAZARDs

    RISKS and HAZARDs

    35問 • 2年前
    Trix Soriano

    BENEVOLANCE

    BENEVOLANCE

    Trix Soriano · 26問 · 2年前

    BENEVOLANCE

    BENEVOLANCE

    26問 • 2年前
    Trix Soriano

    Quotes

    Quotes

    Trix Soriano · 5問 · 2年前

    Quotes

    Quotes

    5問 • 2年前
    Trix Soriano

    ZACCHEUS

    ZACCHEUS

    Trix Soriano · 13問 · 2年前

    ZACCHEUS

    ZACCHEUS

    13問 • 2年前
    Trix Soriano

    THE GOOD SAMARITAN

    THE GOOD SAMARITAN

    Trix Soriano · 11問 · 2年前

    THE GOOD SAMARITAN

    THE GOOD SAMARITAN

    11問 • 2年前
    Trix Soriano

    Joseph the Dreamer

    Joseph the Dreamer

    Trix Soriano · 18問 · 2年前

    Joseph the Dreamer

    Joseph the Dreamer

    18問 • 2年前
    Trix Soriano

    RUTH

    RUTH

    Trix Soriano · 22問 · 2年前

    RUTH

    RUTH

    22問 • 2年前
    Trix Soriano

    METHODD

    METHODD

    Trix Soriano · 13問 · 2年前

    METHODD

    METHODD

    13問 • 2年前
    Trix Soriano

    A simple act of kindness

    A simple act of kindness

    Trix Soriano · 16問 · 2年前

    A simple act of kindness

    A simple act of kindness

    16問 • 2年前
    Trix Soriano

    E - Definition

    E - Definition

    Trix Soriano · 100問 · 2年前

    E - Definition

    E - Definition

    100問 • 2年前
    Trix Soriano

    A DEFINITION PT 2

    A DEFINITION PT 2

    Trix Soriano · 68問 · 2年前

    A DEFINITION PT 2

    A DEFINITION PT 2

    68問 • 2年前
    Trix Soriano

    D - Definition

    D - Definition

    Trix Soriano · 50問 · 2年前

    D - Definition

    D - Definition

    50問 • 2年前
    Trix Soriano

    d definition 2

    d definition 2

    Trix Soriano · 45問 · 2年前

    d definition 2

    d definition 2

    45問 • 2年前
    Trix Soriano

    Facts of Light

    Facts of Light

    Trix Soriano · 48問 · 2年前

    Facts of Light

    Facts of Light

    48問 • 2年前
    Trix Soriano

    E - Examples

    E - Examples

    Trix Soriano · 100問 · 2年前

    E - Examples

    E - Examples

    100問 • 2年前
    Trix Soriano

    E - Mixed

    E - Mixed

    Trix Soriano · 50問 · 2年前

    E - Mixed

    E - Mixed

    50問 • 2年前
    Trix Soriano

    Properties of Light

    Properties of Light

    Trix Soriano · 66問 · 2年前

    Properties of Light

    Properties of Light

    66問 • 2年前
    Trix Soriano

    MM

    MM

    Trix Soriano · 22問 · 2年前

    MM

    MM

    22問 • 2年前
    Trix Soriano

    AM

    AM

    Trix Soriano · 12問 · 2年前

    AM

    AM

    12問 • 2年前
    Trix Soriano

    PM

    PM

    Trix Soriano · 11問 · 2年前

    PM

    PM

    11問 • 2年前
    Trix Soriano

    HM

    HM

    Trix Soriano · 22問 · 2年前

    HM

    HM

    22問 • 2年前
    Trix Soriano

    PARTS

    PARTS

    Trix Soriano · 30問 · 2年前

    PARTS

    PARTS

    30問 • 2年前
    Trix Soriano

    VEGETABLES

    VEGETABLES

    Trix Soriano · 43問 · 2年前

    VEGETABLES

    VEGETABLES

    43問 • 2年前
    Trix Soriano

    PREPARING

    PREPARING

    Trix Soriano · 9問 · 2年前

    PREPARING

    PREPARING

    9問 • 2年前
    Trix Soriano

    SIZES

    SIZES

    Trix Soriano · 13問 · 2年前

    SIZES

    SIZES

    13問 • 2年前
    Trix Soriano

    Image formation

    Image formation

    Trix Soriano · 38問 · 2年前

    Image formation

    Image formation

    38問 • 2年前
    Trix Soriano

    Ray Diagramming

    Ray Diagramming

    Trix Soriano · 16問 · 2年前

    Ray Diagramming

    Ray Diagramming

    16問 • 2年前
    Trix Soriano

    Mirror Equation

    Mirror Equation

    Trix Soriano · 9問 · 2年前

    Mirror Equation

    Mirror Equation

    9問 • 2年前
    Trix Soriano

    BOLDNESS

    BOLDNESS

    Trix Soriano · 27問 · 2年前

    BOLDNESS

    BOLDNESS

    27問 • 2年前
    Trix Soriano

    QUOTES

    QUOTES

    Trix Soriano · 6問 · 2年前

    QUOTES

    QUOTES

    6問 • 2年前
    Trix Soriano

    David and Goliath

    David and Goliath

    Trix Soriano · 23問 · 2年前

    David and Goliath

    David and Goliath

    23問 • 2年前
    Trix Soriano

    DANIEL FIERY FURNACE

    DANIEL FIERY FURNACE

    Trix Soriano · 9問 · 2年前

    DANIEL FIERY FURNACE

    DANIEL FIERY FURNACE

    9問 • 2年前
    Trix Soriano

    DANIEL LION'S DEN

    DANIEL LION'S DEN

    Trix Soriano · 21問 · 2年前

    DANIEL LION'S DEN

    DANIEL LION'S DEN

    21問 • 2年前
    Trix Soriano

    SEQUENCE OF EVENTS

    SEQUENCE OF EVENTS

    Trix Soriano · 20問 · 2年前

    SEQUENCE OF EVENTS

    SEQUENCE OF EVENTS

    20問 • 2年前
    Trix Soriano

    TROJAN WAR

    TROJAN WAR

    Trix Soriano · 59問 · 2年前

    TROJAN WAR

    TROJAN WAR

    59問 • 2年前
    Trix Soriano

    TROJANS

    TROJANS

    Trix Soriano · 24問 · 2年前

    TROJANS

    TROJANS

    24問 • 2年前
    Trix Soriano

    MD

    MD

    Trix Soriano · 35問 · 2年前

    MD

    MD

    35問 • 2年前
    Trix Soriano

    AD

    AD

    Trix Soriano · 31問 · 2年前

    AD

    AD

    31問 • 2年前
    Trix Soriano

    PD

    PD

    Trix Soriano · 19問 · 2年前

    PD

    PD

    19問 • 2年前
    Trix Soriano

    HD

    HD

    Trix Soriano · 12問 · 2年前

    HD

    HD

    12問 • 2年前
    Trix Soriano

    LESSON 12

    LESSON 12

    Trix Soriano · 52問 · 2年前

    LESSON 12

    LESSON 12

    52問 • 2年前
    Trix Soriano

    LESSON 13

    LESSON 13

    Trix Soriano · 26問 · 2年前

    LESSON 13

    LESSON 13

    26問 • 2年前
    Trix Soriano

    LENS

    LENS

    Trix Soriano · 15問 · 2年前

    LENS

    LENS

    15問 • 2年前
    Trix Soriano

    CAUTIOUSNESS

    CAUTIOUSNESS

    Trix Soriano · 26問 · 2年前

    CAUTIOUSNESS

    CAUTIOUSNESS

    26問 • 2年前
    Trix Soriano

    OPTICAL DEVICES

    OPTICAL DEVICES

    Trix Soriano · 38問 · 2年前

    OPTICAL DEVICES

    OPTICAL DEVICES

    38問 • 2年前
    Trix Soriano

    COMPASSION

    COMPASSION

    Trix Soriano · 24問 · 2年前

    COMPASSION

    COMPASSION

    24問 • 2年前
    Trix Soriano

    QUOTATIONS

    QUOTATIONS

    Trix Soriano · 5問 · 2年前

    QUOTATIONS

    QUOTATIONS

    5問 • 2年前
    Trix Soriano

    COMPUTER NETWORK

    COMPUTER NETWORK

    Trix Soriano · 42問 · 2年前

    COMPUTER NETWORK

    COMPUTER NETWORK

    42問 • 2年前
    Trix Soriano

    TOPOLOGY

    TOPOLOGY

    Trix Soriano · 30問 · 2年前

    TOPOLOGY

    TOPOLOGY

    30問 • 2年前
    Trix Soriano

    FEMALE REPRODUCTIVE SYSTEM

    FEMALE REPRODUCTIVE SYSTEM

    Trix Soriano · 23問 · 2年前

    FEMALE REPRODUCTIVE SYSTEM

    FEMALE REPRODUCTIVE SYSTEM

    23問 • 2年前
    Trix Soriano

    問題一覧

  • 1

    1. This shows you what line number your cursor is on. It is useful since the compiler gives error messages with a line number.

    line number

  • 2

    2. BEFORE your program “CODE” can be sent to the BOARD, it needs to be converted into INSTRUCTIONS that the board understands. This process is called...

    compiling

  • 3

    3. A function often used to SET PINMODE to input or output

    setup ()

  • 4

    4. This code happens over and over again.

    loop()

  • 5

    5. A method of EMULATING AN ANALOG SIGNAL through a digital.

    PWM (PULSE WIDTH MODULATION)

  • 6

    6. No electrical signal present (0V). Also OFF or False in boolean logic.

    LOW

  • 7

    7. This allows you to get READINGS from ANALOG SENSORS or interfaces that have more than two states.

    analogRead

  • 8

    8. Assign a HIGH or LOW value to a pin already declared as an _______.

    digitalWrite

  • 9

    9. Correct syntax of HELLO WORLD?

    void setup() { Serial.begin(9600) } void loop() { Serial.println("Hello World!"); }

  • 10

    10. What does LED stand for?

    Light Emitting Diode

  • 11

    11. What is defined as the DURATION OF "ON TIME"?

    Pulse Width

  • 12

    12. What is NOT a PWM Pin on most Arduino boards?

    8

  • 13

    13. When the condition in a "FOR" loop becomes ______, the LOOP ENDS.

    false

  • 14

    14. The ______ is one integrated ELECTRONIC TRANSDUCERS, DC voltage supply, widely used in computers, printers, copiers, alarm, electronic toys, automotive electronic equipment, telephones timers and other electronic products for sound devices.

    Piezoelectric Buzzer

  • 15

    15. Which statement will mute the buzzer?

    digitalWrite(buzzer, LOW); analogWrite(buzzer, 0);

  • 16

    16. Where should the MIDDLE PIN of the POTENTIOMETER be connected to?

    analog pin

  • 17

    17. What kind of value does the Photoresistor collect?

    analog

  • 18

    18. What does an LM35 measure? —

    temperature

  • 19

    19. Where should the LEGS OF AN LM35 be connected to? (from left to right)?

    5V, ANALOG, GROUND

  • 20

    20. It is designed for mobile robot line TRACKING APPLICATIONS, in three (3) or five (5) IR reflective sensors that will reliably DETECT DARK LINES printed over light color surfaces.

    line sensor

  • 21

    21. The function of a _____________ is to take a LOW CURRENT CONTROL SIGNAL and then turn it into a HIGHER CURRENT SIGNAL that can drive a motor.

    motor driver

  • 22

    22. When the BUTTON IS NOT BEING PRESSED it becomes what is called a _______ pin – it’s NOT CONNECTED TO ANYTHING.

    floating

  • 23

    23. What does the command 'buttonState = digitalRead(buttonPin);' do?

    check the condition of the tact switch

  • 24

    24. Pauses the program for the amount of time (in milliseconds) specified as parameter.

    delay(ms)

  • 25

    25. It is a SIMPLE KNOB that provides a VARIABLE RESISTANCE, which we can read into the Arduino board as an analog value

    potentiometer

  • 26

    26. A device having a DESIGNED RESISTANCE to the passage of an electric current.

    resistor

  • 27

    27. Arduino grammar is built on the basis of _____________ grammar.

    C

  • 28

    28. Which sensor is the odd one out?

    Ultrasonic Sensor

  • 29

    29. The name “________” came from an old Japanese sport, which is two opponents fighting in a ring, each of them trying to push the other opponent out of it.

    Sumo

  • 30

    30. What analog sensor serves as the PRIMARY COMPONENT IN A SUMO ROBOT?

    Ultrasonic Sensor

  • 31

    33. Reads the value from a specified digital pin, either HIGH or LOW.

    digitalRead

  • 32

    34. The ability of a material to hold an electrical charge.

    capacitance

  • 33

    35. A named identifier that cannot change its value in a program.

    constant

  • 34

    36. The process of going through a circuit or code, and FINDING ERRORS, until the expected behavior is achieved.

    debugging

  • 35

    37. A datatype used to REPRESENT A FRACTION which entails the use of decimal points for floating point numbers.

    float

  • 36

    38. The BRAINS OF THE ARDUINO, this is a small computer that you will program to listen for, process, and display information.

    microcontroller

  • 37

    39. A potentiometer returns an analog value between ____ and _____.

    0, 1023

  • 38

    40. A way to SIMULATE a varying static voltage.

    PWM (PULSE WIDTH MODULATION)

  • 39

    41. A component that MEASURES one form of energy and converts it to VOLTAGE OR CURRENT.

    sensor

  • 40

    42. A type of serial protocol between two devices.

    serial communication

  • 41

    43. A component that can OPEN OR CLOSE an electrical circuit.

    switch

  • 42

    44. A data type that STORES VALUES which are likely to change as your program runs.

    variable

  • 43

    45. Generates a SQUARE WAVE of the specified frequency (and 50% duty cycle) on a pin. —

    tone()

  • 44

    46. A _______ loop will loop continuously, and INFINITELY, until while the expression inside the parenthesis, () becomes false.

    while

  • 45

    47. The _______ statement checks for a CONDITIONS and EXECUTES THE PROCEEDING statement or set of statements if the CONDITION IS 'TRUE'.

    if else

  • 46

    48. _________ is a useful C component that allows the programmer to GIVE A NAME TO A CONSTANT VALUE before the program is compiled.

    #define

  • 47

    49. A syntax used to end a statement.

    ; (semicolon)

  • 48

    50. A function used to INITIALIZE variables, pin modes, start using libraries, etc.

    void()

  • 49

    51. Write a HIGH or a LOW value to a digital pin.

    digitalWrite

  • 50

    52. ______ sensor output voltage LINEAR RELATIONSHIP between the Celsius temperature scale.

    LM35

  • 51

    53. It is an electronic device for DISPLAYING NUMERALS or other information using GLOW DISCHARGE.

    Nixie Tube

  • 52

    54. What sensor is designed for mobile robot LINE TRACKING APPLICATIONS?

    line sensor

  • 53

    55. The ______ statement is used to REPEAT A BLOCK OF STATEMENTS enclosed in curly braces.

    for

  • 54

    56. _________ signals OFF or no electrical signal is present.

    LOW

  • 55

    57. Is a sport in which two robots attempt to push each other out of a circle.

    Robot-sumo

  • 56

    58. A form of electronic communication sent as signals of varying frequency INSTEAD of ON or OFF like a DIGITAL DATA TRANSMISSION.

    analog

  • 57

    59. What component can be driven by an OSCILLATING ELECTRONIC CIRCUIT or other audio signal source.

    piezzo buzzer

  • 58

    60. ________ signals ON or electrical signal is present.

    HIGH

  • 59

    The arduino grammar is built on the basis of

    C grammar

  • 60

    Ultrasonic Sensor Additional Info TrigPin: used to trigger the — EchoPin: produces a — when the reflected signal is received

    ultrasonic sound pulses pulse