ALFARIS - TheTech-Savvy

The Tech-Savvy Blog - Gained My Experience!

A management information system (MIS) is a subset of the overall internal controls of a business covering the application of people, documents, technologies, and procedures by management accountants to solving business problems such as costing a product, service or a business-wide strategy. Management information systems are distinct from regular information systems in that they are used to analyze other information systems applied in operational activities in the organization.[1] Academically, the term is commonly used to refer to the group of information management methods tied to the automation or support of human decision making, e.g. Decision Support Systems, Expert systems, and Executive information systems.[1]

Overview:

At the start, in businesses and other organizations, internal reporting was made manually and only periodically, as a by-product of the accounting system and with some additional statistics, and gave limited and delayed information on management performance.

In their infancy, business computers were used for the practical business of computing the payroll and keeping track of accounts payable and accounts receivable. As applications were developed that provided managers with information about sales, inventories, and other data that would help in managing the enterprise, the term "MIS" arose to describe these kinds of applications. Today, the term is used broadly in a number of contexts and includes (but is not limited to): decision support systems, resource and people management applications, project management and database retrieval application.

Definition:

An 'MIS' is a planned system of the collecting, processing, storing and disseminating data in the form of information needed to carry out the functions of management. According to Philip Kotler "A marketing information system consists of people, equipment, and procedures to gather, sort, analyze, evaluate, and distribute needed, timely, and accurate information to marketing decision makers." [2]

The terms MIS and information system are often confused. Information systems include systems that are not intended for decision making. The area of study called MIS is sometimes referred to, in a restrictive sense, as information technology management. That area of study should not be confused with computer science. IT service management is a practitioner-focused discipline. MIS has also some differences with Enterprise Resource Planning (ERP) as ERP incorporates elements that are not necessarily focused on decision support.

Professor Allen S. Lee states that "...research in the information systems field examines more than the technological system, or just the social system, or even the two side by side; in addition, it investigates the phenomena that emerge when the two interact." [3].

References:

  1. ^ a b O’Brien, J (1999). Management Information Systems – Managing Information Technology in the Internetworked Enterprise. Boston: Irwin McGraw-Hill. ISBN 0071123733.
  2. ^ Kotler, Philip; Keller, Kevin Lane (2006). Marketing Management (12 ed.). Pearson Education.
  3. ^ Lee, Allen S. (2001). "Editor’s Comments". MIS Quarterly 25 (1): iii-vii.

What is .NET?

• A set of .NET languages that can be said to function in a common environment.
These languages all execute in a common runtime and all make use of a common library of components. Visual Studio .NET includes a group of Microsoft-built languages that conform to the .NET standard.

• Full interoperability with existing code
Existing COM binaries can be mixed together with newer .NET binaries and vice versa. Besides, Platform Invocation Services allows you to call C-based libraries from .NET code.

• A truly simplified deployment model
Using .NET, there is no need to register a binary unit into the system registry. Moreover, .NET allows multiple versions of the same .dll to exist in harmony on a single machine.


• A distributed application service
More and more services will be accessible from the Internet as network bandwidth increases and waiting times decrease, so it is possible to provide real-time services through the Internet.
The .NET platform makes use of XML and SOAP in order to describe and manipulate data.


The .NET Platform
Architecture of the .NET platform is made up of:-
• .NET Framework
• Common Language Specifications (CLS)
• Common Language Runtime (CLR)
• Microsoft Intermediate Language (MSIL)
• Base Class Library (BCL).



- The CLS—Common Language Specifications (We are now all speaking the same language)
In an object-oriented environment, everything is an object. Once you have created an object, your object needs to communicate with many other objects. These other objects may have been created in another .NET language, but that doesn’t matter, because each language sticks to the rules of the Common Language Specifications. The CLS defines such things as common variable types, common method specifications, and so on.

- The CLR—Common Language Runtime
All .NET-compliant languages run in a common, managed runtime execution environment.
Advantages of having a common runtime environment:-


• Simplified development and integrated development with other languages
Because of the CLR, you can rely on code that is accessed from different languages. One coder can write one module in C++, and another can access and use it from C#.


• Automatic Garbage Collection
The CLR has a service called the Garbage Collector (GC), which automatically manages memory for you.
• The GC automatically deletes objects from memory that your program will no longer access.
• The GC relieves the programmer of traditional tasks such as deallocating memory.

• Replacement of DLLs with versioned assemblies
The CLR uses the version information that comes packaged in an assembly to make sure that the application will load the correct component. This was a nightmare for DLL programmers, even though COM (Component Object Model) was supposed to correct most of the problems.


- Microsoft Intermediate Language
Microsoft Intermediate Language (MSIL) or, as it is known, Intermediate Language (IL). In its simplest terms, IL is an assembly-type language.
Let’s look at the steps you follow to create, compile, and run a C# program. By exploring this, you will be able to see where the MSIL fits in and how it works with the .NET Framework.



- The BCL—Base Class Library
The Base Class Library (BCL) is a large class library used by the .NET Framework and available for you to use in your programs as well. The BCL is a runtime library that describes many classes that can be used in any software project. Essentially, this means that you have at your fingertips an arsenal of prebuilt blueprints to assist you in your programming effort. Let’s say that you have to create an application that provides network communication between two computers. Your first step would be to create a socket, which is a combination of the IP address and a port number. So you would set about creating a class file that describes this process. In anticipation of this, Microsoft has created a Socket class within the Base Class Library. You simply create an object of that class and call the methods you need.

Some of the built-in classes:
• General base classes: Classes that provide you with an extremely powerful set of tools for a wide range of programming tasks, such as string manipulation, security, and encryption.
• Collection classes: Classes that implement lists, dictionaries, hash tables, and bit arrays
• Threading and synchronization classes: Classes for building multithreaded programs
• XML classes: Classes for creating, reading, and manipulating XML documents