FirstRanker Logo

FirstRanker.com - FirstRanker's Choice is a hub of Question Papers & Study Materials for B-Tech, B.E, M-Tech, MCA, M.Sc, MBBS, BDS, MBA, B.Sc, Degree, B.Sc Nursing, B-Pharmacy, D-Pharmacy, MD, Medical, Dental, Engineering students. All services of FirstRanker.com are FREE

📱

Get the MBBS Question Bank Android App

Access previous years' papers, solved question papers, notes, and more on the go!

Install From Play Store

Download OU B.Com (Important Questions) B.Com (CBCS) (Hons) 3rd Semester Practical Question Bank

Download OU (Osmania University) B.Com (Bachelor of Commerce) (Important Questions) B.Com (CBCS) (Hons) 3rd Semester Practical Question Bank

This post was last modified on 27 January 2020

OU B.Com 2020 Important Question Bank || Osmania University (Important Questions)


FACULTY OF COMMERCE, OSMANIA UNIVERSITY

B.Com (Honours) (CBCS) III – Semester

Lab - Practical Question Bank

--- Content provided by‌ FirstRanker.com ---

MANAGEMENT INFORMATION SYSTEMS – Practical Question Bank

Time: 60 Minutes Record: 10

Skill Test: 15

Total Marks: 25

  1. Create a database named “College.mdb" and perform the following tasks: (For questions 1 to 10)

    --- Content provided by⁠ FirstRanker.com ---

    Create a table named “StudentInfo” having following table structure.
    Fieldname Datatype Description
    Rno Text Primary Key
    Name Text
    DOB Date/time
    Gender Text M/F
    Class Text BCOM
    Section Text GEN/HONOURS
  2. Insert at least 10 records and display the records in ascending order of their Name's.
  3. Prepare a query to display all the fields.
  4. Prepare a query to display only Rno, Name fields
  5. --- Content provided by​ FirstRanker.com ---

  6. Prepare a query to display all records in ascending order of the names.
  7. Prepare a form for the above table and insert 5 records through the form.
  8. Prepare a report consisting of the fields Rno, Name, Class.
  9. Display all the student details where gender is “M”.
  10. Prepare a query to display all records where the name begins with “A”.
  11. --- Content provided by‍ FirstRanker.com ---

  12. Display the students studying under HONOURS section.
  13. Display the students studying under GEN section.

www.FirstRanker.com

  1. Create a database named “Library.mdb" and perform the following tasks: (For questions from 11 to 20)
    Create a table named “Books” having following structure:

    --- Content provided by​ FirstRanker.com ---

    Fieldname Datatype Description
    BookId Text Primary Key
    BookName Text
    Author Text
    Year Date/Time
    Publisher Text TMH/OXFORD
    Price Currency
    Remarks Memo
  2. Insert at least 10 records and display the records in descending order of their price.
  3. Prepare a query to display onlyfields includingBookName, Author and Publisher name. Save the query as "MyQuery".
  4. Prepare a query to display all records where the price of the book is more than 500.
  5. Prepare a form for the table.
  6. --- Content provided by​ FirstRanker.com ---

  7. Insert 5 records through the form.
  8. Display the records whose publisher is ‘TMH’
  9. Sort the records in the ascending order of the Price.
  10. Display the records in the ascending order of the Year published.
  11. Generate a report consisting of the fields BookId, BookName, Author.
  12. --- Content provided by‍ FirstRanker.com ---

  13. Delete the records whose publisher is “TMH”.

www.FirstRanker.com

  1. Create a database named “Employee.mdb" and perform the following tasks: (For questions from 21 to 30)
    Create a table named “EmpSalaryTable” having following structure:
    Fieldname Datatype Description
    EmployeeId Text Primary Key
    EmployeeName Text
    BasicSalary Currency
    DA Currency
    HRA Currency
    TA Currency
    PF Currency
    GrossSalary Currency
    NetSalary Currency
  2. --- Content provided by‍ FirstRanker.com ---

  3. Insert at least 10 records into the EmployeeId, EmployeeName fields and display the records in ascending order of EmployeeName's.
  4. Prepare a query to Calculate the DA as 30% of BasicSalary.
  5. Prepare a query to Calculate the HRA as 20% of BasicSalary.
  6. Prepare a query to Calculate the TA as 10% of BasicSalary.
  7. Prepare a query to Calculate the GrossSalary as BasicSalary+DA+TA+HRA.
  8. --- Content provided by FirstRanker.com ---

  9. Prepare a Query to Calculate the PF as 12% of BasicSalary.
  10. Prepare a Query to Calculate the NetSalary as GrossSalary-PF.
  11. Sort the employee details in the increasing order of NetSalary.
  12. Generate a form to display the details of all the employees.
  13. Generate a report to display the fields EmployeeId, EmployeeName,BasicSalary, GrossSalary and NetSalary.
  14. --- Content provided by FirstRanker.com ---

www.FirstRanker.com

  1. Create a database named “Marks.mdb" and perform the following tasks:(for questions from 31 to 40)
    Create a table named “StdMarksTable" having following structure:
    Fieldname Datatype Description
    StudentId Text Primary Key
    StudentName Text
    Marks1 Number
    Marks2 Number
    Marks3 Number
    Total Number
    Average Number
    Result Number Pass/Fail
  2. Insert at least 10 records and display the records in ascending order of their StudentName's.
  3. --- Content provided by‌ FirstRanker.com ---

  4. Display the student details in the deceasing order of Marks1.
  5. Prepare a query to Calculate the Total as sum of Marks1,Marks2, Marks3.
  6. Prepare a query to Calculate the Average.
  7. Prepare a query to Calculate theResult taking your own criteria.
  8. Prepare a Query to display the fields StudentId, Total, Average, Result.
  9. --- Content provided by‍ FirstRanker.com ---

  10. Prepare a Query to display all the students in the ascending order of their names.
  11. Sort the students in the ascending order of their totals.
  12. Generate a form to display the details of all the students.
  13. Generate a report to display the students details who have passed.

www.FirstRanker.com

--- Content provided by⁠ FirstRanker.com ---

  1. Create a database named “CustOrders.mdb" and perform the following tasks:(for questions from 41 to50)
    Create a tables with the following structure
    Table name: "CustomerTable"
    Fieldname Datatype Description
    CustomerId Text Primary Key
    FirstName Text
    LastName Text
    Street Text
    City Text
    Zipcode Text
    Email Text
    Phone Text

    Table name: "Orders Table"

    --- Content provided by‍ FirstRanker.com ---

    Fieldname Datatype Description
    OrderId Text Primary Key
    CustomerId Text
    Price Number
    OrderDate Date/time
    Qty Number
  2. Create the tables with the above mentioned structure.
  3. Insertatleast5 records in Custome Table.
  4. Create a query to display all the fields in CustomerTable
  5. Create a one to many relationship between the two tables.
  6. --- Content provided by FirstRanker.com ---

  7. Insertatleast 10 records in the Orders Table
  8. Prepare a query to display the fields Id, FirstName, LastName, Phone from the CustomerTable
  9. Prepare a query to display all the fields in the Orders Table
  10. Prepare a query to display the fields Id, FirstName, LastName, OrderId, Qty from the two tables.
  11. Prepare a query to display the fields OrderID, CustomerID, Qty from Orders Table where Qty> 10.
  12. --- Content provided by‌ FirstRanker.com ---

  13. Prepare a query to display all the customers whose FirstName begins with the character “A”.

www.FirstRanker.com



--- Content provided by‍ FirstRanker.com ---

This download link is referred from the post: OU B.Com 2020 Important Question Bank || Osmania University (Important Questions)