Answer:
C: disruptive technology era
Explanation:
There are five main stages in IT infrastructure era and the are, in order from the oldest to the newest; the mainframe and minicomputer era, the personal computer era, the client/server era, the enterprise era, and the cloud computing being the newest in the five stages eras of IT infrastructure.
Answer:
#program in python.
#variables
slice_area=14.125
pi=3.14159
#read diameter
d=int(input("Enter diameter of pizza:"))
#area of pizza
area=pi*(d/2)*(d/2)
#number of slice
no_slice=int(area/slice_area)
#print slice
print("total silce are:",no_slice)
Explanation:
Declare and initialize a variable "slice_area" with 14.125 which is the area of a pizza slice.Initialize a variable "pi" with 3.14159.Then read the diameter of pizza.Find the area of pizza as "area=pi *d/2*d/2".Divide the total area with area of pizza slice.This will be the number of slice.
Output:
Enter diameter of pizza:20
total silce are: 22
Answer:
A. Helps to quickly find information in a document
B. Points readers to specific page numbers
D. Locates specific sections within a document
Answer:
- import java.util.Scanner;
- public class num8 {
- public static void main(String[] args) {
- int first, second, third, fourth,total;
- double decimalOne, decimalTwo, decimalTotal;
- }
- public static void getData(int first, int second, int third, int fourth, double decimalOne, double decimalTwo){
- System.out.println("Enter the Values");
- Scanner in = new Scanner(System.in);
- first=in.nextInt();
- second=in.nextInt();
- third=in.nextInt();
- fourth=in.nextInt();
- decimalOne = in.nextDouble();
- decimalTwo = in.nextDouble();
- }
- public static int computeTotal(int first, int second, int third){
- return first+second+third;
- }
- public static int computeTotal(int first, int second, int third, int fourth){
- return first+second+third+fourth;
- }
- public static double computeTotal(double decimalOne, double decimalTwo){
- return decimalOne+decimalTwo;
- }
- public static void printAll( int first, int second, int third){
- System.out.println("Number one, two and three are: "+first+" "+second+" "+third);
- }
- public static void printAll( int first, int second, int third, int fourth){
- System.out.println("Number one, two and three and four are: "+first+" "+second+
- " "+third+" "+fourth);
- }
- public static void printAll( int first, int second, int third, int fourth, int fifth){
- System.out.println("Number one, two and three and four are: "+first+" "+second+
- " "+third+" "+fourth+" "+fifth);
- }
- public static void printAll( double first, double second, double third){
- System.out.println("Number one, two and three and four are: "+first+" "+second+
- " "+third);
- }
- }
Explanation:
This solution is provided in Java:
All the variable declarations are done in the main method (lines 3-6)
Eight methods as specified in the question are created (Lines 7, 17, 20, 23, 26, 29, 33 and 37).
Observe the concept of Method Overloading (i.e. methods with same name and return types but different parameter list)