Posts

Python Unit-1 Lab Programs

 Python Unit-1 Lab Programs Program 1: Aim:  Write a python program to find the largest element among three Numbers Program: a=int(input("Enter a value :")) b=int(input("Enter b value :")) c=int(input("Enter c value :")) if((a>b)&(a>c)):     print("a is big",a) elif(b>c):     print("b is big",b) else:     print("c is big",c)   Program 2: Aim:  Write a python program for all prime numbers with in range. Program: min=int(input("Enter min number")) max=int(input("Enter max number")) for i in range(min,max):     count=0     for j in range(1,i+1):         if(i%j==0):             count+=1     if(count==2):         print(i)        ...

download google input tools

 Google Input tools Download google input tools for easy typing telugu letters for Telugu: https://bit.ly/4pLzjxU For other  https://bit.ly/49DDgi7

Article

\documentclass[12pt]{article} \title{IT WORKSHOP} \author{Y. Praveen Kumar \\ LBRCE  Assistant Professor } \date{\today} \begin{document} \maketitle{This article is about Computer science engineering students} \section{Introduction} This is first Section \subsection{part1} \paragraph{first} \subsection{part2} \paragraph{windows} \section{architecture} \paragraph{This is second section} \subsection{part3} \section{summary} \paragraph{This is third Section} \subsection{part4} \section{conclusion} conclusion of the project  \section{References} \end{document}

Latex table

  Table: \documentclass{article} \begin{document} \begin{center} \begin{tabular}{|c||c||c||c|}  \hline  Col1 & Col2 & Col2 & Col3 \\ [1.0ex]  \hline\hline  1 & 6 & 87837 & 787 \\ [1.0ex]  \hline  2 & 7 & 78 & 5415 \\[1.0ex]  \hline  3 & 545 & 778 & 7507 \\[1.0ex]  \hline  4 & 545 & 18744 & 7560 \\[1.0ex]  \hline  5 & 88 & 788 & 6344 \\ [1ex]  \hline \end{tabular} \end{center} \end{document}

Windows Installation

  Windows Installation  https://drive.google.com/file/d/1jD5D96mfU7YDTpgZ4Z8Dt1Qpg64LnAAs/preview?

WINDOWS INSTALLATION PDF

  TASK 3 https://drive.google.com/file/d/1wwSR1WJezom3MvNx9lS1UvUe0DsQ4vSi/preview?

CSE Whatsapp Group 2025-2029

  CSE Whatsapp group: https://chat.whatsapp.com/Il31qocBjN08IZmlB9u9VA
Image
 What are the cables connected to CPU and Monitor? A)        VGA(Video Graphics Ray) cable and power cable VGA (Video Graphics Ray) cable is another type of computer cable which is used for sending video signals and is used to link the monitor and the CPU of a computer. The VGA cable can also be used in HD televisions. All the information displayed on the monitor is coming from the VGA cable. There is a total of 15 pins in the plugin the cable, which have three rows containing 5 pins each. And the cable is easily fitted in the monitor and the other end is fixed in the CPU of a computer system. B)      Ethernet Cable The Ethernet cable is a type of computer network cable which is used for a wired network. The Ethernet cable is used to connect the switches, monitors, PCs to the LAN (Local Area Network). The length and durability of the Ethernet cable describe the quality of the connection. If the cable is too long and is not durab...
Image
Date: Aim : Identify the peripherals of a computer, components in a CPU and its functions. Draw the block diagram of the CPU along with the configuration of each peripheral and submit to your instructor. What is Computer? à a computer is an electronic device that manipulates information, or data. it has the ability to store, retrieve, and process data.   à you can use a computer to type documents, send email, play games, and browse the web. you can also use it to edit or create spreadsheets, presentations, and even videos. Generations of Computer? There are five generations 1) First Generation (1940-1956) •         These early computers used vacuum tubes as circuitry and magnetic drums for memory.  •         These were inefficient materials which generated a lot of heat. •         Comparatively larger in size as compared to present day computers. •    ...