Principles of Information Systems, Loose-Leaf Version
13th Edition
ISBN: 9781305971820
Author: Ralph Stair, George Reynolds
Publisher: Course Technology
expand_more
expand_more
format_list_bulleted
Textbook Question
Chapter 8, Problem 15SAT
Many multinational companies roll out standard IS applications for all to use. However, standard applications often don’t account for all the differences among business partners and employees operating in other parts of the world. Which of the following is a frequent modification that is needed for standard software?
- a. Software might need to be designed with local language interfaces to ensure the successful implementation of a new IS.
- b. Customization might be needed to handle date fields correctly.
- c. Users might also have to implement manual processes and overrides to enable systems to function correctly.
- d. All of the above
Expert Solution & Answer
Trending nowThis is a popular solution!
Students have asked these similar questions
A server program written in one language (for example, C++) provides the implementation of a Person object (class) that is intended to be accessed by clients that may be written in a different language (for example, Java, PHP, C#). The client and server computers may have different hardware, but all of them are attached to an internet.Describe the problems due to each of the five aspects of heterogeneity that need to be solved to make it possible for a client object to invoke a method on the server object.
Trying to update a C++ code I wrote earlier (perhaps around 30-60 lines of code) and make it compile and run showing how to use:
Note: I am currently working on using class. I am not commited to the below code, just looking for a job example to help me understand the concepts better and how to clean up my own code to be more effiecent using the current items I am reading about. I would like to stay using the address example though. Please label code to help me understand as I break it down.
a. abstract data type
b. const
c. class constructor
#include <iostream>#include <string>
using namespace std;
class address // address structure type{public:string streetAddress;string city;string state;int zipcode;
};
int main()
{
address guest; // class address named guest
address home; // class adress named home and inputshome.streetAddress = "1234 Right Way Rd.";home.city = "Huntsville";home.state = "AL";home.zipcode = 35803;
cout << "What is your address?…
Since developers are more interested in functionality than end users, they should prioritize deep access over shallow access.
Chapter 8 Solutions
Principles of Information Systems, Loose-Leaf Version
Ch. 8.1 - Prob. 1RQCh. 8.1 - Prob. 2RQCh. 8.1 - Prob. 1CTQCh. 8.1 - Prob. 2CTQCh. 8.2 - Prob. 1RQCh. 8.2 - Prob. 2RQCh. 8.2 - Prob. 2CTQCh. 8 - Prob. 1SATCh. 8 - Prob. 2SATCh. 8 - Prob. 3SAT
Ch. 8 - Prob. 4SATCh. 8 - Prob. 5SATCh. 8 - Prob. 6SATCh. 8 - Prob. 7SATCh. 8 - Prob. 8SATCh. 8 - Prob. 9SATCh. 8 - Prob. 10SATCh. 8 - Prob. 11SATCh. 8 - Prob. 12SATCh. 8 - Prob. 13SATCh. 8 - Prob. 14SATCh. 8 - Many multinational companies roll out standard IS...Ch. 8 - Prob. 1RQCh. 8 - Prob. 2RQCh. 8 - Prob. 3RQCh. 8 - Prob. 4RQCh. 8 - Prob. 5RQCh. 8 - Prob. 6RQCh. 8 - Prob. 7RQCh. 8 - Prob. 8RQCh. 8 - Prob. 9RQCh. 8 - Prob. 10RQCh. 8 - Prob. 11RQCh. 8 - What is source data automation? What benefits can...Ch. 8 - Prob. 1DQCh. 8 - Prob. 2DQCh. 8 - Prob. 3DQCh. 8 - Prob. 4DQCh. 8 - Prob. 5DQCh. 8 - Prob. 6DQCh. 8 - Prob. 7DQCh. 8 - You are a member of the engineering organization...Ch. 8 - Prob. 9DQCh. 8 - Prob. 10DQCh. 8 - Prob. 1TACh. 8 - Prob. 3TACh. 8 - Prob. 1WECh. 8 - Prob. 2WECh. 8 - Prob. 3WECh. 8 - Initially thought to be cost-effective for only...Ch. 8 - Because NDCP is a membership cooperative, Dunkin...Ch. 8 - How important do you think the communication and...Ch. 8 - Prob. 3CTQ1Ch. 8 - Prob. 1CTQ2Ch. 8 - Prob. 2CTQ2Ch. 8 - Prob. 3CTQ2
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- What are the potential issues or pitfalls developers should be aware of when dealing with object serialization, especially in terms of security and versioning?arrow_forwardIn an application currently in production, one module of code is being modified. Is it necessary to re-test the whole application or is it enough to just test the functionality associated with that module?arrow_forwardDistributed systems are becoming more popular with the growth of computer networks. Applications and part of applications must have portability attributes to run on different machines and different frameworks. Java is an object oriented programming language that is known for its portability a well as other advantages such as neutrality and reliability.With reference to at least one publication, analyze the Java compiler and environment and how it addresses the portability of applications.arrow_forward
- Consider a restaurant software ordering system. The system should allow the waiter to handle customers' orders by adding them, cancelling them, scheduling parts of the order (to make the starter arrive earlier than the main course). The cashier should be allowed to let customers pay for their meals, and print receipts. • What is the SDLC model that is best to use in the application? Why? • Construct the Context Diagram of the software • Construct the use case diagram of the software • Construct the sequence diagram of the software (2 functions) • Construct the conceptual framework of the softwarearrow_forwardWhat function does compiler optimization serve? How would you implement one when it comes to programming? Exist any scenarios in which one of these devices would not be advantageous?arrow_forwardInstead than depending only on concerns about performance, demonstrate why deep access is better than shallow access from a programmer's perspective.arrow_forward
- Please provide an explanation for why deep access is better than shallow access from the perspective of a programmer; do not make your argument just on the basis of performance concerns.arrow_forwardThe Airline Reservation System project is an implementation of a general Airline Ticketing website like Orbitz, which helps the customers to search the availability and prices of various airline tickets, along with the different packages available with the reservations. This project also covers various features like online registration of the users, modifying the details of the website by the management staff or administrator of the website, by adding, deleting or modifying the customer details, flights or packages information. In general, this website would be designed to perform like any other airline ticketing website available online A. Write the functional requirements of the given Airline Reservation System. B. Write the Non-functional requirements of the given Airline Reservation System.arrow_forwardExplain why deep access is preferable to shallow access from the standpoint of a programmer; avoid making a case only on the basis of performance considerations.arrow_forward
- What are the potential issues and challenges that developers might face when implementing object serialization in their applications, and how can these be mitigated?arrow_forwardCourse Title: Object Oriented Analysis and Design Question : There is a utility company which provides waste management services to citizens. It has a CRM system, billing system, messaging system and mapping (GIS) system. When a customer is created in the CRM system, the billing, messaging, and GIS systems need a copy of customer data to perform follow-up tasks and automation. For instance—the billing system will create a billing account for the customer, the messaging system will send a welcome message with customer account details on preferred communication channel and the GIS system will update the customer’s address in the database for mapping purposes. After completion of one billing cycle the billing dept. sends a copy of the bill in a pdf format on the customer email address and the bill amount is directly debited from the customer’s bank account. Draw an appropriate Activity diagram . (Note): Forks and joins have the same notation: either a horizontal or vertical bar (the…arrow_forwardJustify why deep access is better than shallow access from a programming standpoint; avoid making a case just on performance grounds.arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- 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
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education
C++ Data Members; Author: CppNuts;https://www.youtube.com/watch?v=StlsYRNnWaE;License: Standard YouTube License, CC-BY