Experiencing MIS
Experiencing MIS
8th Edition
ISBN: 9780134792736
Author: KROENKE
Publisher: PEARSON
Expert Solution & Answer
Book Icon
Chapter 5.3, Problem 1SW

Explanation of Solution

Choice of storing personal data in the cloud:

Cloud acts as a storage place where the data and information can be stored and retrieved by the users. The user who uses the cloud services could be a common people or business professionals. Therefore, any information required by the person who stores the data in the cloud can be accessed using this cloud storage whenever required from any place through internet.

Therefore, “yes”, it is recommended to store the personal data in the cloud.

Type of the data that could be preferred to store in the cloud:

Students usually prefer to store their study materials, photos, videos, songs and required documents that are needed to be used so often. Any type of data can be stored into the cloud.

On storing the data into the cloud certain are needed to be considered with service provider and they are as follows:

  • Ensure whether the cloud vendor is up-to-date with its industry certifications and data center.
  • Be specific on the provider that is chosen, that is based on the industry the user belongs to.
  • Bandwidth limitation needs to be recognized such that it is necessary to identify whether bulk transfer is possible or not.
  • Ensure whether the data stored are being encrypted.
  • Before signing up the contract service with service provider it is necessary to read the service level agreements.
  • Knowing the cost of storage is must.
  • Storage amount needs to be decided before obtaining service.
  • Ensure about the data recovery and restoring options that is provided by the service provider...

Blurred answer
Students have asked these similar questions
Exercise docID document text docID document text 1 hot chocolate cocoa beans 7 sweet sugar 2345 9 cocoa ghana africa 8 sugar cane brazil beans harvest ghana 9 sweet sugar beet cocoa butter butter truffles sweet chocolate 10 sweet cake icing 11 cake black forest Clustering by k-means, with preprocessing tokenization, term weighting TFIDF. Manhattan Distance. Number of cluster is 2. Centroid docID 2 and docID 9.
Change the following code so that there is always at least one way to get from the left corner to the top right, but the labyrinth is still randomized. The player starts at the bottom left corner of the labyrinth. He has to get to the top right corner of the labyrinth as fast he can, avoiding a meeting with the evil dragon. Take care that the player and the dragon cannot start off on walls. Also the dragon starts off from a randomly chosen position   public class Labyrinth {    private final int size;    private final Cell[][] grid;     public Labyrinth(int size) {        this.size = size;        this.grid = new Cell[size][size];        generateLabyrinth();    }     private void generateLabyrinth() {        Random rand = new Random();        for (int i = 0; i < size; i++) {            for (int j = 0; j < size; j++) {                // Randomly create walls and paths                grid[i][j] = new Cell(rand.nextBoolean());            }        }        // Ensure start and end are…
Change the following code so that it checks the following 3 conditions: 1. there is no space between each cells (imgs) 2. even if it is resized, the components wouldn't disappear 3. The GameGUI JPanel takes all the JFrame space, so that there shouldn't be extra space appearing in the frame other than the game.   Main():         Labyrinth labyrinth = new Labyrinth(10);         Player player = new Player(9, 0);        Dragon dragon = new Dragon(9, 9);         JFrame frame = new JFrame("Labyrinth Game");        GameGUI gui = new GameGUI(labyrinth, player, dragon);         frame.add(gui);        frame.setSize(600, 600);        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);        frame.setVisible(true);   public class GameGUI extends JPanel {    private final Labyrinth labyrinth;    private final Player player;    private final Dragon dragon; //labyrinth, player, dragon are just public classes     private final ImageIcon playerIcon = new ImageIcon("data/images/player.png");…
Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Enhanced Discovering Computers 2017 (Shelly Cashm...
Computer Science
ISBN:9781305657458
Author:Misty E. Vermaat, Susan L. Sebok, Steven M. Freund, Mark Frydenberg, Jennifer T. Campbell
Publisher:Cengage Learning