Archive

Posts Tagged ‘Engineering Syllabus’

MDU Syllabus | F-Scheme | BME – 213- F HUMAN ANATOMY AND PHYSIOLOGY LAB

August 16th, 2010 No comments

BME – 213- F HUMAN ANATOMY AND PHYSIOLOGY LAB

LIST OF EXPERIMENTS

1. To study simple and compound microscope.

2. To prepare the blood film of your own blood. Stain it and study the blood picture and identify the various blood cells.

3. To study blood composition (TLC, DLC, Eosinophil, RBC)

4. To study estimation of Erythrocyte Sedimentation Rate (ESR).

5. Estimation of hemoglobin percentage in given sample by Haemometer.

Read more…

MDU Syllabus | F-Scheme | BME – 207- F BIOMEDICAL ENGINEERING LAB

August 16th, 2010 No comments

BME – 207- F BIOMEDICAL ENGINEERING LAB

LIST OF EXPERIMENTS

1. Introduction to different type of electrodes – surface electrodes, suction electrodes, floating electrodes, disposable electrodes, needle electrodes and microelectrodes.

2. Recording of ECG waveform from 12 limb leads and the interpretation of ECG waveform.

3. Demonstration of sphygmomanometer and stethoscope, measurement of systolic and diastolic arterial blood pressure using sphygmomanometer.

4. To study the placement of EEG electrodes, recording of EEG waveform and its interpretation

5. To study the placement of EMG electrodes, recording of EMG waveform and its interpretation.

Read more…

MDU Syllabus | F-Scheme | BME – 203 -F BIOCHEMISTRY LAB

August 16th, 2010 No comments

BME – 203 -F BIOCHEMISTRY LAB

LIST OF EXPERIMENTS

1. Carbohydrates: Estimation of Blood Glucose.

2. Estimation of total protein, albumin and globulin.

3. Estimation of Blood Urea.

4. Estimation of Total serum Cholesterol.

5. Estimation of urine for albumin test.

Read more…

MDU Syllabus | F-Scheme | BME – 201 F BIOCHEMISTRY

August 16th, 2010 No comments

BME – 201 F BIOCHEMISTRY

SECTION A

Unit-1. Introduction to Biochemistry: Cell, eukaryotic cell structure, functional role of each organelle, sub cellular fractionation: Differential centrifugation, transport of substances across biological membrane functions.

SECTION B

Unit-2. Enzymes (Proteins): Chemical nature of enzymes (Proteins), general properties of enzymes, diagnostic enzymes, spectrophotometric measurement of enzymes (proteins) isolation method study, enzyme biotechnology.

Nucleic Acids: Composition and functions of nucleic acids (A brief account) genes, outlines of DNA structure, recombinant DNA and its applications.

Read more…

MDU Syllabus | F-Scheme | EE-253-F ELECTRONICS-I

August 11th, 2010 No comments

EE-253-F ELECTRONICS-I

SECTION A

SEMICONDUCTOR MATERIALS & DIODES

Review of semiconductor materials & properties. The PN Junction, introduction to semiconductor diode theory. Diode circuits: DC Analysis & Models, AC Equivalent circuits, other diode types-solar cell, photodiode, light – emitting diode, Schottky Barrier diode, Zener diode, temperature effects, understanding Manufacturer’s specifications.

DIODE CIRCUITS

Design of rectifier circuits’ half wave Rectification, full wave rectification, filter, ripple voltage & diode current voltage Doubler circuit, Zener Diode circuits, clipper & clamper circuits, Multiple – diode circuits, photodiode & LED circuits.

SECTION B

THE BIPOLAR JUCTION TRANSISTOR

Basic bipolar junction transistor, Transistor Structures, NPN Transistor: forward active Mode Operation, PNP Transistor: Forward – active mode operation, circuit sytmbols & conventions, current-voltage characteristics, Non ideal Transistor leakage currents & Breakdowns, DC Analysis of Transistor circuits, common-Emitter circuits, Load Line & Models of Operation, common Bipolar circuits: DC analysis, Basic Transistor Applications-Switch, Amplifier, Bipolar Transistor Biasing-single Base Resistor Biasing, voltage Divider Biasing 7 bias stability, integrated circuit Biasing, Multistage circuits.

Read more…

MDU Syllabus | F-Scheme | BME – 215-F HUMAN ANATOMY AND PHYSIOLOGY

August 11th, 2010 No comments

BME – 215-F HUMAN ANATOMY AND PHYSIOLOGY

SECTION A

Human Anatomy: Study of Cell structure and different types of tissues in human body with their functions.

SECTION B

Structure and Physiology I: Digestive System- different organs, digestion & absorption of food, Excretory System: Structure and function, Formation and composition of Urine, Reproductive System: Male and Female, human embryonic membranes and collection of stem cells, Sensory Organs – Ear, Eye and skin. Physiological aspects of skin resistance.

Read more…

MDU Syllabus | F-Scheme | BME – 205-F INTRODUCTION TO BIOMEDICAL ENGINEERING

August 11th, 2010 No comments

BME – 205-F INTRODUCTION TO BIOMEDICAL ENGINEERING

SECTION A

Generalized Instrumentation Systems: Medical instrumentation system, General properties of input transducers, Static and dynamic characteristics: First and second order characteristics, time delay, error free Instrument, Transfer functions, design criteria, generalized instrument specifications.

SECTION B

Displacement and Pressure Measurement: Wheatstone bridge, Resistive-potentiometers, strain gauges, LVDT, capacitive type, force type transducer, piezoelectric transducers, types of diaphragms, bellows, and bourdon tubes etc.

Temperature Measurement: Thermistor and its characteristics, linearization of thermistor, thermocouple and its properties, radiation thermometry, fiber optic sensor, Optical measurement.

Read more…

MDU Syllabus | F-Scheme | CSE 214 F Internets Lab.

July 20th, 2010 No comments

CSE 214 F Internets Lab.

Exercises involving:

Sending and receiving mails.

Chatting on the net.

Using FTP and Tel net server.

Using HTML Tags (table, form, image, anchor etc.).

Making a Web page of your college using HTML tags.

Note: At least 10 exercise to be given by the teacher concerned.

MDU Syllabus | F-Scheme | IT-206 F C ++ Programming Lab.

July 20th, 2010 1 comment

IT-206 F C ++ Programming Lab.

Q1. Raising a number n to a power p is the same as multiplying n by itself p times. Write a function called power ( ) that takes a double value for n and an int value for p, and returns the result as double value. Use a default argument of 2 for p, so that if this argument is omitted, the number will be squared. Write a main ( ) function that gets values from the user to test this function.

Q2. A point on the two dimensional plane can be represented by two numbers: an X coordinate and a Y coordinate. For example, (4,5) represents a point 4 units to the right of the origin along the X axis and 5 units up the Y axis. The sum of two points can be defined as a new point whose X coordinate is the sum of the X coordinates of the points and whose Y coordinate is the sum of their Y coordinates.

W rite a program that uses a structure called point to model a point. Define three points, and

have the user input values to two of them. Than set the third point equal to the sum of the other two, and display the value of the new point. Interaction with the program might look like this:

Enter coordinates for P1: 3 4

Enter coordinates for P2: 5 7

Coordinates of P1 + P2 are : 8, 11 Q 3. Create the equivalent of a four function calculator. The program should request the user to enter a number, an operator, and another number. It should then carry out the specified arithmetical operation: adding, subtracting, multiplying, or dividing the two numbers. (It should use a switch statement to select the operation). Finally it should display the result. When it finishes the calculation, the program should ask if the user wants to do another calculation. The response can be ‘Y’ or ‘N’. Some sample interaction with the program might look like this.

Enter first number, operator, second number: 10/ 3 Answer = 3.333333

Do another (Y/ N)? Y

Enter first number, operator, second number 12 + 100

Answer = 112

Do another (Y/ N) ? N Q4. A phone number, such as (212) 767-8900, can be thought of as having three parts: the area code (212), the exchange (767) and the number (8900). Write a program that uses a structure to store these three parts of a phone number separately. Call the structure phone.

Create two structure variables of type phone. Initialize one, and have the user input a number

for the other one. Then display both numbers. The interchange might look like this:

Enter your area code, exchange, and number: 415 555 1212

My number is (212) 767-8900

Your number is (415) 555-1212

Read more…

MDU Syllabus | F-Scheme | CSE- 212 F Database Management Systems Lab

July 20th, 2010 No comments

CSE- 212 F Database Management Systems Lab

I. Create a database and write the programs to carry out the following operation:

1. Add a record in the database

2. Delete a record in the database

3. Modify the record in the database

4. Generate queries

5. Generate the report

6. List all the records of database in ascending order.

Read more…