Skip to main content

Paper Pattern For B.Sc. ACS - Advanced Computer Studies Class Islamia University Bahawalpur

Download Paper Pattern For B.Sc. Advanced Computer Studies ACS Class Islamia University Bahawalpur

The Islmia University of  Bahawapur
REVISED CURRICULUM of ADVANCED COMPUTER STUDIES (ACS)
For B.A / B.SC.EXAMINATION 2005 & ONWARDS

Paper Pattern For ACS, B.Sc. Advanced Computer Studies, Islamia University Bahawalpur
Paper Pattern For ACS, B.Sc. Advanced Computer Studies, Islamia University Bahawalpur

COURSE MARKS: 200

THEORY: 160
PRACTICAL & PROJECT: 40


ACS - Third Year (B.Sc Part-I)

Paper I, II and C++ practical will be offered in the third year 

ACS - Fourt Year (B.Sc Part-II)
Paper III. IV and project work will be offered in fourth year. 

Paper I, II, III and IV all have two sections each which carry equal mark.

THIRD YEAR
PAPER – I Introduction to information Technology 40
PAPER -II Programming using C++ 40
PROJECT PRACTICAL using C++ 20

FOURTH YEAR
PAPER -III Data Base Management system 40
PAPER-IV Introduction to Web Programming 40
PROJECT 20

ASSESSMENT METHOD

THEORY PAPERS FOR THIRD & FOURTH YEAR
Marks: 40 (Section A: 20 marks + Section B: 20 Marks)
Time : 2 hrs.
Total Question : 8
Question to be attempted : 4
Each paper shall consist of two sections: Section A and Section B. Each section shall
consist of four questions and student will be required to attempt from each section.

PRACTICAL using C++ (Offered in 3rd Year)
Marks : 20
Time : 90 minutes
Total Questions : 3
Question to be attempted :2
Writing programs on an answer sheet: 45 minutes (Marks: 7.5)
Editing, Compiling & Executing programs on a PC and via: 45 minutes (Marks: 7.5 + 5)
Solution of two question to be written on an answer sheet and then edited, compiled &
executed those Programs on a PC. Each question to be written carries 7.5 marks and via is
of 5 marks. Via will be related to the concerned C++ language.

PROJECT (Offered in 4 Year)
Marks : 20
Time : 90 minutes
Evaluation of the project work by Examiner is done as: Report Writing (7.5 marks) +
Coding (7.5 marks) +Viva (5 marks)
PROJECT (related to Data Base or Web Programming using Data Base) is assigned by the
department. Work is done extensively and completely in the said area but which has limited
scope. Four Students will work on a single project and will contribute equally during all the
stages of development life cycle.



Download Paper Pattern For B.Sc. Advanced Computer Studies ACS Class Islamia University Bahawalpur

Comments

Popular posts from this blog

What are Different Types of Input Devices With Examples

Topic: Different types of input devices of a computer system with examples, pictures and explanation:  Topics Covered are: Definition of Input Devices Functions of Input Devices ( How input devices work? ) Examples of Input Devices Pictures / Images of different input devices Different Examples of Input Devices With Description Keybboard Mouse Trach Ball Trackpad Joy Stick Light Pen Microphone Scanner Graphic Tablet ( Digitizer ) Digital Camera Touch Screen ( I/O Device / Dual Device - Perform Both Functions input + Output ) INPUT DEVICES ( Definition ) Input devices are used to enter data and instructions into computer memory from external world. Input Device is a hardware part of the computer that is used to enter data and instructions into computer memory. The examples of input devices include: Keyboard, Mouse , Track ball, Track Pad, Joy stick, Touch Screen, Light pen,   Scanner , Digital Camera, Microphone, Graphics tablet e...

Types Of Network Topology

Today, we will types of network topology . What is a Network Topology? Definition of Network topology is the shape of the network . It is the physical layout of connected devices in a network. It tells us how a network will look like. Network Topology ( Definition 2) : The way in which the connections are made among all the network entities is called the topology of the network. Network Topology ( Definition 3) :Network topology specifically refers to the physical layout of the network, e.g., the location of the computers and how the cable is run between them. Network Topology ( Definition 4) :The physical topology of a network refers to the configuration of cables, computers, and other peripherals. The characteristics of a network depend upon the network topology selected. types of network topology Explain different types of network Topology Different network topologies are as follows: 1. Bus Topology 2. Ring Topology 3. Star Topology 4. Tree Topolo...

Basic Structure of HTML Document

Basic Structure of HTML Document  The basic structure of an HTML document is given below: <HTML>         <HEAD>                  </HEAD>                 <BODY>                </BODY> </HTML> The above format shows that an HTML document starts with <HTML> tag and ends with </HTML> tag. It is also clear that an HTML document consists of two main sections:  Head Section Head section is used to specify a title of the web page, normally. There are some other uses of Head section too, like linking external style sheets and Java script code, etc. Head section starts with the <HEAD> tag and ends with the </HEAD> tag. <TITLE> tag is used to display a title of...