Answer:
A legal document that an app or a website must provide to describe the rules the company and users must obey when they use the app.
Answer:
See the program code below.
Explanation:
def cube_SA(edge):
edge = int(input("Enter the cube's edge: "))
sa = edge * edge * 6
print("The surface area is {} square units".format(sa))
cube_SA(4)
Best Regards!
A LAN (local area network) is a group of computers and network devices connected together, usually within the same building. By definition, the connections must be high speed and relatively inexpensive (e.g., token ringor Ethernet). Most Indiana University Bloomington departments are on LANs.
A LAN connection is a high-speed connection to a LAN. On the IUB campus, most connections are either Ethernet (10 Mbps) or Fast Ethernet (100 Mbps), and a few locations have Gigabit Ethernet (1000 Mbps) connections.
A MAN (metropolitan area network) is a larger network that usually spans several buildings in the same city or town. The IUB network is an example of a MAN.
A WAN (wide area network), in comparison to a MAN, is not restricted to a geographical location, although it might be confined within the bounds of a state or country. A WAN connects several LANs, and may be limited to an enterprise (a corporation or an organization) or accessible to the public. The technology is high speed and relatively expensive. The Internet is an example of a worldwide public WAN.
Answer:
#include <iostream>
using namespace std;
int main()
{
int arr[]={3,-9,9,33,-4,-5, 100,4,-23};
int pos;
int n=sizeof(arr)/sizeof(arr[0]);
for(int i=0;i<n;i++){
if(arr[i]>=0){
pos++;
}
}
cout<<"Number of positive integers is "<<pos<<endl;
return 0;
}
Explanation:
create the main function in the c++ programming and declare the array with the element. Then, store the size of array by using the formula:
int n=sizeof(arr)/sizeof(arr[0]);
after that, take a for loop for traversing the array and then check condition for positive element using if statement,
condition is array element greater than or equal to zero.
if condition true then increment the count by 1.
this process happen until the condition true
and finally print the count.