Answer:
A router
Sentence:
A(n) <u>router</u> is a network organization that centralizes user accounts, passwords, and access to resources.
5. Positive and Negative Impact of chemical industries.
Here are the positive impacts first:
=> It can discover a chemical product that can be helpful for us humans like physical beautification, medicines to a certain diseases and more that is beneficial to our health.
=> It can also help us learn more about the chemicals that is presents in our planet.
Here are the lists of the negative impacts:
=> Some Chemicals can be harmful to the nature and also to our body.
=> Some chemical can cause diseases especially those harmful ones.
The answer is Fourth-generation language (4GL). <span>Sql is an example of a 4GL category programming language. </span>SQL<span> is considered a Fourth-generation </span>language<span> (</span>4GL), whereas Java and C++ are third-generation languages<span> (3GLs). Fourth-generation </span>languages<span> are programming </span>languages<span> that are closer to human </span>language<span> than the high-level </span>languages<span> like Java.</span>
Answer:
//Here is the for loop in C.
for(n=10;n>0;n--)
{
printf("count =%d \n",n);
}
Explanation:
Since C is a procedural programming language.Here if a loop that starts with n=10; It will run till n becomes 0. When n reaches to 0 then loop terminates otherwise it print the count of n.
// here is code in C++.
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{ // variables
int n;
// for loop that runs 10 times
// when n==0 then loop terminates
for(n=10;n>0;n--)
{
cout<<"count ="<<n<<endl;
}
return 0;
}
Output:
count =10
count =9
count =8
count =7
count =6
count =5
count =4
count =3
count =2
count =1