Skip to main content

University questions of Management information system

                                       Year -2023

Full marks : 60                                                                                pass marks:30

Answer six questions                                                  6*10=60


1. Explain types of information system.  10

2.Executive Information System (EIS) is a kind of Decision Support System in DSS) which sits above and uses the data from MIS. What is the main purpose of EIS and what kind of decisions EIS would support?                                                                                        10

        3.Explain the    firewall functions in   protecting the    systems     and information assets.                                10

4. Explain- the application  of  MIS  in  health   service   sector   with
suitable example.                                       10

5. Why do we need telecommunication network, client server  architecture in database in implementing MIS? Explain       10

6. Why do decision making situation arise? Explain the decision making analysis by analytical modelling?               10

7. Write short notes on : ( Any two)  2*5=10
  
i. The moral dimensions of information system
ii. Role of data ware house in MIS
iii. contemporary approach to MIS


--

 

Comments

  1. Good Initiative to explore the best hotels in Pakistan, please also visit Menu Panda where you can find the best restaurants, their timings, contact info, and their menus like Coconut Grove Menu

    ReplyDelete

Post a Comment

Popular posts from this blog

Software Process Model(SPM)

  Explain spiral development model with advantages and disadvantages The Spiral Development Model is a risk-driven software development approach that combines iterative and waterfall models. It involves repeated cycles (or spirals) to incrementally refine the software project. Each spiral consists of four major phases: Planning , Risk Analysis , Engineering , and Evaluation .                                                           Fig: Spiral Software development model Phases in the Spiral Model: Planning : Requirements are gathered and objectives are set for the project. Risk Analysis : Risks are identified, analyzed, and mitigation strategies are developed. Develop/Engineering : The actual development and testing of the product take place. Evaluation : Stakeholders/users review the progress and provide feedback, inf...

Solution of NEB model quetions

 solution to model questions are : 

DBMS-SQL

SQL DDL and DML Examples Examples of DDL (Data Definition Language) and DML (Data Manipulation Language) commands in SQL. DDL (Data Definition Language) Examples: 1. Create a new database: CREATE DATABASE SchoolDB;  2. Create a table: CREATE TABLE Students ( StudentID INT PRIMARY KEY, FirstName VARCHAR(50), LastName VARCHAR(50), Age INT );  3. Alter a table to add a new column: ALTER TABLE Students ADD Email VARCHAR(100);  4. Drop a table: DROP TABLE Students;  5. Rename a table: ALTER TABLE OldTableName RENAME TO NewTableName;  DML (Data Manipulation Language) Examples: 1. Insert data into a table:  INSERT INTO Students (StudentID, FirstName, LastName, Age) VALUES (1, 'John', 'Doe', 20);  2. Update data in a table: UPDATE Students SET Age = 21 WHERE StudentID = 1;  3. Delete data from a table: DELETE FROM Students WHERE StudentID = 1;  4. Select data from a table: SELECT * FROM Students;  5. Select data with conditions: SELECT FirstName...