Answer:
889
Explanation:
it is this Nswerjhjhjjjkkkkjjnnnnnn
Answer:
double rainfall[30];
Explanation:
Here we are declared an onе dimеnsional array named " rainfall " of size 30 and type double.To declared a onе dimеnsional array we can use the following syntax.
datatype array-name[size];
So double rainfall[30];
Following are the program in c++
#include<iostream> // header file
using namespace std; // namespace
int main() // main method
{
double rainfall[30]={45.5,78.9,67.78}; // array declaration and storing values
for(int i=0;i<3;++i) // iterating loop
{
cout<<rainfall[i]<<endl; // printing the array elements
}
return 0;
}
Output:
45.5
78.9
67.78
Answer:
Dynamic
Explanation:
As defined by Walter Woltos, DYNAMIC DISPLAY is a type of display that allows the user to access a large amount of vocabulary in one device, uses spelling to convey the message, is changeable by the user, depicts language in electronic form, uses context-based pages, and uses conversational pages.
For example, a dynamic display includes smartphones, laptops, etc. This is the opposite of Static display.
An <u>extranet</u> is like an intranet except that, it shares its resources with users from a distant location.
<h3>What is an intranet?</h3>
An intranet simply refers to an internal organizational network which is exclusively designed and developed to be used privately. Also, it is used for providing the employees of an organization with easy access to data and information.
In Computer networking, the end users of an extranet have the ability to access a company's entire intranet from a distant location.
Read more on intranet here: brainly.com/question/2580626
#SPJ1