Posts

Showing posts from June, 2022

Number System

 Important   Number System for computer are :- Decimal Number System (0-9) Binary Number System (0-1) Hexadecimal Number System (0-9, A-F) Octal Number System (0-7) 1.) Decimal Number System :        Base : 10       Values : 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 2.) Binary Number System :        Base : 2       Values : 0, 1 3.) Hexadecimal Number System :        Base : 16       Values : 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A(10), B(11), C(12), D(13), E(14), F(15)       4.) Octal Number System :        Base : 8       Values : 0, 1, 2, 3, 4, 5, 6, 7 Binary to Decimal Conversion: Binary (base-2) numbers use only two digits: 0 and 1. Decimal (base-10) numbers use ten digits: 0 through 9. The conversion process relies on the idea of place value , just like in decimal numbers. In decimal, each digit's position represents a power of 10 (e.g., in 1...

C Programming

C Programming 'C' Programming language is a Middle level programming language. It is widely used programming language from the day it is created. It is used in developing various operating systems as well as vast range of application.  A program is a set of instructions, given to the computer by user in user friendly format.  P rogram are written in human understandable format, that format is called as a programming language.   Then this source code will be converted to machine understandable code by the programming compiler. First C Program: // single line comment is written by using "//" /* Multi-line  comment is written in this format */ #include<stdio.h>  // header file which includes standard input/output functions int main()  // main function is the first function to be called in the program {      printf("Hello World\n");  // function to display the output      return 0;  // return 0 value on successful...

Skills for Embedded System Engineer/Embedded Software Developer

Important Skills for a good Embedded Software Developer Basic knowledge of electronic components & circuits. Experience with Micro-controllers.  Should be good in a programming Language most preferred in C. Schematic and Data Sheet understanding Device Driver Development Linux Operating System