Hai all ,
i am so happy see you all once again
Right now IT market is having lot more openings
but remember on thing those are all for experienced people
Freshers who are trying to get a job in embedded systems its really difficult task
guys have a look on the market trend get ready with c and data structures and
linux commands and linux basic programming .then go to market and buy 8051
board do all the programs with this board and get ready to buy new arm9 board like ( friendly-arm , beagle board like that ) do some thing with these board and try for jobs .
damm sure you will place in some good embedded based company :)
For Exp People exp b/w 2 to 8 years
prepare c and data structures :D
then u will get good job yar :D
for interview questions please refer http://campusinterviewindia.com/
cheers /''\
u r s chaitu
Embedded Market Job Trends
Sunday, February 19, 2012
Labels:
ANDRIOD kernel,
ARM 9,
C language Ebooks,
campus interviews,
embedded interview questions,
embedded linux,
embedded linux interview questions,
embedded softwares,
embedded systems ebooks
what is the stack where it is used ? what is the use of the stack
Wednesday, December 15, 2010
1. Expression evaluation and syntax parsing
Many compilers use a stack Expression evaluation before translating into low level code.
Example (general)

what is the stack where it is used ? what is the use of the stack
Labels:
basics,
C Language,
embedded interview questions,
operating system interview questions
what is difference between macro and function? what is macro and what is funcution

what is difference between macro and function? what is macro and what is funcution
Labels:
campus interviews,
embedded interview questions
what is difference between array and stack and queue ? what is
You can think of a stack like a deck of cards. You can put down cards into a pile on your table one at a time, but if you want to draw cards, you can only draw them from the top of the deck one at a time. Unlike a queue, the first card to be put down is the last card to be used. This is known as first-in-last-out, or FILO (also called LIFO for last-in-first-out).
A queue is a first-in-first-out data structure. When you add an element to the queue you are adding it to the end, and when you remove an element you are removing it from the beginning.
A stack is a first-in-last-out data structure. When you add an element to a stack you are adding it to the end, and when you remove an element you are removing it from the end.
An array is data structure (type of memory layout) that stores a collection of individual values that are of the same data type. Arrays are useful because instead of having to separately store related information in different variables (named memory locations), you can store them—as a collection—in just one variable. It is more efficient for a program to access and process the information in an array, than it is to deal with many separate variables.
All of the items placed into an array are automatically stored in adjacent memory locations. As the program retrieves the value of each item (or "element") of an array, it simply moves from one memory location to the very next—in a sequential manner. It doesn't have to keep jumping around to widely scattered memory locations in order to retrieve each item's value.
Imagine if you had to store—and later retrieve—the names of all of the registered voters in your city. You could create and name hundreds of thousands of distinct variable names to store the information. That would scatter hundreds of thousands of names all over memory. An alternative is to simply create one variable that can will store the same information, but in sequential memory locations.

what is difference between array and stack and queue ? what is
Labels:
basics,
embedded interview questions,
embedded linux interview questions
what is difference between array and stack? what is array what is stack

what is difference between array and stack? what is array what is stack
Labels:
basics,
campus interviews,
embedded interview questions,
embedded linux interview questions,
linux interview questions
Difference between volatile and const?( constant)
VOLATILE, Normal this data type will be used to declare the variable for timer count & interrupt status because the value of this specific types can't be expected any time

Difference between volatile and const?( constant)
Labels:
basics,
campus interviews,
embedded interview questions