Posts tagged Self Study

Deprecated APIs

Deprecated As Android Versions keep being updated, many APIs and their methods are being revised. Even though those API’s methods get ...

Bandwidth and Frequency

Bandwidth (bps – bits per second) Amount of data that can be transmitted in per unit time. Difference between highest frequency and lowest ...

Latency vs. Jitter

Latency Amount of time it takes for a packet to travel from point A to point B(or round-trip). ex) Data Latency: time between a query and the ...

vi Find & Replace

Range [%] All lines in the file. [1,30] line 1 to 30 [5,$] line 5 to last line Pattern This can be plain text and also regular expression. ...

malloc( ) and free( )

allocates the requested memory and returns a pointer to it. (Dynamic memory allocation) should #include<stdlib.h> void *malloc(# of bytes): ...