Posts

World's Top 5 failed Startup ever

Image
Top 5  failed Start-up 1.  Wesabe What it was:  A web-based personal money management tool. Funding:  $4.7 million Active Dates:  December 2005 – July 2010 What happened:  Competing personal money management tool Mint launched in September 2007 at the TechCrunch 40 conference with a better design and easier user experience. Two years later, Mint was acquired by Intuit for for $170 million. What the experts say:  According to Wesabe cofounder Marc Hedlund, Mint decided to use screen-scraping financial data aggregation service Yodlee while Wesabe decided to built its own financial data tool. It took too long for Wesabe to build it, and as a result Mint has a better, easier to use service.                                         ...

Want to Start Your own company?

Image
          How to start a company Hello we are  going to talk about how we can start our company whenever the thought of start comes to mind, then we feel that we should have a lot of money to startup, we think for start a company like  Tata ,Birla , Ambani . But we think that this is a long process and it requires a lot of money. To begin this, if we think of opening our company in India then there are some rules which are a very simple process. The Indian government has made it even easier, it has three main processes. 1 . Idea First of all, you should have some idea and know what type of company you want to open, Ideally there are two types of Idea -> Traditional idea     ->Monopoly idea                                ...

Bus Reservation System in C++ (simple logic)

#include <conio.h> #include <cstdio> #include <iostream> #include <string.h> #include <cstdlib> using namespace std; static int p = 0; class a {   char busn[5], driver[10], arrival[5], depart[5], from[10], to[10], seat[8][4][10]; public:   void install();   void allotment();   void empty();   void show();   void avail();   void position(int i); } bus[10]; void vline(char ch) {   for (int i=80;i>0;i--)   cout<<ch; } void a::install() {   cout<<"Enter bus no: ";   cin>>bus[p].busn;   cout<<"\nEnter Driver's name: ";   cin>>bus[p].driver;   cout<<"\nArrival time: ";   cin>>bus[p].arrival;   cout<<"\nDeparture: ";   cin>>bus[p].depart;   cout<<"\nFrom: \t\t\t";   cin>>bus[p].from;   cout<<"\nTo: \t\t\t";   cin>...