Dual +-5V Power Supply Unit
Simple +- 5v Power Supply Unit for different projects. Can be used directly with AC main no need for battery. You can downlo...

Simple +- 5v Power Supply Unit for different projects. Can be used directly with AC main no need for battery. You can downlo...
5v Power Supply Unit for beginners: Whenever someone start any project,first hurdle comes in form of Supply Unit suitable for it. Here w...
KhodalDham,Rajokt,Gujrat,India- Couple Entry Counting System Design presentation given by Er. Ravi Kant Details: First of all tha...
Controlling Stepper motor using switches is shown here.This simulation is good technique which can be used to detect performance of your ...
Concrete understanding of Operating System concepts is required to design/develop smart applications. Our objective is to educate the reade...
Sequence of events: Foreground code is running, interrupts are enabled Interrupt event sends an interrupt request to the CPU After co...
What is difference between the Process and the thread ? Process:- An executing instance of a program is called a process. Some operating s...
An amplifier is a circuit which can produce an output voltage, which is the product of input voltage with a value called voltage gain. An o...
When should unions be used? Why do we need them in Embedded Systems programming? Unions are particularly useful in Embedded programming ...
Q. What does the keyword const mean? What do the following declarations mean? const int a; int const a; const int *a; int * const a; int ...
Dangling Pointer : Dangling pointers in computer programming are pointers that do not point to a valid object of the appropriate type. Da...
A. What are volatile variables? Where we should use? A volatile variable is one that can change unexpectedly. Consequently, the compiler ca...
What is qualifiers In Embedded C Programming? Qualifiers defines the property of the variable. Two qualifiers are const and volatile. The ...
What is Storage class? Explain with example The storage class determines the part of memory where storage is allocated for an object (pa...
A. Program to Reverse a single linked list Node *Reverse (Node *p) { Node *pr = NULL; while (p != NULL) { Node *tmp = p->ne...
C Programming Questions Part - I A. Write a macro for set and reset, swap. #define SET_BIT( _X_, _NO_ ) ( 1<<(_X_-1)) | _NO_ #...
We have started series of C programming Q&A for job interview for freshers.Computer / IT Engineering Professionals and Students alike will be benefited.We recommend our user to go through pre...
We have started series of C programming Q&A for job interview candidates.Engineering Professionals and students alike will be benefited.We recommend our user to go through previous post to enha...
We have chosen Java Oracle J2EE, J2SE, Net-beans, JVM ( Java Virtual Machine ) as our readers choice.We have created Objective Type Multiple Answer Question Collection that are frequent in job inte...
Here we have collected frequently asked question in job interviews.We have chosen Java as our readers choice.You will find these helpful.We encourage our Readers to send in their suggestion. If re...
Technology is always being the vital part of evolution either mobile phones or computer all are the part of it. Electronics have made things so easy and reliable for human being s. very few schools in...
A detailed and complete knowledge guide for fresher's to crack their interviews in Embedded Programming. Looking for a job contact <a href="http:/celebratejobs.com/>celebratejobs</a&...
It was very useful for me. Keep sharing such ideas in the future as well. This was actually what I was looking for, and I am glad to came here! Thanks for sharing the such information with us.
Presenting Stepper motor driver , programming done on Atmega32 micro-controller . Can be used with any accessories and any add on ,and can be inte... Readmore
....The Monster.... Ooopssssssss What is this??????? Do it looks like Monster .............. may be Octopus... Don't worry it is friendly on... Readmore
Servo ControllerServo controller ,by using simple logic,can be used for making joy stick type Robotic Arm Joy Stick Arm Beautiful concept..... Readmore
Robotics camp was organised in OM Shanti College, Rajkot, Gujarat,India, By our company Electro Robotech. Our Mentor has something to say and ... Readmore
Robotics camp was organised in OM Shanti College, Rajkot, Gujarat,India, By our company Electro Robotech. One of the groups Road Racer explains ... Readmore
Robotics camp was organised in OM Shanti College, Rajkot, Gujarat,India, By our company Electro Robotech. One of the groups Star Striker ... Readmore
Robotics camp was organised in OM Shanti College, Rajkot, Gujarat,India, By our company Electro Robotech. From dais our manager is shar... Readmore
This robot vehicle uses a light sensor to follow a color boundary on a smooth surface, such as the thick black line on the Test Pad included with t... Readmore
EXhibition AT NSIC,Rajkot,GUJ,INDIA. --- This was our Transporter and Distributor of our Pamphlets.(See... Readmore
This is Automatic tube painter,just insert the tube and rings will be painted,It will not just save labour cost but increase production. This was ... Readmore
The operation of a DC motor is dependent on the workings of the poles of the stator with a part of the rotor, or armature. The stator contains an... Readmore
Robo display-Here are some work done by student from high school students involved in project work at NSIC,Rajkot,Gujrat. Programmed Robots: ... Readmore
Servo Application In Robotics Series-1 Servo Application In Robotics 2 Turtle Robot fighting each other Light activator Robots Lin... Readmore
A robotic arm is a type of mechanical arm, usually programmable, with similar functions to a human arm; the arm may be the sum total of the mechan... Readmore
Flow-code is very good simulation software for variety of micro-controller families.IF you need sample codes working manual or step ... Readmore
We have started series of C programming Q&A for job interview for freshers.Computer / IT Engineering Professionals and Students alike will be... Readmore
We have started series of C programming Q&A for job interview candidates.Engineering Professionals and students alike will be benefited.We reco... Readmore
We have chosen Java Oracle J2EE, J2SE, Net-beans, JVM ( Java Virtual Machine ) as our readers choice.We have created Objective Type Multiple Answer... Readmore
Here we have collected frequently asked question in job interviews.We have chosen Java as our readers choice.You will find these helpful.We encoura... Readmore
We have started series of C programming Question bank for job interview candidates.Engineering Professionals and students alike will be benefited.W... Readmore
1. We can insert pre written code in a C program by using #read #get #include #put Answer: Option 3 2. Differe... Readmore
Atmel Studio 7 is the integrated development platform (IDP) for developing and debugging Atmel® SMART ARM®-based and Atmel AVR® microcontroller (MC... Readmore
The basics of the Visual Studio 2012 for Windows Desktop Integrated Development Environment (IDE) for writing, running and debugging your applicat... Readmore
A photo-resistor or light-dependent resistor (LDR) or photocell is a light-controlled variable resistor. The resistance of a photo-resistor decreas... Readmore
Questions:What potential problems can arise from typecasting a base class pointer into a derived class pointer so that the derived class's memb... Readmore
Questions: Why is Turbo C++ not able to find any of my #include files?Answers: The compiler searches for include files in the Turbo C++ Include Dir... Readmore
This post is for beginners who are either trying to use Turbo C/C++ for programming. Some frequently encountered problem and theirs solution in fo... Readmore
1. How will you change the value of a constant variable in C? Answer: Constant can be changed by using the pointer. Initialize a pointer to point t... Readmore
1. What are the differences between Arrays and Linked List Answer:- Arrays and Linked list both are list data structures used for maintaining a li... Readmore
1. What is the purpose of main() function? Answer:-main() is the user-defined function. main() is the first function in the program, which gets cal... Readmore