Skip to main content

Scope of Gaming In India

Well maybe right now Gaming as a profession does not have a very good scope, however in next 5-10years things are going to drastically change. I can't say of the rural India but Cities actually have many die hard gamers and some of them they even organize private events but it's kept private. Since our society frowns upon those who are adults and still play video games. Now, how I am so sure, if India had no gamers we wouldn't see STEAM introducing INR exclusively for the Indian Market. Metropolitan Cities have a good number of gamers and the only reason we don't see them come out in open because right now gaming is seen as a wastage of time in India or just a timepass thing but like I said before things are changing so in coming years it'll have better scope as a profession.

Comments

Popular posts from this blog

Pl/SQL program to find square of a user input number Using Function

declare   value1 number;   value2 number;   mytotal number;   function myfun(myval1 in number, myval2 in number) return number is     total number;   begin     total := myval1 ** myval2;     dbms_output.put_line(total);     return total;   end; begin   value1 :=&val1;   value2 := &val2;  mytotal:= myfun(value1, value2); end;