Skip to main content

CHeck Various Telecom Services

Check Various Telecom Services

1. Aircel -  
   
Check Balance :  *125# or Send BAL to 121
Check GPRS Balance: *126*4# or *126*1# or *301#
Customer Care Number:  121 or 123
2. Airtel -  
Check Balance : *123#
Check 2G GPRS Balance: *123*10#
Check 3G GPRS Balance: *123*11#
Customer Care Number:  121 or 198
 3. BSNL -  

Check Balance :  *123#
Check GPRS Balance: *123*10# or *234#
Customer Care Number:  9400024365 [Eastern Region]

 4. Tata Docomo -  

Check Balance :  *111#
Check GPRS Balance: *111*1#
Customer Care Number:  121 or 198
5. IDEA -  

Check Balance :  *123# or *130# or *212#
Check GPRS Balance: *125#
Customer Care Number:  12345
6. Reliance -
Check Balance :  *367# , *306# , *702#
Check GPRS Balance: *367*3# or "MBAL" and send to "55333" ( Without Quotes )
Customer Care Number:  *333 , *369
7. Vodafone -
 
Check Balance : *141#
Check 2G GPRS Balance: *141*9# or *111*6#
Check 3G GPRS Balance: *111*5*2#
Customer Care Number:  111 or 198 (Complaint No)
8. Uninor -
Check Balance :  *222*2#
Customer Care Number:  121,198
8. Videocon -
Check Balance :  *123#

Comments

Popular posts from this blog

NHibernate Introduction

 NHibernate NHibernate is an open source Object-Relational Mapping (ORM) tool for the .Net platform… and the existing documentation and tutorials that I could find, whilst plentiful, are not aimed at those new to or inexperienced with ORM. This tutorial is based on using Visual Studio (I used 2008 beta 2) and Sql Server, however the database used is almost immaterial (one of the advantages of using an OR mapper). If you already know what NHibernate and ORM are and you want to use it but just need to know how?  Otherwise, read on. WTF is ORM? There is plenty of good stuff out there on what Object-Relational Mapping is, try wikipedia or the intro here (the tutorial is a bit out of date but the explanation is good) or there’s always Google . However, in a nutshell, ORM is the process of mapping business objects (think OOP) to database relations (read tables). An OR Mapper is a tool that manages this process. There are several different OR Mappers available for ...

Computer Science Defenition

Computer Science Computer science is the scientific and practical approach to computation and its applications. It is the systematic study of the feasibility, structure, expression, and mechanization of the methodical procedures (or algorithms ) that underlie the acquisition, representation, processing, storage, communication of, and access to information , whether such information is encoded as bits in a computer memory or transcribed in genes and protein structures in a biological cell . [1] A computer scientist specializes in the theory of computation and the design of computational system

NHibernate QueryOver Class And Projection....

Introduction The ICriteria API is NHibernate's implementation of Query Object . NHibernate 3.0 introduces the QueryOver api, which combines the use of Extension Methods and Lambda Expressions (both new in .Net 3.5) to provide a statically typesafe wrapper round the ICriteria API. QueryOver uses Lambda Expressions to provide some extra syntax to remove the 'magic strings' from your ICriteria queries. So, for example: .Add(Expression.Eq("Name", "Smith")) becomes: .Where<Person>(p => p.Name == "Smith") With this kind of syntax there are no 'magic strings', and refactoring tools like 'Find All References', and 'Refactor->Rename' work perfectly. Note: QueryOver is intended to remove the references to 'magic strings' from the ICriteria API while maintaining it's opaqueness. It is not a LINQ provider; NHibernate 3.0 has a built-in ...