Write a C++ program to find roots of a quadratic equation using Ternary conditional
operator.
Select all devices that can be used by the Arduino as inputs
Motors
Pressure sensor
Electromagnets
Lights
Display devices
Select all devices that can be used by the Arduino as outputs
Speakers
Gas sensor
Lights
Buttons
Light sensor
why this switch statment is not valid??? reason
switch (n % 10)
case 2:
{
case 4:
case 6:
case 8:
cout << "Even";
break; case 1:
case 3:
case 5:
case 7:
cout << "Odd"; break; }
Select all devices that can be used by the Arduino as inputs
Lights
Touch sensor
Speakers
Gas sensor
Display devices
Select all devices that can be used by the Arduino as outputs
Light sensor
Buttons
Temperature sensor
Electromagnets
Example
Input: 2343243233
Input: 3
Output: 5
Example
Input: aaa34@raj?where454/
Output: 3
An e-commerce application wants to give discounts to its customers. The discount is calculated as the product of the sum of even numbers and the sum of odd numbers present in the bill. Print the discount that a customer can get.
1. Input: 2345, Output: 48
Explanation: even_sum = 2+4 = 6.
Odd_sum = 3+5 = 8.
Product = 6*8 = 48.
. Consider the following relation with set of functional dependencies
R(ABCDEF)
ABC->D, ABD->E, CD->F, CDF->B, BF->D
a) Identify the candidate key(s) in the relation (with proper steps followed).
b) Identify which normal form this relation is in and reason for the answer.