Posts

Showing posts from October, 2022

myweb

Image
public interface Department{ myweb links: mylink Hobbies: Sketches The Girl... Small Unwonderful Story Programming Languages: C++ JAVA HTML Something: Sybsc computer science: sem 4, Questions paper some c programs file handling in c File Handling simple concept & programs microcontroller programs (electronics) Raspberry pi & Arduino programs Data Structure in c: Linear data structure SEARCHING AND SORTING Link List Opearations STACK & QUEUE NON-linear Data Structure: - BINARY SEARCH TREE - Implement Graph as Adjacency matrix and Adjacency list - BINARY SEARCH TREE ASSIG...

Python Assignment Programs

 Python Assignment Programs Assignment 1: # Assignment 1 Set A # Q.1 Python Program to Calculate the Area of a Triangle length = int(input("enter the length:")) breadth = int(input("enter the breadth:")) area = 1/2 * length * breadth print("the area of rectangle is :",area) OUTPUT: enter the length:3 enter the breadth:5 the area of rectangle is : 7.5 # Assignment 1 Set A # Q.2 Python Program to Swap two Variable x = 5 y = 10 # To take inputs from the user x = input('Enter value of x: ') #y = input('Enter value of y: ') # create a temporary variable and swap the values temp = x x = y y = temp print('The value of x after swapping: {}'.format(x)) print('The value of y after swapping: {}'.format(y)) OUTPUT: Enter value of x: 2 Enter value of y: 4 The value of x after swapping: 4 The value of y after swapping: 2 # Assignment 1 Set A # Q.3 Python program to generate random number import random print(random.randint(0,100)) ...