Skip to main content

                              INCOME IDEAS

                                                                         by RAUSHAN RANJAN


PROBLEMS:
➨Don't have better life?
➨ Are u broke?
➨ Mentally tensed?
➨ Feeling useless?

MONEY IS SOLUTION.

World  is growing at faster rate. Some get aware of this growing rate at early age. Some get aware late.Getting aware means come to know that we have  to do lot of hard work to give ourself a better life.
The question is why we need to work hard. And the answer is very simple  "TO EARN MONEY".Because money is attracted towards hardworking people. Hardworking is an act of respect towards money.
ELON MUSK
We can't neglect the fact that money can't buy happiness. If  anyone is saying that money can't buy happiness show them this pic.Look how unhappy he is!Money is the ultimate source of solution of 90% problem.

Getting older we came to know that we need money. And we start searching the way to earn it.
Many follow traditional way.They complete their study and get a job.Some start their business. Some become social media influencer as we see tik-tok star and youtubers today.Many people try something to earn a money.
But it's not same for everybody. They get confused "what they have to do?" and "how to do?".
There are many ways through we can earn money.But the most important thing is that you have to follow your passion.Somebody is interested in dancing,singing,rapping,gaming..bla bla....Try working on that things because it is of your interest.You can do better in that field.And if you are still confused then here are some ideas on side income.

SIDE INCOME IDEAS:

1. YOUTUBE:
   Give atleast  two hours daily creating content for youtube. Here are some of the things you can do
👉   Create your own vines
👉   Make memes.
👉   Make Life hacks videos
👉   Small experiments setup
👉    Live stream of games.
👉    Reaction videos.
👉    Teaching tutorials
👉     Vlogs



2.SMALL BUSINESS:

This can take your some time and need some investment too,but it reflect what it takes.It can be of any type depending upon your condition locality.You can sell you own product on flipkart or you can rent out your extra room or you can rent out you physical property if you have any.This things will help you to earn money .Initially it may take time but later on it will definitely give a better result.

3.SKILLS
If  you have an extra skills as we have discussed earlier you must go for that.This will enhance your skill as well give you benefit with enjoyment. Some of the things you can do:

1.You can provide tution to your younger neighbours.
2.You can be a gym trainer if you have better knowledge.
3.You can teach drawing ,dancing, or singing techniques.
4.You can work as logo maker.
5.You can work as content writer.
6.Yon can be a blogger.

There are much more things which you can do related to do skills.It depends upon you to finds a way to help people learn your skills by charging them.Once a legends said that:
"IF YOU ARE GOOD AT SOMETHING NEVER DO IT FOR FREE".

4.SOCIAL MEDIA INFLUENCER

This is the best things which is attracted by many youngster. Not only youngster but it is now attracting others generations too. Tiktok, youtube, facebook, instagram, twitter etc. These platforms are filled with users.You can use use these platforms to to gain followers and then you can earn by advertising the products.You have to give some long duration of time like one or two years.But you have to be consistent.


5.INVESTMENT

This is must needed thing which should be done by every youngster.Start investing in stocks or in real state.This in long duration will benefit you.You need to cut your expenses and use you pocket money  to invest because you don't have a job.As a student it is a good steps toward being financially free after graduation.


This are some of the things which you can do to  earn  money and make yourself tension free. If  you money try to make more money from that. This is the sign of successful person.Always find a way to make money even if you are sleeping.Work 10x faster than anyone so that later you can enjoy 10x.



Always remember you have a family to feed not a community to impress,so don't invest money in buying unnecessary  things to impress people. Otherwise you will left with the 4 question which you have read at start of this blog.

LEAVE YOUR VALUABLE COMMENT......
                                                            
                                          THANKS FOR YOUR TIME!








Comments

Post a Comment

Popular posts from this blog

Important Concept of OOPs

Hello Everyone I am Raushan Ranjan In this post we are going to cover the important concept of  OOPs. OOPs is an important key of programming language. We have to make our mind clear towards OOPs by understanding the each and every point given in this post. Let's jump into the main part OOP, or Object-Oriented Programming, is a way of writing code that helps us organize and manage our programs more effectively.  In OOP, we work with two main things: objects and classes. An object is something that represents a specific thing or concept in our program. For example, if we have a program about cars, an object could be a specific car like "Toyota Camry." Objects have characteristics or properties (like color, size, or speed) and can perform actions or behaviors (like accelerating or braking). A class , on the other hand, is like a blueprint or template for creating objects. It describes what properties an object will have and what actions it can perform. It defines the commo...

Understanding Array In Detail

Hello everyone I am Raushan Ranjan In this post we are going to get the details of Array. We will discuss everything about array. Let's understand in detail An array is a data structure that allows you to store multiple values of the same type under a single variable name. It provides a way to organize and access a collection of elements using a contiguous block of memory. In most programming languages, arrays are zero-indexed, which means the first element is accessed with an index of 0, the second with an index of 1, and so on. The size or length of an array determines the number of elements it can store. Here's an example of declaring and initializing an array in different programming languages: C++ : int numbers[5]; // Declaration of an integer array of size 5 int numbers[] = {1, 2, 3, 4, 5}; // Declaration and initialization of an integer array with values numbers[0] = 10; // Assigning a value to the first element int x = numbers[2]; // Accessing the third element and sto...