Answer:
Look below.
Explanation:
Oof. That must suck. I think that all you have to do to remove the extension is to right click on it and press delete. Thn a thing should slide down from the top of the screen and say something like "are you sure" and then press yes. That should work...
α∨1=1 is an example of boolean algebra with result equal to 1.
<h3>What is boolean algebra?</h3>
Are algebraic structures that "capture the essential properties" of logical and set operators, or provide a structure for dealing with "statements".
With this information, we can conclude that The purpose of Boolean algebra is to describe signal processing, in the form of an algebraic expression.
Learn more about Boolean algebra in brainly.com/question/2467366
Answer:
#include <iostream>
using namespace std;
void miles_to_km(float &miles)//function to convert miles to kilo meters.
{
miles=miles*1.6;
}
int main() {
float miles;
cout<<"Enter the miles"<<endl;
cin>>miles;//taking input of the miles..
miles_to_km(miles);//calling function that converts miles to km..
cout<<"The number of km is "<<miles<<endl;//printing the km.
return 0;
}
Output:-
Enter the miles
54
The number of km is 86.4
Explanation:
I have created a function miles_to_km of type void which has the argument miles passed by reference.In the function the variable miles is converted to kilo meters.Then in the main function the function is called with the value prompted from the user.Then printing the changed value.