Sei sulla pagina 1di 7

Sheet1

1ST SEM TC-PP AND SOFT SKILL


PRACTICAL NO. PAGE NO.
1 TO 4 161 TO 167
6 171
8 175
14 to 15 187 & 189
18 195

2ND SEM WORKSHOP PRACTICE


PRACTICAL NO. PAGE NO.
1 153 TO 159
2 160 TO 167
3 169 TO 177
4 179 TO183
3RD SEM COMPUTER PROGRAMMING
PRACTICAL NO. PAGE NO.

1
69 (Q.9)

2
85 and 86 (Q.3)

3
86 and 87 (Q.5)

4
102(Listing 11)

5
103(listing 13) to 104 and 105 (listing 115)

6
81 to 83 listing(6),listing(7),listing(8),listing(9),

7
52 to 53 (listing 5)

Write a program to calculate area of circle


Practical 8 using function
#include <stdio.h>
#include <conio.h>
const float PI = 3.1415927;
float area(float radius);
float circum(float radius);
void main()
{
float radius;
clrscr();
printf("Enter radius: ");
scanf("%f", &radius);

Page 1
Sheet1
printf("Area : %.3f\n", area(radius));

getch();
}
/* return area of a circle */
float area(float radius)
{
return PI * radius * radius;
}

Write a program to display reverse a number


Practical 09 using for loop

#include<stdio.h>
#include <conio.h>
int main()
{
int a, s;
printf("Enter value of a: ");
scanf("%d",&a);
for(s=0;a>0;a=a/10)
{
s = s*10;
s = s + (a%10);
}
printf("Reverse number is: %d",s);
return 0;
}

Write a programme to find greatest and


smallest of three numbers using decision
Practical 10 structure- if, if else,nested if etc
#include <stdio.h>
#include <conio.h>
int main()
{
int a,b,c;
printf("Enter 3 numbers: \n");
scanf("%d %d %d",&a,&b,&c);
if(a>=b)
{
if(a>=c)
printf("%d is largest",a);
else
printf("%d is largest",c);
}

Page 2
Sheet1
else if(b>=c)
printf("%d is largest",b);
else
printf("%d is largest",c);
return 0;
}

DIGITAL ELECTRONICS AND INDUSTRIAL


4TH SEM MEASUREMENT

a) Verification of the Truth Table and Boolean


Expression for NOT, AND, OR, NAND, NOR,
EX-OR and EX-NOR Gate b) To Verify NAND
1 and NOR gate as universal logic gate
Verification of Boolean Theorems and De
2 Morgan’s Theorem

3 To Design and Realize Adder and Subtractor


To Study of Arithmetic Operation and Logical
4 Operation using IC74181
To Verify the Operation of Multiplexer IC 74151
5 and Demultiplexer IC 74155

6 To Design and Implement 4 Bit Ripple Counter


To Verify SISO Shift Register Performing Right
7 Shift Operation
To Verify the Operational Features of ADC – IC
8 0809/IC 0808 and DAC – IC 0800

5TH SEM MICROCONTROLLER (PART – I )


PRACTICAL NO. PAGE NO.

1
149

2
153

3
156

4
158
208 To 217 ( IN TEXTBOOK OF SUBJECT
5
T04052)

ELECTRONICS INSTRUMENTS & MEASUREMENTS AND POWER ELECTRONICS


6TH SEM (VI SEM)
Part -I
PRACTICAL NO. PAGE NO.

Page 3
Sheet1

1-5

9-13

3
14-15

4
19-26

5
27-30
Part -II
PRACTICAL NO. PAGE NO.
1 33-36
2 40-41

3
44-51

4
51-56

5
62-65
6 66-67

7TH SEM Computer Hardware & Networking & Seminar


PRACTICAL NO. Page No.

1 2 To 5

2 5 To 6

3 8 To 9

4 11 To 12

5 7 To 8
6 16 To 20

7 22 To 25

Page 4
Sheet1

COMPUTER PROGRAMMING
PRACTICAL NAME
Write a program to display sum of first n numbers
specified by users using for loop
Write a program to sort array elements in
ascending order
Write a program to create two matrices of 3 * 3
size and perform addition
Write a program to calculate factorial of any given
number using recursion
Write a program to demonstrate the use of call by
reference and call by value functions

Write a program to demonstrate the use of Strlen


(), strcpy (), strcat () and strcmp () functions

Write a program for demonstrte the use of switch


case statement

Page 5
Sheet1

CROCONTROLLER (PART – I )
PRACTICAL NAME
Write a Program for Addition of two 8 bit numbers
in Microcontroller
Write a Program for Subtraction of two 8 bit
numbers in Microcontroller
Write a Program for Multiplication of two 8 bit
numbers in Microcontroller
Write a Program for Division of two 8 bit numbers
in Microcontroller
Develop a Programme to Interface DC motor
control

EASUREMENTS AND POWER ELECTRONICS

ELECTRONIC INSTRUMENTS & MEASUREMENTS


PRACTICAL NAME

Page 6
Sheet1

Draw the Block Diagram of Function Generator available


in your Laboratory. Identify, Test and Verify Function of
each Block and Outputs as per Specifications

To Study and Draw the Block Diagram of CRO and


Explain the Function of each Block. Draw the Diagram of
Cathode Ray Tube (CRT) and Write the Operation of
C.R.T. a) CRT Vertical and Horizontal Amplifiers b) Time
base Circuitry c) Triggering d) Sweep Generator

To Study and Draw the Block Diagram of Power Supply.


Identify the major Components, Sections and Measure
Voltages
To Measurement of R.L.C and Quality Factor using LCR,
Q Meter
To Measure Frequency and Phase Angle using CRO
with the help of Lissagous Pattern
POWER ELECTRONICS
PRACTICAL NAME
To Study and Plot the V-I characteristic of SCR
To Study and Plot V-I characteristics of IGBT
To Study the Effect of variation of R, C in R and RC
Triggering Circuits on Firing Angle of SCR.
To study and Draw the Output Waveforms Full-Wave
Controlled Rectifier (mid-point configuration) with R & RL
load
Demonstration on a Three Phase Half Wave Controlled
Rectifier
Demonstration on a Single Phase Inverter

er Hardware & Networking & Seminar


Name of Experiment
Identification and study of different types of
switches,Indicator and connector available on front
and rear side of PC.
To install and configure various types of display
adapter
Installation,Configuration,Possible problem and
troubleshooting Modem
To Add/Remove devices using Hardware Wizard in
LAN
Installation,checking,possible problems and
troubleshooting of Scanner
To configure the network for an Internet Server
To install and configure LINUX operating system in
a PC

Page 7

Potrebbero piacerti anche