Showing posts with label suggestion. Show all posts
Showing posts with label suggestion. Show all posts

Saturday, February 18, 2017

How to Control LED lights through Arduino Uno

How to Control LED lights through Arduino Uno

This Program will show you that how to control LED Lights through the Arduino Uno. This will show you all connection step by Step in very Simple Manner. Definitely you will understand the program after watching this video.

Click on the below link to see the video for how to Control LED lights through Arduino Uno:


My Twitter Account :
https://twitter.com/rakesh_prof

My Facebook Account:
https://www.facebook.com/AsstProfRakeshRoshan

My Blog:
https://computersciencebyrakesh.blogspot.in/

Sunday, August 21, 2016

Tips for Technical Interview in IT industry

Tips for Technical Interview in IT industry

  1. Prepare for a short introduction including the technical project which are genuinely done by you.
  2. Go through the website of company and get the information about company. for example: the company work for which domain primarily etc.
  3. Ask to seniors if any already working in the company about the technologies used by the company.
  4. Prepare yourself for the fundamentals of programming and algorithms because programming is the backbone of IT company.
  5. Prepare yourself comfortable upto average level(Concepts of classes,functions,datatypes,looping,conditional statement) for any one programming languages or tool.
post your query related to technical interview.

Saturday, August 20, 2016

Malloc and Calloc

Difference between Malloc() and Calloc()
1. malloc() takes one argument while calloc() takes two argument
2. malloc() does not initialize the allocated memory while calloc allocated memory intialized with 0.
3. Both are used for dynamic memory allocation.
4. malloc is faster than calloc
5.Example: int *p=(int *)malloc(sizeof(int));
                   int *p=(int *)calloc(10,sizeof(int));

Now blog is open to all for your valuable comment and suggestion, so that I can improve the blogs in future. You can also ask the questions related to my topics , I will try to answer your questions within 24 hours.