Explanation of Solution
Major technologies used in business:
- Hardware is the physical component to connect with the
operating system . These computer hardware’s like mainframe computers, personal computers, supercomputers, workstations, and grid computers. - The data storage devices used to store data in the devices. These data storage devices like magnetic disk, optical disc, magnetic tapes, and storage networks are used in business.
- The input and output devices are used to communicate with the system with some peripherals. Input devices includes keyboard, mouse, touch screen, pen based input, scanner, and other input devices. Output devices include monitor, printers, and audio output.
- The hardware trends used in business today are nanotechnology, cloud computing based technology, mobile digital platform, grid computing, cloud computing, and so on.
Types of computers available to business today:
There are various types of computers available in business today is as follows:
- Personal computers
- Workstations
- Mainframes
- Super computers
- Servers
- Grid computing
Personal computers:
It is the desktop computers used for a person or peoples in small business. It handles all the basic functionalities compared to server computers.
Workstations:
These computers have a powerful functionalities and graphical capabilities than PCs. It is used in designing work with powerful graphic tool and capabilities.
Mainframes:
It is the large capacity computers with high performance which process the vast amount of data quickly.
Super computers:
It is an advanced machine which is used to solve the complicated calculations, millions of measurements with multiple variables, and thousands of equations.
Servers:
This type of computers used to share the files, software, peripheral devices, or other network related resources through
Grid computing:
It is the remote computing system which is connected to the single network to virtual super computer by combining the computational power of all computers in a grid.
Client and server model:
- The two or many computers are connected with each other through network for data processing is called distributed processing. The client/server is one of the distributed processing which passes the data between client and server.
- Both client and server is the computer system which works on internet and connected with each other. The client is called use and server provides the service to the user.
- The client system access the client part of the application and server stores the information and share the data with network activities.
Difference between two-tiered and n-tier client/server architecture;
Two-tier client/server architecture | n-tier client/server architecture |
It has two computer systems. One system used for client system and another one is used for server system. | It has multiple numbers of clients and servers. |
The process of data splits between two types of machines. | The process is splits between multiple number of clients and servers. |
It is the simple system. | It is the complex system. |
Secondary storage media:
The storage device is places internal or external to the computer is known as secondary storage media. The list of secondary storage media is as follows:
- Magnetic disk
- Optical disk
- Magnetic tape
- Storage networks
Magnetic disk:
Magnetic disks are most widely used secondary device which includes floppy and hard disks. These magnetic disks are convenient to use, permit the direct access with individual records, and provide fast access speed.
Strengths of magnetic disk:
- The magnetic disk supports the direct access to the data which is not possible in magnetic tapes.
- It is light weighted and easy portable form one to another place.
- Data transfer rate is higher than the magnetic tapes.
Limitations of magnetic disk:
- It is costlier than magnetic tapes.
- Difficulty to maintain data securely.
Optical disk:
It has the greater density than the magnetic disks to store the vast quantity of data such as documents and reference materials.
Strengths of optical disk:
- It uses the laser technology for large quantity of data such as audio, video, and images.
- The cost of the optical disk is low and provides the extensive storage
- It is portable.
Limitations of optical disk:
- The data in optical disk can be editable in 3 to 4 times only. Because, it has limited editable accessibility in optical disk...
Want to see the full answer?
Check out a sample textbook solutionChapter 5 Solutions
Essentials of MIS (12th Edition)
- Make the following game user friendly with GUI, with some simple graphics. The GUI should be in another seperate class, with some ImageIcon, and Game class should be added into the pane. The following code works as this: The objective of the player is to escape from this labyrinth. 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. The player can move only in four directions: left, right, up or down. There are several escape paths in all labyrinths. The player’s character should be able to moved with the well known WASD keyboard buttons. If the dragon gets to a neighboring field of the player, then the player dies. Because it is dark in the labyrinth, the player can see only the neighboring fields at a distance of 3 units. Cell Class: public class Cell { private boolean isWall; public Cell(boolean isWall) { this.isWall = isWall; } public boolean isWall() { return…arrow_forwardDiscuss the negative and positive impacts or information technology in the context of your society. Provide two references along with with your answerarrow_forwardA cylinder of diameter 10 cm rotates concentrically inside another hollow cylinder of inner diameter 10.1 cm. Both cylinders are 20 cm long and stand with their axis vertical. The annular space is filled with oil. If a torque of 100 kg cm is required to rotate the inner cylinder at 100 rpm, determine the viscosity of oil. Ans. μ= 29.82poisearrow_forward
- Make the following game user friendly with GUI, with some simple graphics The following code works as this: The objective of the player is to escape from this labyrinth. 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. The player can move only in four directions: left, right, up or down. There are several escape paths in all labyrinths. The player’s character should be able to moved with the well known WASD keyboard buttons. If the dragon gets to a neighboring field of the player, then the player dies. Because it is dark in the labyrinth, the player can see only the neighboring fields at a distance of 3 units. Cell Class: public class Cell { private boolean isWall; public Cell(boolean isWall) { this.isWall = isWall; } public boolean isWall() { return isWall; } public void setWall(boolean isWall) { this.isWall = isWall; } @Override public String toString() {…arrow_forwardPlease original work What are four of the goals of information lifecycle management think they are most important to data warehousing, Why do you feel this way, how dashboards can be used in the process, and provide a real life example for each. Please cite in text references and add weblinksarrow_forwardThe following is code for a disc golf program written in C++: // player.h #ifndef PLAYER_H #define PLAYER_H #include <string> #include <iostream> class Player { private: std::string courses[20]; // Array of course names int scores[20]; // Array of scores int gameCount; // Number of games played public: Player(); // Constructor void CheckGame(int playerId, const std::string& courseName, int gameScore); void ReportPlayer(int playerId) const; }; #endif // PLAYER_H // player.cpp #include "player.h" #include <iomanip> Player::Player() : gameCount(0) {} void Player::CheckGame(int playerId, const std::string& courseName, int gameScore) { for (int i = 0; i < gameCount; ++i) { if (courses[i] == courseName) { // If course has been played, then check for minimum score if (gameScore < scores[i]) { scores[i] = gameScore; // Update to new minimum…arrow_forward
- In this assignment, you will implement a multi-threaded program (using C/C++) that will check for Prime Numbers and Palindrome Numbers in a range of numbers. Palindrome numbers are numbers that their decimal representation can be read from left to right and from right to left (e.g. 12321, 5995, 1234321). The program will create T worker threads to check for prime and palindrome numbers in the given range (T will be passed to the program with the Linux command line). Each of the threads works on a part of the numbers within the range. Your program should have some global shared variables: • numOfPrimes: which will track the total number of prime numbers found by all threads. numOfPalindroms: which will track the total number of palindrome numbers found by all threads. numOfPalindromic Primes: which will count the numbers that are BOTH prime and palindrome found by all threads. TotalNums: which will count all the processed numbers in the range. In addition, you need to have arrays…arrow_forwardHow do you distinguish between hardware and a software problem? Discuss theprocedure for troubleshooting any hardware or software problem. give one reference with your answer.arrow_forwardYou are asked to explain what a computer virus is and if it can affect computer’shardware or software. How do you protect your computer against virus? give one reference with your answer.arrow_forward
- Distributed Systems: Consistency Models fer to page 45 for problems on data consistency. structions: Compare different consistency models (e.g., strong, eventual, causal) for distributed databases. Evaluate the trade-offs between availability and consistency in a given use case. Propose the most appropriate model for the scenario and explain your reasoning. Link: [https://drive.google.com/file/d/1wKSrun-GlxirS31Z9qoHazb9tC440AZF/view?usp=sharing]arrow_forwardOperating Systems: Deadlock Detection fer to page 25 for problems on deadlock concepts. structions: • Given a system resource allocation graph, determine if a deadlock exists. If a deadlock exists, identify the processes and resources involved. Suggest strategies to prevent or resolve the deadlock and explain their trade-offs. Link: [https://drive.google.com/file/d/1wKSrun-GlxirS31Z9qoHazb9tC440 AZF/view?usp=sharing]arrow_forwardArtificial Intelligence: Heuristic Evaluation fer to page 55 for problems on Al search algorithms. tructions: Given a search problem, propose and evaluate a heuristic function. Compare its performance to other heuristics based on search cost and solution quality. Justify why the chosen heuristic is admissible and/or consistent. Link: [https://drive.google.com/file/d/1wKSrun-GlxirS31Z9qoHazb9tC440 AZF/view?usp=sharing]arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education