Search This Blog
Monday, October 18, 2010
Imporant of DocType and XMLNS in XML World
Friday, October 15, 2010
India Software Marketing Strategies
I like to do product development and Implementation as software developer.
Couple of months back i got chance to market(presales) our product ,In that time i have to act more are less marketing person with good technical knowledge.
During in this journey(around 15 days) i started reading books related to marketing & analysed software marketing in India(very basic analysis).i want to share this experiment here.
Indian market is very vast compare than other country .But people not willing to accept(but now its slowly increasing) technology growth and even software company in India not ready to take risk to give solution for own country.
Developing/Inventing product is not much important comparing than marketing the same and product should be used by every one day to day life.
So here i am sharing my experience where we can market our product and how our product should be customized based on the requirement.
Advertisement in Cloud(Internet)
Most of the company use this approach for their product marketing but when you call them,they never respond properly if they very big company than case is very worst. So make sure product support team must active and have full knowledge of product.
E-Gov Project
Indian software company never focus in this area before 2009 even if they focus they never deliver bug free product .But now things get improved because of UIDAI. But still lot of verticale not yet used technology fully. Indian IT farm focus this are still we have lot of opportunity.
Small and Medium Enterprise application
Most of crore -pathy in India are running SME but they not aware about use of software fully,So we have to arrange meet up for all SME to demonstrate the product . In this place you have lot of business opportunity.
Social responsibility application
As of now none of social responsibility application is created and maintained by any Indian software company to address day to day issue of individual in India .So we have to focus on social responsibility application to reach people.
Hibernate Architecture and Flow of the Application
What make your application more Pretty
2.Speed
3.Very User Interactive Application.(Controllers should be in correct place.)
4.Integrating other application.
5.Single Sign-on.
Struts 1.2 Architecture Flow
what is providing for developer to make application in very efficient way.
Java List,Set Vs Mathematics List,Set
List & Set in Mathematics with Ven diagram:
I am always wonder how mathematics are related to programming language,when i started studying java collection frame work i have found how mathematics are related to computer programming and day to day life.
Lets go to 10th standard mathematics we all love Ven diagram Problem.We all familiar with operation of Union and Intersection of two Ven diagram.Union
Union is simply combine the value in two Ven diagram,if the value is common than its forms(Duplicate)in the List
Intersection
Intersection is always form the set because its only select the Common values for two ven diagram.
Lets take example:
For example, given A = {–2, 3, 5, 7} and B = {3, 9, 11} we see that
Union
A U B={-2,3,3,5,7,9,11}=Java List Because it has duplicate.( Array List,Vector)
Intersection
A &B={3}=Java Set because no duplicate.(HashSet,TreeSet)
When ever i got chance to work with core of programming used to co-relate programming language with Mathematics.