Posts

Showing posts from October, 2015

NOT SO COMMON C++ : Access Specifiers

Image
Hello everyone , wecome to our NOT So Common C++ series. In the last post for NOT SO COMMON C++ we discussed about some shortcuts , initializations of pointers, structures ..etc. So today lets cover some tricky portions of C++ that are a bit confusing for the beginners. I hope you people have basic knowledge of class in C++.  Access Specifiers : public , private , protected. Lets see an example to get an overview of access specifiers- #include<iostream> using namespace std; class Example { private :     int priV ;                              // PRIVATE VARIABLE or PRIVATE MEMBER public :      Example()                           //Constructor      {             priV =  10;                  // initializing "priV"             proV =  4;                   // initializing "proV"     void pubFunction()            // PUBLIC FUNCTION     {         cout << "public Function executed and priV = " << priV;   //

Are you ready for GOOGLE? - For Technical applicants

Image
Ever dreamt of being placed at the biggest tech company in  the world "GOOGLE" , of course everyone wants to earn big bucks and have a job at google. But the question is ,do you have the skills that google looks for in a new applicants. Many students may think that having programming skills will be enough to get in google, but believe me google asks much more than just programming. Yes programming skills are important but only the programming skills will not land you at Google. So today we will cover each and every things that google look for in the applicants. The very first thing is your basics in the field of CS/IT should be clear , you can cover this part by completing this great course from edX( Introduction to Computer Science ). So lets move a bit deep: You need to know at least one object oriented language(C++/Python/Java).      2. You need to have some other programming languages on your tips also :  C CSS & HTML Javascript PHP Ruby Perl S