Programming tutorials, Web development, special computer tricks, software issue, news ideas, motivation videos, government news, basics computer knowledge, latest technology news, and many more
If you want to become a web developer so you need to learn programming languages which is very important for developing part of web. Like PHP and its framework very famous in today life.
so simply you should knowledge basic requirement like html, css, bootsrap, javascript after these basic knowledge you need to learn database with php and its framework.
I am a web developer and i have knowledge of these when you will knowledge these thing then you can create web development application for anyone.
i prefer please learn php and its framework these are very important for today's life.
Thanks for reading my post please like ,comments and share this post if you like this.
Website :- As you know guys collection of web pages called website.we can make website through two way first in the sense of coding and second method is cms(Content Management System) it means create website without any coding these kinds of website anyone make so questions arises why we need of coding website so if we want to create website which have more then functionality any other cms system then we need of coding website.
Earning :- Earning of website through ads is more better then you tube channel this is why its first reason if we earn money through website so google gives us 68 % money of ads but in you tube channel google gives us 55 % money of ads and another reason is if we keep ads on website so this is permanently for all users ,in you tube we have no any kinds of facility to add ads in permanently.
google ad sense
You tube
You tube :- is also a good platform to earning money through google.you need to simply create create channel then upload videos.after the uploading you need to link account with google adsense watch video how to link google adsense account with you tube if you have no adsense account to please watch this video to know how to create google adsense account these are simple process after all the criteria full fill with you tube policies and required 1000 subscriber and 4000 hours watch complete these criteria you can earn money.
For Better Understanding watch video...
Both are best way in the sense of own way because of this according your ability you should decide which is best or suitable for you.
thanks for reading post please like ,subscribe and share this post
Hello guys if you want to download you tube videos on desktop/PC so i have one simple tricks you need to follow one simple steps and then you can download you tube any videos.
If you want to download you tube videos on mobile so i will suggest you on popular application which name "VIDMATE" you need to search simply as you do in you tube then at right side you see download arrow key you need to click on that then it will ask you which quality you want to download then select quality after finish this step you will have got download video.
vidmate logo
Thanks for reading this post , Please like, comments and share
is a website in which you can check your seo of any website you need to put into search box your website URL then click on analyze button then after some minute you will get result of your website.
alexa is most popular website for website ranking checker. simply you type your website url then click on search button and then after some time you can watch your website rank if your website is not counting in alexa ranking so your website is no value according to traffic,content and website performance.
Nowadays people don’t only rely only on TV Channels to watch their favorite TV shows as the online streaming services are grown rapidly and most of you own unlimited data plan thanks to Jio and other network providers.
But somewhere a lot's of people have not jeo sim or airtel then how we can watch live ipl with no delay 5 minute like hotstar we watch.
If you getting any kinds of issue so friends watch my video click on link or directly play video to watch live configuration of livenettv on mobile device.
Thanks guys if you like this post so please comment me and tell your feeling if you getting issue after this video so please explain you problems in comments.
Hello friends here i will explain you what is exaclty static function in java ,how to use it and what is advantages of it with example so let's start...
static function is a modifier in java which is in c++ language called access specifier but in java access specifier has changed into modifier but working motive is same. "modifier defines access level of any class or function or variable.like public modifier,private modifier,protected modifier ,static etc."
class Techsol {publicstaticvoid main(String[] args){
display();//calling without object
Techsol t =new Techsol();
t.show();//calling using object}staticvoid display(){System.out.println("Programming is amazing.");}void show(){System.out.println("Java is awesome.");}}
we have taken a class called Techsol and 3 function with main one is static
second is not static.if you have without static function you whenever you are
you are calling function you need to create a object then you can call
otherwise java IDE shows warning.
If you have static function then you can call that function directly without
create any object.
like this if you have without static function socall like thisTechsol obj1;obj1.show();if you have static function so you can call like this Techsol.display(); example : - System.out.println();System is a class out is a String class's static variable therefore this is called directly with class then println is a static function therefore called directly.
Advantages of Static function
if you use static modifier you you need less code and this is benefit of the static function.