Posts

How to Become Android Developer

Image
                           How to Become an Android Developer : The Beginner’s Guide           Are you passionate about mobile apps and interested in becoming an Android app developer? Your first step is understanding what responsibilities you’ll have as an Android developer and what technical and non-technical Android developer skills you’ll need.           Over 3K apps are released to the Google Play Store daily  by Android developers from all over the world. That is a strong reason to believe that mastering Android developer skills all but guarantees your future employability. That brings us to the question: what is it like to be an Android developer? What responsibilities will you have to take on? What are the core Android developer required skills you need to succeed? How do you become an Android developer and find good Android developer jobs once you’ve mastered those skills? Let’s explore the answers in this article!                               Table of Contents Responsibiliti

C++ Notes

Image
                            Hello guys Welcome to my blog Write a short note on function overloading in c++ (This question has been asked in GU Uni Dec 2018 for 7 Mark) In C++, two functions can have the same name if the number and/or type of arguments passed is different. These functions having the same name but different arguments are known as overloaded functions. For example: Below program has two different functions namely myFun. The first function takes only one argument and the Second function takes two arguments. Note that both functions has the same name but they have a different number of arguments. Whenever we are calling function myFun from main function compiler will decide which function to be called based on the number and type of arugment. If we passed only one argument first function with single argument will be called. If we pass two argument second function will be called. This is clearly visible from the output of the function with cout statement telling us which fu