Answer:
It is address to send electronic mails
answer:
(i) #include <iostream>
using namespace std;
int main() {
int n1,n2,max;
cin>>n1>>n2;
if(n1>n2)//finding maximum between n1 and n2 in the program directly.
max=n1;
else
max=n2;
cout<<max;
return 0;
}
(ii)
#include <iostream>
using namespace std;
int maximum(int n1 ,int n2)
{
if(n1>n2)//finding maximum between n1 and n2 using function.
return n1;
else
return n2;
}
int main() {
int n1,n2,max;
cin>>n1>>n2;
max=maximum(n1,n2);
cout<<max;
return 0;
}
(iii)
#include <iostream>
using namespace std;
inline int maximum(int n1 ,int n2)
{
return (n1>n2)? n1:n2;
}
int main() {
int n1,n2,max;
cin>>n1>>n2;
max=maximum(n1,n2);//Finding maximum using inline function.
cout<<max;
return 0;
}
Output:-
54 78
78
all three codes give the same output.
Explanation:
In part (i) I have done the operation in the main function directly.
In part(ii) I have used function to calculate the maximum.
In part(iii) I have used inline function to calculate maximum.
Answer: Here are some reasons why you might send a professional business letter:
1. It will make the recipient trust and respect you more.
2. It shows that you are a good and respectable business person.
3. It shows that you put time and effort into your business dealings no matter how small.
4. It shows that you respect the recipient as sending a professional business letter is harder than simply sending a text.
Hope this helps! :)
Explanation:
The wires that are simultaneously connected to all devices in the network are;
SDA(Serial data line) and SCL
Integrated Circuits Communication
This involves I²C which is a form of communication based on integrated circuits.
Now, this I²C is a serial communication interface that has a bidirectional two-wire synchronous serial bus which usually comprises of two wires namely SDA (Serial data line) and SCL (Serial clock line).
Read more about integrated circuits communication at; brainly.com/question/26153031
<span>b. In
Slide Sorter view, the user can zoom in to read text on slides more
easily or zoom out to see more of the presentation’s slides at once.
Moreover, in Normal View, the number of slides that you can see together at once is quite less, so it is more advantageous to use the Slide Sorter View to sort your slides
</span>