Answer:
10.50, height = 15.01, and pi = 3.1415.
Answer:
The answer is "Option C"
Explanation:
VPN reflects virtual private networking, providing secure networking and strong links between private networks. It helps us to use remote machines, that are like on the same local site, and we use VPN to reach the hospital website. And other choices which could be listed as follows that is not correct:
- In option A, WAN represents a wide area network, it's used to connect computers through networking, that's why it's not correct.
- In option B, LAN stands for local area network, it shares a common line or wireless links for communication, that's why it is not correct.
- In option D, FOV stands for field of view that is used for gaming purposes, that's why it is not correct.
The answer is B bc obliteration is related to covering the document
Answer:
Following are the code to the given question:
#include <iostream>//header file
using namespace std;
int main()//main method
{
int r=26,x,y;//defining integer variable
char c;//defining a character variable
for(x= 1; y<= r; x++)//using for loop for count value
{
for(y= 1; y<= x; y++)//using for loop to convert value in triangle
{
c=(char)(y+64);//convert value into character
cout << c;//print character value
}
cout << "\n";//use print method for line break
}
return 0;
}
Output:
Please find the attachment file.
Explanation:
In this code, three integer variable "x,y, and r", and one character variable "c" is declared, that is used in the nested for loop, in the first for loop it counts the character value and in the next for loop, it converts the value into a triangle and uses the char variable to print its character value.