Difference between revisions of "Interview Preparation Articles"

From Embedded Systems Learning Academy
Jump to: navigation, search
Line 16: Line 16:
 
FreeRTOS is a real-time OS that has many ports for various different controllers.  This is a great system to learn about because it gives you the fundamental knowledge of an operating system while making it incredibly easy to learn the material.  Here's a must-read tutorial :
 
FreeRTOS is a real-time OS that has many ports for various different controllers.  This is a great system to learn about because it gives you the fundamental knowledge of an operating system while making it incredibly easy to learn the material.  Here's a must-read tutorial :
 
*  [[ FreeRTOS Tutorial | '''FreeRTOS''' Tutorial]]
 
*  [[ FreeRTOS Tutorial | '''FreeRTOS''' Tutorial]]
 +
 +
=== Other OS Topics ===
 +
*  [[Interview Preparation OS Synchronization Primitives|Synchronization Primitives - Mutexes, Spinlocks, Queues etc.]]
 +
*  [[Interview Preparation OS Common Problems|Common Problems in Multitasking OS]]
  
 
<br/>
 
<br/>

Revision as of 22:40, 7 July 2013

Interview preparation requires proficient knowledge of C/C++. This article has just been recently written (July 2013) and will be elaborated soon. The hope is that this article will be "one-stop-shop" for most common C/C++ interview questions.


Frequently Asked Topics


C++ Object Oriented Topics


Operating Systems Topics

FreeRTOS Tutorial

FreeRTOS is a real-time OS that has many ports for various different controllers. This is a great system to learn about because it gives you the fundamental knowledge of an operating system while making it incredibly easy to learn the material. Here's a must-read tutorial :

Other OS Topics


Miscellaneous Topics

Bit Fiddling