Pulse Code Modulated Signal
Frequency Modulated Signal
Pulse Width Modulated Signal
Pulse Amplitude Modulated Signal
4-bit
8-bit
16-bit
32-bit
While
If.else
#define
Case
avrgcc
g++
cpython
avrdude
What will be the output of the following code
#include <stdio.h> void solve(){ int b=4; int res = b++ + ++b + ++b; printf("%d", res); } int main(){ solve(); return 0; }
12
15
17
20
TCP
HTTP
IP
FTP
Software
Devices
Cloud
Management system
IoT System
Embedded System
Grid System
Cloud System
NANO
STRIDE
OCTAVE
PASTA
Signal
Machine to machine
Interconnected
Network
32
64
8
16
What is the output of the following program?
for(;;)
{
Statements
}
Error
Statements will run forever
This an infinite loop
Both (B) and (C)
What is the objective of the code given below if it is executed on the Arduino Uno?
#include<EEPROM.h> int pin=13; void setup() { pinMode(pin,OUTPUT); Serial.begin(9600); { void loop() for(int i-0; i<EEPROM.length(); it+) { EEPROM.write(i, 1) digitalWrite(pin,HIGH; exit(0); }
Clear EEPROM
Fill EEPROM with 1's
Export EEPROM data
Fill EEPROM with 0's
Subject
Body
Address
Salutation
for(;;) { Statements }
Statemernts will run forever
#include<EEPROM.h> int pin=13; void setup(){ pinMode(pin,OUTPUT); Serial.begin(9600); void loop(){ for(int i-0; i<EEPROM.length(); i++) { EEPROM.write(i, 1); digitalWrite(pin, HIGH); exit(0); }
Predict the output of the following code if the object is moving towards the sensor.
int op = 6; int isBarrier = HIGH; void setup() { pinMode(op, INPUT) Serial.begin(9600); } void loop(){ isBarrier = digitalRead(op); if (isBarrier == LOW) { Serial.println("1+"); } else{ Serial.print("clear+"); delay(100); }
clear+clear+1+1
1+1+clear+1
1+1+clear+clear
clear+clear+clear+clear
Use internet for collecting and sharing data
Need microcontrollers
Use wireless technology
Are completely safe
Partition larger task into smaller tasks
Code reusability
Manage complexity
All of these