AKTU B.Tech Basic Electrical Engineering(BEE) Notes

Basic electrical engineering (BEE) is one of the important and intresting subject of B.tech 1st year engineering student. This basic electric engineering course is common to first-year branches of studying. At the end of the course the student is expected to know the fundamental of electrical engineering as well as the practical implementation of fundamental […]

AKTU B.Tech Basic Electrical Engineering(BEE) Notes Read More »

B.Tech Programming for Problem Solving (PPS) Notes

Programming for Problem Solving(PPS) is one of the important and intresting subject of B.tech engineering student of 1 st Year. In this subject we study about Introduction to components of a computer system: disks, primary and secondary memory, processor, operating system, compilers, creating, compiling and executing a program etc., Number systems Introduction to Algorithms: steps to

B.Tech Programming for Problem Solving (PPS) Notes Read More »

B.Tech Essential of Information Technology (EIT) Notes

Essential of infoformation and technology (JAVA) is one of the important and intresting subject of B.tech engineering student those pursuing from IT branch. Basically in ” EIT ” we learn about “JAVA” programming language. Java is a programming language and computing platform first released by Sun Microsystems in 1995. It has evolved from humble beginnings

B.Tech Essential of Information Technology (EIT) Notes Read More »

Variable in C

Variable is like a container (storage space) with a name in which you can store data. It is a way to represent memory location through symbol so that it can be easily identified. The syntax to declare a variable is: Data type variable_name; The example of declaring the variable is given below: int a;float b;char

Variable in C Read More »