Answer:
The right answer is text. we just need to just mention the date inside the text, and also mention the cell number, where you want that to be printed. The formula is Text(B1, "MM-DD-YY").
The other mentioned are a detailed information, and contains a mixed blend of information. The table, chart, flowchart and the shapes contains different data type. However, text is a data type, and date can be converted into text date type through the above formula. Hence, we are converting the date data type to text data type.
Explanation:
The answer is self explanatory.
Answer:
Joint Application Development (JAD)
Explanation:
Joint Application Development is a method of application development that lay emphasis on the up-front aspect of the application development cycle whereby steady communication between the designers and the intended users of the application under development by coming together in collaborative workshop styled discussions known as JAD sessions involving the mediators, facilitator, observers, end users, experts, and developers. As such with JAD process application development result in fewer errors high quality and is completed in lesser time.
Cloud computing is more complex than traditional approach due to the following reasons.
Explanation:
1.Cost Savings and Total Cost of Ownership. When you move to cloud computing you tend to save money in several ways in comparison to traditional IT, including the reduction of in-house equipment and infrastructure.
2.Dissatisfaction in Traditional IT. Many companies are frustrated with the negatives that come with traditional IT, such as poor data backup, managing and maintaining your own hardware, and lack of disaster recovery options.
3.Time to Value and Ease of Implementation. Since you don’t have to spend time configuring hardware, maintain systems, and patching software, you can invest your resources elsewhere.
4.Access to Emerging Technology. Much like a car, the minute you purchase on-premise hardware and software, it immediately starts to age. You can access the latest and greatest innovations with a cloud provider who has more purchasing power and stays up-to-date with available solutions. Also, as new innovations are released, they become less likely to integrate with legacy solutions that are often inflexible. Instead, cloud-first development is coming to the forefront.
5.Using Hybrid to Optimize your Operations. Some organizations take the use of the cloud even further by using multiple clouds simultaneously, thus giving them even more agility. Workloads are placed where they perform best, and where costs are most efficient.
Answer:
Virtual Tours or Virtual 3D
Explanation: Because its a simulation it wouldn't be a tour, just virtual.
Answer:
import java.util.ArrayList;
import java.util.Scanner;
import java.util.Collections;
public class num4 {
public static void main(String[] args) {
int sum = 0;
Scanner in = new Scanner(System.in);
System.out.println("Enter number");
int num = in.nextInt();
ArrayList<Integer> list = new ArrayList<>();
while (num >= 0){
list.add(num);
System.out.println("Enter another positive number, enter a negative to stop");
num = in.nextInt();
}
int maximum = Collections.max(list);
int listSize = list.size();
for(int i:list){
sum = sum+i;
}
double average = (double) sum/listSize;
System.out.println("Maximum number entered is "+maximum);
System.out.println("Average of the number is "+average);
}
}
Explanation:
In this program:
- A Scanner class is used to receive user input and store in a variable
- A while loop with the condition while (num >= 0) is used to ensure only non-negative numbers are entered
- An ArrayList is created and used to store all the user's valid entries
- The Max Method in the Collections class is used to find the maximum value entered
- To find the average, a for loop is used to add all elements in the list and divide by the size of the list
- Finally the Average and maximum is printed out