Embedded System Interview

Thứ Tư, 22 tháng 4, 2020

Defensive Programming

tháng 4 22, 2020 0
General guidelines:Here we will present the more general guidelines to be followed. 1 - Treat all warnings as compiling errors. Increase the warning...
Read More

Thứ Ba, 3 tháng 3, 2020

Thứ Hai, 2 tháng 3, 2020

Properties of common sorting algorithms

tháng 3 02, 2020 0
The most common sorting algorithms are: - Insertion Sort - Bubble Sort - Selection Sort - Merge sort - Quick Sort Insertion Sort This is used when:...
Read More

Chủ Nhật, 1 tháng 3, 2020

Big-O complexities

Algorithms complexities

tháng 3 01, 2020 0
O(1) time - Accessing Array Index (int a = ARR[5];) - Inserting a node in Linked List - Pushing and Poping on Stack - Insertion and Removal from...
Read More

Application binary interface "ABI" vs Application programming interface "API"

tháng 3 01, 2020 0
You are already familiar with the concept of an API. If you want to use the features of, say, some library or your OS, you will use an API. The...
Read More

Thứ Hai, 20 tháng 1, 2020

Low level Memory Q&A

tháng 1 20, 2020 0
Q: What is the memory layout of C program A: Memory layout of C program includes sections: - Text or Code Segment - Initialized data segment - Uninitialized...
Read More
Page 1 of 712345...7NextLast