Answer:
B. EoP
Explanation:
EoP could be used to network this building as per the scenario given.
Answer:
Flat web architecture
Explanation: A flat web architecture is a type of web Structure where to link chain exists, in this type of web architecture,users can access the web site with few number of clicks such as in one, two or three clicks with a maximum of four clicks.
One of the basic importance when dealing with web pages is the number of clicks before the page requested can be reached. The lower the number of clicks the better.
<span>the answer is: the same background color on all visuals and no more than two colors for words.</span>
Data mining is an information analysis tool that involves the automated discovery of patterns and relationship in the data warehouse.
<span />
Answer:
import java.io.*;
import java.util.Scanner;
class divide {
public static void main (String[] args) {
Scanner num=new Scanner(System.in);//scanner object.
int userNum=num.nextInt();
while(userNum>1)//while loop.
{
userNum/=2;//dividing the userNum.
System.out.print(userNum+" ");//printing the userNum.
}
}
}
Input:-
40
Output:-
20 10 5 2 1
Input:-
2
Output:-
1
Input:-
0
Output:-
No Output
Input:-
-1
Output:-
No Output.
Explanation:
In the program While loop is used.In the while loop it divides the userNum by 2 in each iteration and prints the value of userNum.The inputs and corresponding outputs are written in the answer.