If the voltage on pin A3 is 3.954V, what value will analogRead(A3) return from the ADC?
Select all the the devices that can be used by the Arduino as inputs
Electromagnets
Light Sensor
Lights
Temperature sensor
Touch Sensor
Select all the the devices that can be used by the Arduino as inputs
Temperature sensor
Motors
Pressure Sensor
Pressure Sensor
Motors
What is the maximum DC Current per I/O Pin of the Adruino Uno?
What will the value of the result variable be after the code segment below has been run.
int number1 = 93;
int answer = 128;
if( number1 > 49 )
{
answer -= number1 ;
}
else
{
answer += number1 ;
}
What will the value of the solution variable be after the code segment below has been run?
bool solution ;
int number2 = 10, number7 = 25, number9 = 16;
solution = number2 >= number7 && number2 > number9 ;
What will the value of the result variable be after the code segment below has been run.
int number2 = 39;
int result = 33;
if( number2 <= 83 )
{
result *= number2 ;
}
Write a program that let's you input a string. The program then should push the characters of the string onto a stack, one by one, and then pop the characters from the stack and display them. This results is displaying the string in reverse order.
Devise a c programming interface for a stack, i.e a (stack.h) header file. Your stack should not arbitrarily add constraint(i.e: max depth of stack).
Use linked list,
Accept information first name
middle name last name area code telephone number gender and age. Display information of each member.
give info for member #1
Enter first name: Ta
Enter middle name: Ma
Enter last name: Ta
Enter area code: 047
Enter telephone number: 1-22
Enter gender: male
Enter age: 21
Give information of member #2
Enter first name: Ja
Enter middle name: La
Enter last name: Ga
Enter area code: 047
Enter telephone number: 2-33
Enter gender: female
Enter age: 18
//display
Welcome to the club Ta Ma Ta!
Your area code and telephone number is (047) 1-22.
You are a male member, and your age is 21.
Welcome to the club Ja La Ga!
Your area code and telephone number are (047) 2-33.
You are a female member, and your age is 18.