wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

IOT102_PART3

Total questions: 157

Worksheet time: 1hrs 21mins

Name
Class
Date
1.

How many digital pins are there in the UNO board?

a)

A.14

b)

B.12

c)

C.16

d)

d.20

2.

_________ board allows sewn into clothing.

b)

B.RedBoard

c)

C.LilyPad

d)

D.Mega

3.

There is efficiency gains from ________ all sorts of equipment.

a)

A.Implementation

b)

B.Analogous

c)

C.Evolution

d)

D.Digitization

4.

A provider which produces 99 percent uptime ________

a)

A.Security issues

b)

B.Network Issues

c)

C.Programming issue

d)

D.Memory issue

5.

With physical security, the stakes are incredibly ________

a)

A.Very high

b)

B.Low

c)

C.Very low

d)

D.High

6.

Which digit does the colour yellow denote on a resistor colour band?

a)

A.2

b)

B.4

c)

C.7

d)

D.3

7.

A 47 Kohm resistor would have which colours on its first three bands?

a)

A.red, white, blue

b)

B.yellow, violet, white

c)

C.orange, yellow, violet

d)

D.yellow, violet, orange

8.

Which digit does the colour orange denote on a resistor colour band?

a)

A.9

b)

B.1

c)

C.6

d)

D.3

9.

A resistor's first three colour bands are red, yellow and black. What is its value?

a)

A.240 ohms

b)

B.24 ohms

c)

C.32 ohms

d)

D.420000 ohms

10.

Which digit is represented by a blue band on a resistor?

a)

A.4

b)

B.8

c)

C.6

d)

D.9

11.

Which digit is represented by a black band on a resistor?

a)

A.100

b)

B.1

c)

C.1000

d)

D.0

12.

A resistor's first three colour bands are brown, green and red. What is its value?

a)

A.1500 ohms

b)

B.250 ohms

c)

C.2000 ohms

d)

D.510 ohms

13.

Which colour represents the digit 6 in the resistor colour code?

14.

Which of these colours is NOT used in the resistor value colour code?

b)

B.turquoise

c)

C.white

d)

D.violet

15.

A micro-controller is...

a)

A.small CPU made of transistors and conductors of heat and sound sensor

b)

B.portable circuits capable of making other circuits

c)

C.small computer on a single integrated circuit containing a processor core, memory, and programmable input/output peripherals

d)

D.small chip made of silver

16.

What does GPIO stand for?

a)

A.General Purpose Inner Outer Propeller

b)

B.General Purpose Interested Old People

c)

C.General Purpose Input Output Pins

d)

D.General Purpose Input Output Processor

17.

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...

a)

A.Stop

b)

B.Create Sketch

c)

C.Compile

d)

D.Serial Monitor

18.

This shows you what the IDE is currently doing and is also where error messages display if you make a mistake in typing your program. (often called a syntax error)

a)

A.Sketch Editor

b)

B.Text Console

c)

C.Line Number

d)

D.Serial Monitor

19.

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

a)

A.Sketch Editor

b)

B.Text Console

c)

C.Line Number

d)

D.Serial Monitor

20.

A function is a series of programming statements that can be called by name. Which command is called once when the program starts:

a)

A.loop()

b)

B.(output)

c)

C.setup()

d)

D.(input)

21.

A function is a series of programming statements that can be called by name. Which command is called repetitively over and over again as long as the Arduino has power.

a)

A.loop()

b)

B.(output)

c)

C.setup()

d)

D.(input)

22.

A function is a series of programming statements that can be called by name. Which command delays the LED by a number of milliseconds is.

a)

A.loop()

b)

B.delay()

c)

C.setup()

d)

D.stop()

23.

What is this line of code: // the loop function runs over and over again forever

a)

A.A statement

b)

B.A single line comment

c)

C.A function definition

d)

D.A bowl of cereal

24.

What is this line of code: void loop() {

a)

A.A statement

b)

B.A single line comment

c)

C.Part of a function definition

d)

D.A banana

25.

Which pin has a built-in LED?

a)
b)
c)
d)
26.

What are two two main types of Arduino pins?

a)

A.Digital and analog.

b)

B.Digital and modulation.

c)

C.Pulse and analog.

27.

If you make a voltage divider circuit with R1 = 10K and R2 = 10K, and your Vin is 12V, what will be your Vout?

a)

A.12V

b)

B.10V

c)

C.6V

d)

D.5V

28.

How many bits are there in a byte?

a)

A.256

b)

B.8

c)

C.16

d)

D.10

29.

On a breadboard, where do you put a DIP package?

a)

A.In the middle of the board

b)

B.On the bottom side of the board

c)

C.In the power rails

d)

D.With the potato chips

30.

What is the nominal voltage of 6 AAA batteries connected in parallel?

a)

A.6V

b)

B.9V

c)

C.12V

d)

D.1.5V

31.

This is an unsigned data type that occupies 1 byte of memory. Same as the byte datatype. It encodes numbers from 0 to 255.

a)

A.highByte()

b)

B.unsigned char

c)

C.unsigned long

d)

D.volatile

32.

This is used to include outside libraries in your sketch. This gives the programmer access to a large group of standard C libraries (groups of pre-made functions), and also libraries written especially for Arduino.

a)

A.#include

b)

B.break

c)

C.void

d)

D.#define

33.

This clears (writes a 0 to) a bit of a numeric variable.

a)

A.bitClear

b)

B.sizeof()

c)

C.pinMode

d)

D.#include

34.

The void keyword is used only in function declarations. It indicates that the function is expected to return no information to the function from which it was called.

a)

A.HIGH

b)

B.void

d)

D.LOW

35.

Sensors play a big part in the Internet of Things, collecting data from the physical world. There is a long and growing list of sensor types, but some of the more common ones are found in smart phones. Which sensor in your phone collects information on your physical activity for health apps?

a)

A.Gyroscope

b)

B.Magnetometer

c)

C.Proximity sensor

d)

D.Accelerometer

36.

In an industrial fan maintenance system, what physical change does Ian Howard say a sensor might detect, measure and transmit data on?

a)

A.Vibration

b)

B.Blade speed

c)

C.Power

d)

D.Wind direction

37.

When the gate system at the dairy closes one gate and opens another to direct a cow into a particular area, what is (or what are) the actuators in play?

a)

A.RF antennae detecting ID of cow

b)

B.Light sensors detecting cow in gate

c)

C.Pneumatic arms on gate mechanism

d)

D.Movement sensor in cow's pendant

38.

All of the parts of a complete IoT process need programming. But where in the following IoT process is programming needed for the system to be Internet of Things?

a)

A.Soil sensor to microcontroller to the Cloud to microcontroller to fertilising mechanism

b)

B.Soil sensor and Cloud and fertilising mechanism

c)

C.Microcontroller and Cloud

d)

D.Soil sensor and Microcontroller

e)

E.Soil sensor and fertilising mechanism

39.

Which of these sentences could be a line of programming code?

a)

A.If temperature is more than 30 degrees C, run fan, else, run heater

b)

B.When it gets too hot, turn the fan on otherwise keep heating the room

c)

C.Run heater until temperature reaches 30 degrees C then cool it down

40.

In the reticulation (water irrigation) system, what type of device is the outdoor camera?

a)

A.Sensor

b)

B.Actuator

c)

C.Control

d)

D.none of the above

41.

What sort of actuator would you use to control the movement of a conveyor belt?

a)

A.A linear actuator

b)

B.An AC motor

c)

C.A thermocouple

d)

D.A water pump

e)

E.A rubber belt

42.

Which of the following IS NOT criteria to help select a wired communication protocol?

a)

A.Speed

b)

B.Number of wires per connection

c)

C.Ability to transmit and receive information at the same time

d)

D.Number of devices that need connecting

E.Distance to the nearest power point

e)

F.Maximum distance between master and slaves

43.

If we intend to include a servo motor as an actuator, what feature should we include when selecting a microcontroller?

a)

A.Analogue to Digital converter

b)

B.Digital to Analogue converter

c)

C.GPIO pins

d)

D.Pulse Width Modulation pin

e)

E.I2C pins

44.

In an IoT smart home system, sensors are connected to the home power outlet and are required to process some part of the collected data. What would be the best option to connect sensors to each other, as well as a central location for Internet connection, where high data rate is required?

a)

A.Bluetooth

b)

B.6LowPAN

c)

C.WiFi

d)

D.LoRa

45.

From the list below, which is the LPWAN technology?

a)

A.LoRa

b)

B.WiFi

c)

C.LTE

d)

D.6LowPAN

46.

Fill in the blank: System _________________ can be a major problem, especially in badly designed closed-loop systems, as they may try to over-correct any errors which could cause the system to lose control and oscillate.

a)

A.stability

b)

B.scalability

d)

D.useability

47.

One advantage of a closed loop feedback system is:

a)

A.Simplicity of design

b)

B.Ability to react to disturbances in the system

c)

C.It is less stable than an open loop system

d)

D.Depends on calibration for accuracy

e)

E.All of the above

48.

Fill in the blank. If we want to measure the temperature of a solution in a chemical process to within 0.1 degree Celsius, over a range of 100 degrees, our development board would need a ____________ converter to meet that requirement for accuracy.

a)

A.8 bit

b)

B.10 bit

c)

C.16 bit

d)

D.32 bit

49.

________ provide the means to create capability that reflects true awareness of the physical world and people.

a)

A.Sensors

b)

B.Heterogeneity

d)

D.Connectivity

50.

________ in IoT as one of the key characteristics, devices have different hardware platforms and networks.

a)

A.Sensors

b)

B.Heterogeneity

d)

D.Connectivity

51.

IoT devices are naturally vulnerable to ________ threats.

a)

A.Sensors

b)

B.Heterogeneity

d)

D.Connectivity

52.

What is the role of communication protocol in IoT?

a)

A.Smart cities

b)

B.Cyber physical system

c)

C.Mac layer issue

d)

D.Managing energy

53.

Which of the following is the future application of IoT?

a)

A.Role of green IoT system

b)

B.QoS in communication

c)

C.Secure communication

d)

D.Multimedia communication

54.

The object of IoT will be empowered by ___________

c)

C.Devices

d)

D.Connectivity

55.

__________ layer is the communication layer that connects the IoT devices with WAN.

a)

A.Internet layer

b)

B.Application layer

c)

C.Sensor layer

d)

D.Network layer

56.

________ either built into smoke alarm and thermostat or in the form of small plug - in.

a)

A.Microphones

b)

B.Loudspeaker

c)

C.Microphone and loudspeaker

d)

D.Mic

57.

________ Will reduces the cost of the devices.

a)

A.Intuitive

b)

B.Voice telephony

c)

C.Voice recognition

d)

D.Voice Integration

58.

How many analog pins on an Arduino Uno board?

a)

A.5

b)

B.6

c)

C.7

d)

D.8

59.

Which of the following function is used to set any pin in the state of HIGH/LOW ?

a)

A.digitalRead

b)

B.digitalWrite

c)

C.analogWrite

d)

D.pinMode

60.

What does PWM stand for?

a)

A.Pulse Width Modulation

b)

B.Pulse Wide Module

c)

C.Preventive Width Modulation

d)

D.None of the other

61.

Which function in the Arduino IDE is used to set any pin in output or input state?

a)

A.digitalWrite

b)

B.delay

c)

C.pinMode

d)

D.analogRead

62.

How many PWM pins are present in the Arduino UNO?

a)

A.1

b)

B.3

c)

C.6

d)

D.9

63.

What among the following is an example of external interrupt for the Arduino?

a)

A.Button

b)

B.Resistor

c)

C.LED

d)

D.Capacitor

64.

What will be the correct syntax to make a digital pin (say D2) as an output pin?

a)

A.pinMode(2,output)

b)

B.pinMode(2,Output)

c)

C.pinMode(2,OUTPUT)

d)

D.pinmode(2,OUTPUT)

65.

Which of the following digital pins can be used in Arduino Nano/Uno to give interrupt?

a)

A.D2

b)

B.D6

c)

C.D4,D5

d)

D.D2,D3

66.

What is the size of EEPROM of the Arduino UNO?

a)

A.1 KB

b)

B.2 KB

c)

C.4 KB

d)

D.8 KB

67.

Which function in the Arduino is used to start the serial communication using the COM port?

a)

A.Serial.available()

b)

B.Serial.begin()

c)

C.serial.begin()

d)

D.setup()

68.

The action that will be performed using this switch case will be:switch (2): {case 1: digitalWrite(11,HIGH); case 2: analogRead(A3)}

a)

A.D11 will become HIGH

b)

B.Analog value of A3 will be read

c)

C.D11 will become LOW

d)

D.None of the other

69.

While taking the input from the user in Arduino, which of these function is used in Sketch?

a)

A.Serial.print

b)

B.Serial.println

c)

C.Serial.available

d)

D.None of the other

70.

What is the Tinkercad Circuits?

a)

A.Its a just s software to create games

b)

B.Tinkercad is a free online collection of software tools that help people create and simulation circuits.

c)

C.Its a software for playing and create games.

d)

D.None of the other

71.

How do you zoom in on Tinkercad?

a)

A.Spacebar

b)

B.Use the arrows on the keyboard

c)

C.Use the scroll wheel

d)

D.Right Click

72.

A photoresistor is an electronic component whose electrical resistance _______ when it is exposed to light.

a)

A.changes

b)

B.increases

c)

C.doesn't change

73.

What does this syntax mean? myservo.attach(9)

a)

A.Connect the control wire 9 to GND pin

b)

B.Connect the control wire for 9 seconds

c)

C.Connect the control wire to 9 volts

d)

D.Connect the control wire to digital pin 9

74.

In remote control terms, IR stands for what?

a)

A.indirect radio

b)

B.infrared

c)

C.inside remote

d)

D.instant reception

75.

Infrared remote controls use what to carry signals between the remote control and the device it controls?

a)

A.radio waves

b)

B.sound

c)

C.light

76.

Infrared signals can be used for ______.

a)

A.(a) long-range communication

b)

B.(b) short-range communication

c)

C.Both (a) and (b)

d)

D.None of the other

77.

Which sensor is LM35?

a)

A.Pressure sensor

b)

B.Humidity sensor

c)

C.Temperature sensor

d)

D.Touch sensor

78.

LM35 provides _______ Volt for each degree count?

a)

A.1

b)

B.0.01

c)

C.0.001

d)

D.10

79.

What is the main purpose of the SRF05 sensor?

a)

A.Water level sensor

b)

B.Sound intensity sensor

c)

C.Ranging sensor

d)

D.Temperature sensor

80.

What is the purpose of the pin named ECHO of HC-SR04 sensor?

a)

A.Allows the ultrasonic sound wave to be sent from the sensor.

b)

B.Provides the information that the ultrasonic sound wave is returned.

c)

C.Allows the sensor to be fed with energy.

d)

D.Provides the chassis connection of the sensor.

81.

What does the AREF pin on the Arduino UNO?

a)

A.Used to trigger a interrupt.

b)

B.Reference voltage for analog inputs.

c)

C.To reset the microcontroller.

d)

D.Provides 8-bit PWM signal.

82.

What pins can the Arduino UNO board communicate with the computer?

a)

A.PWM pins

b)

B.ADC pins

c)

C.I2C pins

d)

D.UART pins

83.

What case is called serialEvent() interrupt?

a)

A.Serial port shuts down.

b)

B.When data is sent from the serial port.

c)

C.When data comes from the serial port.

d)

D.When the voltage is applied to the Arduino.

84.

Each computer has its own Internet search engine.

a)

A.True

b)

B.False

85.

What does CRM stand for?

a)

A.Customer Research Management

b)

B.Customer Relationship Management

c)

C.Customized Research Management

d)

D.Customer Research Metrics

86.

How has e-commerce revolutionized business?

a)

A.It has allowed businesses to utilize new avenues of advertising, selling, and distribution.

b)

B.It attempts to level the playing field.

c)

C.It transcends geographic boundaries.

d)

D.All of the above

87.

A _____ allows customers to continue browsing after selecting each item they wish to purchase

a)
b)

B.Forms-based interface

c)

C.SSL connection

d)

D.Virtual memory

88.

Which of the following is NOT a standard used in E-Commerce?

a)

A.EDI

b)

B.XML

c)

C.SETI

d)

D.X12

89.

Which of the following is NOT the characteristics of consumer when studying about EC Consumer Behavior Model?

a)

A.Age

b)

B.Gender

c)

C.E-mail

90.

Mechanism to protect private networks from outside attack is

a)

A.Firewall

b)

B.Antivirus

c)

C.Digital signature

d)

D.Formatting

91.

While making payment using electronic check, credit and debit cards, the server authenticates the customers and verifies with the bank that funds are adequate before purchase

a)

A.True

b)

B.False

92.

A computer communication technology that provides a way to interconnect multiple computer across short distance is

a)

A.LAN

b)

B.WAN

d)

D.Wireless network

93.

DNS is

a)

A.The distributed hierarchical naming system

b)

B.The vertical naming system

c)

C.The horizontal naming system

d)

D.The client server system

94.

Which of the following is a technology constraint from the e-commerce macro-environment?

a)

A.Propensity for consumers to purchase online.

b)

B.Opt-in to e-mail required to avoid SPAM

c)

C.Likelihood of fraudulent transactions

d)

D.Taxation at source of purchase

95.

In E-Commerce, HTTPS is a communication protocol that uses

a)

A.Public key encryption

b)

B.Secret key encryption

c)

C.Private key encryption

d)

D.Data key encryption

96.

The concept of electronic cash is to execute payment by

a)
b)

B.ATM Card

c)

C.Using computers over network

d)

D.Cheque

97.

A chemical manufacturer has transactions that are predominantly:

a)

A.business to consumer.

b)

B.consumer to consumer.

c)

C.consumer to business

d)

D.business to business

98.

A B2B reverse auction is:

a)

A.the same as a seller auction.

b)

B.intended to reduce the price by increasing competition from suppliers.

c)

C.always run through a B2B marketplace.

d)

D.both the second and third answers above.

99.

A computer system that permits multiple users to run programs at same time

a)

A.Real time system

b)

B.Multi programming system

c)

C.Time sharing system

d)

D.Multi tasking system

100.

The mercantile process model consists of the following phase(s):

a)

A.The pre-purchase phase

b)

B.Purchase consummation phase

c)

C.Post-purchase Interaction phase

d)

D.All of the above

101.

The most serious disadvantage of e-auctions is:

a)

A.the risk of fraud.

b)

B.Logistics.

c)

C.unreliable auction software.

d)

D.payment delays.

102.

Many companies use intermediaries or trading assistants instead of implementing e-auctions themselves for each of the following reasons EXCEPT:

a)

A.The company name is not widely recognized.

b)

B.To bring many more buyers to the auction.

c)

C.To avoid tax and legal fees.

d)

D.Costs of auction intermediaries or assistants are less than the costs of physical auctions.

103.

All of the following are potential benefits from auctions to sellers EXCEPT:

a)

A.auctions can broaden the customer base and reduce cycle time.

b)

B.sellers receive valuable price sensitivity information

c)

C.sellers are always anonymous.

d)

D.sellers can liquidate large quantities of obsolete items very quickly.

104.

Select the correct answer from the choices below which is corresponding with the following statement in STRATEGIC PLANNING TOOLS" : It is a methodology that surveys external opportunities and threats and relates them to internal strengths and weaknesses.

a)

A.SWOT analysis

b)

B.strategy map

c)

C.balanced scorecard

d)

D.BCG matrix

105.

A major shortcoming with authentication services is:

a)

A.two different authenticators may come up with different opinions regarding the authenticity and description of a given item.

b)

B.it is impossible to tell whether many items are reproductions or genuine.

c)

C.dishonest authenticators are the primary sources of fraud on the Internet.

d)

D.most auction sites forbid the use of authentication services.

106.

_____ work best with many buyers and many sellers.

a)

A.Bartering

b)

B.Dynamic exchanges

c)

C.Forward auctions

d)

D.Reverse auctions

107.

The services provided through location-based m-commerce focus on key factors which include all of the following EXCEPT:

a)

A.Geocaching, or determining the topography of an area.

b)

B.Navigation, or plotting a route from one location to another.

c)

C.Tracking, or monitoring the movement of a person or thing.

d)

D.Timing, or determining the precise time at a specific location

108.

Infrastructures that "support" the wireless connection are:

a)

A.network access points, mobile communications server switches, and cellular transmitters and receivers.

b)

B.WAP gateways, GPS locators, and GPS satellites.

c)

C.PDAs, smartphones, and portable computers

d)

D.web servers, mobile devices, and microbrowsers.

109.

A ______ is suitable for mobile users who need to make very short-range device-to-device wireless connections within a small space, such as a single room, and most commonly with Bluetooth.

a)

A.personal area network

b)

B.local area network

c)

C.wireless area network

d)

D.metropilitan area network

110.

You are walking near a coffee shop and suddenly your cell phone beeps with a message: "Come inside and get a free biscotti with any purchase." This is an example of:

a)

A.permission marketing

b)

B.location-based advertising

c)

C.customer relationship management

d)

D.m-commerce

111.

One way to share information with supply chain partners is wireless _________, which is the science of measuring physical phenomena such as temperature, volume, or an on/off condition at a remote point and transmitting the value to a distant recorder or observer

a)

A.RFID

b)

B.mobilization

c)

C.osmosis

d)

D.telemetry

112.

WiMax and 3G wireless mobile technologies offer telemedicine application opportunities that include all of the following EXCEPT:

a)

A.Reduced threat of malpractice suits because there is no hands-on interaction between the remote physician and the patient.

b)

B.Prescriptions can be transferred electronically to the appropriate pharmacy for a no-wait pick-up by the patient.

c)

C.Real-time consultation between a patient in one location and a medical specialist in another.

d)

D.Wearable heart monitors linked to a cell phone can automatically contact doctors or family members at the first sign of health problems.

113.

All of the following about RFID are true EXCEPT:

a)

A.An RFID tag can hold 20 times the amount of information a bar code can hold, and the tag can be read through cardboard, wood, and plastic at a range of up to 100 feet

b)

B.An RFID tag includes an antenna and a chip with information about the item

c)

C.An RFID reader contains a radio transmitter and receiver

d)

D.An RFID tag remains inactive until radio frequency energy from the tag's radio transmitter hits its antenna, giving the chip enough power to emit a 96-bit string of information

114.

Digital Signature is

a)

A.Scanned Signature on Computer

b)

B.Code number of the sender

c)

C.Public Key Encryption

d)

D.Software to recognize signature

115.

The method(s) of payment for online consumers are

a)

A.Electronic cash

c)

C.Electronic checks

d)

D.All of the above

116.

Which of the following statements are INCORRECT about company-centric marketplaces?

a)

A.They are marketplaces which focus on a single company's purchasing needs or selling needs.

b)

B.They are generally public entities owned by that company.

c)

C.They support for buying needs (many to one, or buy-side).

d)

D.They support for selling needs (one to many, or sell-side)

117.

As in e-commerce, m-commerce B2C applications are concentrated in each of the following areas EXCEPT:

a)

A.retail shopping for products and services

b)

B.telecommunications

c)

C.targeted advertising

d)

D.providing content for a fee through mobile portals

118.

All of the following about wireless wide area networks (WWAN) are true EXCEPT:

a)

A.The single WWAN network standard insures compatibility of handsets within and between countries.

b)

B.Most WWANs are cellular phone networks.

c)

C.At the center of each cell is a base station transceiver or cell tower that is used to send and receive signals to and from mobile devices operating within the cell.

d)

D.When a device is turned on, a SIM card inside the device identifies itself to the WWAN.

119.

Which of the following is an example of edutainment?

a)

A.Two or more students sharing music over the Internet

b)

B.An online science fiction game whose object is to blast as many aliens as possible in a 60 second round

c)

C.A community college providing an online college course on digital media

d)

D.An online game that uses colorful characters to teach young children about numbers

120.

Which of the following statements about blogs is not true?

a)

A.A blog is a personal Web site, open to the public, in which the owner expresses his or her feelings or opinions.

b)

B.Blogs became very popular after the September 11, 2001 terrorist attacks when people were looking for as many sources of information as possible and for personal connections to the tragedy.

c)

C.Blogs are limited to one-way communication.

d)

D.The most common types of blogs are professional blogs.

121.

P2P systems have all of the following key characteristics EXCEPT:

a)

A.They provide for real-time access to other users through techniques such as instant messaging and multichannel collaboration applications.

b)

B.The users' computers can act as both clients and servers.

c)

C.The overall system is well integrated, but lacks tools for easy creation of content or for adding functionalities.

d)

D.They support cross-networking protocols such as SOAP or XML-RPC, which enables a program on one computer to execute a program on a server computer.

122.

More and more people are willing to pay for digital music, as shown by the success of ________.

a)

A.Napster

b)

B.Kazaa

c)

C.Apple's iTunes

d)

D.P2P

123.

All of the following are examples of e-government EXCEPT:

a)

A.a company sells army and navy surplus supplies at auction over the Internet.

b)

B.a contractor submits an application for a building permit using a city hall Web site.

c)

C.an unemployed worker consults a Web site operated by the state employment department to learn about job openings in his city.

d)

D.a state purchasing officer places an online order for office supplies from an e-catalog sent to her by a national office supply store.

124.

A(n) _____ is a computer system capable of integrating, storing, editing, analyzing, sharing, and displaying spatial information.

a)

A.geographical information system

b)

B.global positioning system

c)

C.l-commerce system

d)

D.on-star system

125.

Which of the following statements about blogs is not true?

a)

A.A blog is a personal Web site, open to the public, in which the owner expresses his or her feelings or opinions

b)

B.Blogs became very popular after the September 11, 2001 terrorist attacks when people were looking for as many sources of information as possible and for personal connections to the tragedy

c)

C.Blogs are limited to one-way communication

d)

D.The most common types of blogs are professional blogs

126.

P2P systems have all of the following key characteristics EXCEPT:

a)

A.They provide for real-time access to other users through techniques such as instant messaging and multichannel collaboration applications

b)

B.The users' computers can act as both clients and servers

c)

C.The overall system is well integrated, but lacks tools for easy creation of content or for adding functionalities

d)

D.They support cross-networking protocols such as SOAP or XML-RPC, which enables a program on one computer to execute a program on a server computer

127.

The tasks of KM include each of the following EXCEPT:

a)

A.creating knowledge repositories where knowledge can be stored and retrieved easily

b)

B.enhancing a knowledge environment in order to conduct more effective knowledge creation, transfer, and use

c)

C.restricting knowledge access to prevent its transfer between individuals

d)

D.managing knowledge as an asset so as to increase the effective use of knowledge assets over time

128.

_______ involves using various computer-based tools and techniques to analyze transaction data and generate new ideas

a)

A.Knowledge creation

b)

B.Knowledge capture

c)

C.Knowledge classification

d)

D.Knowledge management

129.

Most universities use e-learning:

a)

A.exclusively in reaching students who couldn't otherwise attend classes.

b)

B.only when forced by administrators to use it as a way to recruit distant students or reduce costs.

c)

C.as a total replacement for traditional classrooms.

d)

D.as a supplementary channel to traditional classrooms.

130.

One initiative underway that could lead to widespread support for the introduction of RFID is the _____, which identifies the manufacturer, producer, version, and serial number of each item and does not require line-of-sight contact to be read.

a)

A.Electronic Product Code

b)

B.Universal Product Code

c)

C.Smart Product Network

d)

D.Sensor Network

131.

Wal-Mart and Levi Strauss collaborate on demand forecasting in order to optimize the flow of materials along the supply chain. This is an example of:

a)

A.reducing design cycle time

b)

B.APS (Advanced Planning and Scheduling)

c)

C.CPFR (Collaborative Planning, Forecasting and Replenishment)

d)

D.reducing product development time

132.

A major block in the widespread implementation of collaborative commerce is:

a)

A.the theory of collaborative commerce hasn't been proven effective in real-world applications.

b)

B.the technology needed isn't available.

c)

C.collaborative commerce is extremely expensive.

d)

D.the lack of universally accepted standards.

133.

When you have a potential IoT idea you want to develop properly, what must you first define?

a)

A.Its Unique Value Proposition

b)

B.Problem it sets out to solve

c)

C.Route to market

d)

D.How it will work

134.

What is used to uniquely identify devices connected to the Internet?

a)

A.gateway address

b)

B.IP address

c)

C.device name

d)

D.URL

135.

What data security concerns do IoT devices pose?

a)

A.The device being hijacked to harm another device or system

b)

B.Because they are small and low powered, they can't carry much software including security software leaving them open to data theft or disruption

c)

C.The devices being small and embedded into objects makes them easily vandalised or stolen

136.

Which of the following IS NOT a characteristic of semiconductors?

a)

A.They are better conductors than insulators.

b)

B.They can be contaminated to improve their semiconductor properties.

c)

C.They are abundantly found in nature.

d)

D.Their semiconductor properties change as materials age.

e)

E.All of the above.

137.

A circuit involving a diode is powered with a 60 Volt peak-to-peak triangular signal, as shown in the following figure:
Assuming that the forward bias voltage of the diode is 0 V, which of the following graphs is a correct representation of Vout?

a)

A.

b)

B.

c)

C.

d)

D.

138.

A 2V square signal is applied to a circuit that turns a Bipolar Junction Transistor (BJT) into a switch, as shown in the following figure:
Assuming that the BJT's voltage from collector to emitter at saturation (VCEsat) is equal to 0.2V, which of the following graphs is the correct representation of Vout?

a)

A.

b)

B.

c)

C.

d)

D.

139.

Which of the following statements about sensors and actuators are true? (select 3):

a)

A.Transducers change their physical properties in response to changes in the environment.

b)

B.The Wheatstone Bridge converts a change in resistance into a change in voltage.

c)

C.All sensors use instrumentation amplifiers.

d)

D.Analogue to digital converters are needed to convert numbers produced by a computer into signals that can control actuators.

e)

E.Strain gauges could be used to detect deflection in a concrete beam.

140.

Which of the following sensors could be used to detect if an airplane is flying in cruise mode (horizontally), or if it is taking off or landing? (select 2):

a)

A. A tilt sensor

b)

B. A 3-axis accelerometer

c)

C. A 3-axis gyroscope

d)

D. A radar

e)

E. A 3-axis magnetometer

141.

Which of the following IS NOT criteria to help select a wired communication protocol?

a)

A. Speed

b)

B. Number of wires per connection

c)

C. Ability to transmit and receive information at the same time

d)

D. Number of devices that need connecting

F. Maximum distance between master and slaves

e)

E. Distance to the nearest power point

142.

Which of the following statements about communication protocols are true? (select 2):

a)

A. Multi-drop and multi-point are the same thing, but one is American and the other is European nomenclature.

b)

B. In a multilayer network, peers in one layer can listen but cannot talk directly to the peers in other layers.

c)

C. In master-slave networks, the master can listen to only one slave at a time.

d)

D. In master-slave multi-drop networks, all slaves can listen to the master at the same time.

e)

E. In SPI networks, the number of devices that can be included is only limited by the length of the wires and the physical space in the board.

143.

Most IoT systems utilise microcontroller units (MCUs) to collect data and transfer it to the processing units through the Internet. The advantages of using MCUs include: (select 3)

a)

A. They are relatively simple to use, as MCUs do not require an operating system to function and are easy to interface with external components such as sensors.

b)

B. An MCU is usually sufficient to provide processing power and functionality in most IoT systems, thus making it economically viable for IoT applications.

c)

C. Due to their simplicity, MCUs are less vulnerable to security attacks.

d)

D. MCUs normally run an operating system, which reduces development time.

e)

E. MCUs can process and store large amounts of data locally.

144.

If we intend to include a servo motor as an actuator, what feature should we include when selecting a microcontroller?

a)

A. Analogue to Digital converter

b)

B. Digital to Analogue converter

c)

C. GPIO pins

d)

D. Pulse Width Modulation pin

e)

E. I2C pins

145.

Which of the following should be considered when implementing a low power IoT device (or, which attributes will impact power usage on an IoT device)? (select 3)

a)

A. Clock rate of the CPU

b)

B. Sensor resolution

c)

C. Number of attached sensors

d)

D. Supply voltage

e)

E. RAM

146.

In an IoT smart home system, sensors are connected to the home power outlet and are required to process some part of the collected data. What would be the best option to connect sensors to each other, as well as a central location for Internet connection, where high data rate is required?

a)

A. Bluetooth

b)

B. 6LowPAN

c)

C. WiFi

d)

D. LoRa

147.

From the list below, which are the two LPWAN technologies?

a)

A. LoRa

b)

B. WiFi

c)

C. LTE

d)

D. Sigfox

e)

E. 6LowPAN

148.

Fill in the blank: System _________________ can be a major problem, especially in badly designed closed-loop systems, as they may try to over-correct any errors which could cause the system to lose control and oscillate.

a)

A. stability

b)

B. scalability

c)

C. security

d)

D. useability

e)

E. feedback

149.

Which terminology deals with the excitation or stimulus applied to a system from an external source, for the generation of an output?

a)

A. Input signal

b)

B. Output signal

c)

C. Error signal

d)

D. Analogue signal

e)

E. Feedback signal

150.

Which of the following is an example of a closed loop system?

a)

A. Dishwashing machine

b)

B. Air-conditioning unit

c)

C. Bread toaster

d)

D. Electric hand drier

e)

E. Automatic door opener

151.

Which statements best describes the 'Block Diagram' representation of systems? (select 3)

a)

A. Block diagrams are a series of interconnected black boxes that contain the details of complex components of an electronic system.

b)

B. Block diagrams are used to reduce the complexity of electronic systems by packaging details within 'black boxes'.

c)

C. Block diagram components may represent individual components or complete sub systems.

d)

D. Block diagrams increase the complexity of electronic systems by packaging details within 'black boxes'.

e)

E. Block diagrams are seldom used in IoT systems.

152.

One advantage of a closed loop feedback system is:

a)

A. Simplicity of design

b)

B. Ability to react to disturbances in the system

c)

C. It is less stable than an open loop system

d)

D. Depends on calibration for accuracy

e)

E. All of the above

153.

Which six of the following statements are TRUE?

a)

A. Things in the IoT have some intelligence and the ability to exchange information with other things.

b)

B. Electricity is a form of thermal energy.

C. According to Ohm's Law, the higher the voltage, the smaller the resistance.

G. Bipolar Junction Transistors (BJTs) are widely used in modern digital electronics because they consume a negligible amount of current during transitions.

I. A 10-bit DAC, with a reference voltage of 5 volts, cannot produce positive and negative voltages

c)

D. For a given voltage, a small resistance allows the flow of more electric current than a big resistance.

E. Capacitors and inductors store energy.

d)

F. Diodes behave like a small resistor when they are forward biased.

e)

H. Increasing the sampling rate of an ADC would increase the quality of the acquired signal.

J. The Arduino Uno microcontroller board has all the hardware necessary to implement a simple IoT thing.

154.

Which five of the following statements about the end of the line things are TRUE?

a)

A. Open loop control systems are more complex than closed loop control systems.
B. Transducers change one of their properties in response to changes in the environment.

b)

C. All sensors require an analogue front-end (instrumentation amplifier).
D. A microphone is a kind of actuator.

c)

E. A light-emitting diode (LED) is a kind of actuator.
F. The living lab at Curtin University uses vibration sensors to detect and measure movement in elevated walkways.
G. All IoT things have sensors and/or actuators.

d)

H. The Ethernet is widely used to communicate IoT things over short distances.
I. RS-232 offers the fastest throughput in wired communications over short distances.

e)

J. I2C simplifies the interconnection of components in a printed circuit board.

155.

If communication to multiple slave subsystems is required, which communication protocols would be suitable? (select 3)

a)

A. Serial RS232

b)

B. USB

c)

C. SPI

d)

D. I2C

156.

Fill in the blank. If we want to measure the temperature of a solution in a chemical process to within 0.1 degree Celsius, over a range of 100 degrees, our development board would need a ____________ converter to meet that requirement for accuracy.

a)

A. 8 bit

b)

B. 10 bit

c)

C. 16 bit

d)

D. 32 bit

157.

PID is a form of control with 3 feedback methods: Proportional, Integral, and Derivative. What is the purpose of each term?

a)

A. P corrects accumulation of errors, D instances of errors, I counteracts overshoot caused by P and D

b)

B. I corrects accumulation of errors, D instances of errors, P counteracts overshoot caused by D and I

c)

C. D corrects accumulation of errors, P instances of errors, I counteracts overshoot caused by D and P

d)

D. D corrects instances of errors, P corrects accumulation of errors, I counteracts overshoot caused by D and P

e)

E. P corrects instances of errors, I corrects accumulation of errors, D counteracts overshoot caused by P and I correct