Introduction to arrays What are the single dimension arrays? Arrays are the consecutive group of memory locations that have same name of same data types. In programming, arrays are used to “group” the data items of same type. SO rather Read More …
what are the row spaces, column spaces and null spaces in Linear Algebra?
Introduction to row spaces, columns spaces and null spaces For any given matrix ‘A’ of order mxn, there are three types of spaces associated to them: row(A), col (A), and null (A). These spaces are linked with the solution of Read More …
Serial Temperature Sensor Project using Arduino

Abstract Serial Temperature Sensor Project using Arduino. In this project we are going to design a serial temperature sensor which is a part of LM335 range of sensors from national semiconductors. It ranges from -40°C to 100°C (-40° F to Read More …
What are the even and odd functions: Examples

Introduction to even and odd functions In this article you will learn about what are the even and odd functions? In this article we have described with examples to identify either a given function is even or odd. Any function Read More …
How do you use classes and objects in C++ programming?
Introduction to classes How do you use classes and objects in C++ programming? There are generally two categories of programming: one is procedural and the second one is object oriented programming (OOP). In procedural programming, the concept of procedures or Read More …
Design of Traffic Light Control system using Arduino

Design of Traffic Light Signals System on Arduino ABSTRACT Design of Traffic Light Control system using Arduino. In this project we will be using a set of lights and a push button. It will direct us for the crossing of Read More …
Arduino Project: Send Command with Serial Communication

Abstract In this project we have described in detail about Arduino Project: Send Command with Serial Communication. After Implementing this project you will be able to use serial communication. In this project we have shown that how we can send Read More …
Arduino Project: LED Fire Effect

In this article we have described about Arduino Project: LED Fire Effect. As the name suggests, the purpose of this project is to give a stimulation of fire through LEDs by using Arduino. Now the question arises what makes this Read More …
Interfacing of seven segment display with pic16F877A microcontroller

Introduction Write a program forInterfacing of seven segment display with pic16F877A microcontroller using mikroC Pro. In this tutorial, I will guide you how to create a first project on mikroC Pro software for designing a counter using PIC16F877A microcontroller. First Read More …
what is the scope of a variable? How you define the lifetime of local and global variables in programming?
Scope of a variable what is the scope of a variable? The scope of a variable can be defined as the accessibility of a variable in the program. It means whenever a variable is defined in a program, it is Read More …