Answer:
B is the only answer that makes sence
Answer:
B.
Explanation:
Client-server application is a relationship between a client and a server.
In this relationship, the client (a program) requests a service from the server (the other resource).
The statement that is not true about the client-server applications is they include smart phones, tablets, iPads, laptops, desktop computers.
Rest of the statements concerning client-server relationship are true.
Therefore, option B is the answer.
An open-source physical computing platform that can take input from a variety of switches or sensors to control physical objects is known as Arduino.
Arduino means an electronics prototyping system is built to simplify microcontroller projects. The concept is to product these projects without having to know much about microcontrollers or programming, microcontrollers for dummies is one tips of explaining Arduino. Arduino has function to control of traffic lights, it can also be used for the real time control system with programmable timings, pedestrian lighting etc. Arduino can respond with buttons, LEDs, motors, speakers, GPS units, cameras, the internet, and even your smart-phone or your TV.
Learn more about Arduino at brainly.com/question/13098809
#SPJ4
The answer is C. 10
Further than that distance, you will risk being choked by seat belts during the crash.
Below that distance, you will still feel the impact between your head and the steering wheel during the crash
Answer:
#include <iostream>
using namespace std;
int main()
{
int mt, day, yr, magic;
cout << "Enter a month(numeric form)"<< endl;
cin >> mt;
cout << "please enter a day"<<endl;
cin >> day;
cout << "please enter a year"<< endl;
cin >> yr;
// Input Validation
if (mt<1 || mt>12){
cout<<"Invalid Month";
}
else if (day<1||day>31){
cout<<"Invalid Day";
}
else if (yr>99||yr<0){
cout<<"Invalid Year";
}
else{
// Calculates magic
magic = (mt * day);
if (magic == yr)
{
cout << "it is a magic year"<<endl;;
}
else
cout << "It is not a magic year" << endl;
}
return 0;
}
Explanation:
Using C++ we request the user to enter values for Month, day and year (two digits). We carry out input validation to ensure the user enters a valid month, day and year. Using if/elseif/if statements we ensure the conditions given in the question.