Difference between revisions of "Interview Preparation Articles"

From Embedded Systems Learning Academy
Jump to: navigation, search
(Created page with "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 arti...")
 
Line 5: Line 5:
 
*  [[Volatile Variable | What is a '''volatile''' variable?]]
 
*  [[Volatile Variable | What is a '''volatile''' variable?]]
 
*  [[Meaning of Static | What is a '''static''' keyword in C/C++?]]
 
*  [[Meaning of Static | What is a '''static''' keyword in C/C++?]]
 +
 +
<br/>
  
 
<br/>
 
<br/>
Line 14: Line 16:
 
<br/>
 
<br/>
 
== Miscellaneous Topics ==
 
== Miscellaneous Topics ==
=== Bit Structures ===
+
=== Bit Fiddling ===
 +
*  [[Interview Preparation Bit Fiddling|Bit Fiddling]]
 
*  [[Bitmasking Tutorial]]
 
*  [[Bitmasking Tutorial]]
 
*  [[Bit Structures | Bit Structures and Unions]]
 
*  [[Bit Structures | Bit Structures and Unions]]

Revision as of 22:16, 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



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 :


Miscellaneous Topics

Bit Fiddling