Tuesday, 10 December 2024

Gate 2025

topics pyq: Link

geeks: Link

COA 

Prog. I/O, Int. driven I/O Notes  ; DMA ; Cache Memory

Algo

Asymptotic Notations  Notes

DBMS

Compiler Design

Liveness Analysis Notes

C Programming: Operators

Engineering Mathematics

Linear Algebra Playlist

Wednesday, 30 October 2024

Saturday, 19 October 2024

codes of practical class

 1. assgn1

2. assgn2

3. assgn3


mylist = [2, 9, 11, 5, 18, 15]

print("List is: ",mylist)

print("Squares are:") 

for i in mylist:

print(i*i, end=" ")

    

print("\nOdd numbers from list are:") 

for i in mylist:

if i%2!=0:

print(i, end=" ")


print("\nMaximum number from list :") 

max=mylist[0]

for i in mylist:

if i>max:

max=i

print(max)