Skip to main content

Process to get PUC certificate

Having a Pollution Under Control certificate, more commonly known as the PUC certificate, is mandatory for all the vehicles in India as per the Motor Vehicles Act. In metro and tier 1 cities, it is very easy to get a PUC certificate.

I haven't seen petrol pumps doing PUC checks themselves, but they generally contract someone to offer PUC checks. Therefore, presence of a vehicle with a BIG PUC board sign is a common sight near petrol pumps. Although, you will often find that the owner of that vehicle is "missing" (gone AWOL :P) for large periods of time and the petrol pump employees would "proudly" say that "that guy" is not their employee :(. So let us understand the process of getting a PUC certificate.

First and foremost, always inquire about the charges and the validity. The cost should not exceed Rs. 100 (in 2019. Please convert to inflation adjusted charges for subsequent years.). Generally PUC checks are valid for six months and you will get a certificate which will mention the duration of validity. As the PUC certificate is mandatory and since the certificate generally has a validity of six months, a vehicle owner needs to perform PUC test twice every year.

Let's come to the actual testing process which is very simple. The PUC machine has a long pipe which is attached to the silencer of your car. The car must have its engine running. The machine measures the amount of Carbon Monoxide (CO) for about 30 seconds and displays whether the emissions are within the prescribed limits. If the emissions are within limits it displays "PASS". If they are not, I don't know :p. My car has always been within limits. This time my car's emissions had 0.3% of CO which was well within the limit of 0.5% for four wheeler cars.

Once the test is done, you pay the person and get the PUC certificate. Make sure the certificate, which is more like the size of an ID card contains the following things:
  1. Serial number
  2. Vehicle registration number as on the number plate.
  3. Date of test
  4. Validity
  5. Test results - Percentage of CO emissions
Then comes the most important thing. Immediately go to your google calendar and create a reminder for the date when your PUC certificate is going to expire. That way, you would not forget the next test. Now keep the certificate in your vehicle drawer along with your registration papers and insurance, lock the car, put on your seat belt and have a safe drive.

Comments

Popular posts from this blog

CRIF HighMark Credit Report Application Process

As per the RBI circular of 2017, you are entitled to get one free credit report every calendar year from each credit bureaus in India. CRIF HighMark is one of the four credit bureaus in India. This article will focus on creating a new account and getting your yearly free credit report. Visit the official website of CRIF HighMark https://www.crifhighmark.com/your-credit-score  In the next screen, click on " Get Your Score Now"  Register After registering, follow the below steps: Enter Personal Details Full Name DOB Email ID Mobile Number Gender Father's Name or Spouse Name Identification PAN or UID necessary Rest optional Communication Address CAPTCHA Review Terms of Use and Click Submit Choose free report Click " No Thanks, Take me to my FREE report " below the Upgrade me button. You will receive a confirmation email with your username and password and activation link. Click on activation link to...

My Entry into the World of Credit Cards

After joining my job in June 2018, my salary account was opened in ICICI Bank. During the account opening process, I was offered a Life Time Free (LTF) credit card. Simply put, this was my first chance to get into the credit world without any extra hassle because first of all, neither was I aware of the concept of credit scores nor I had any credit history and secondly, I was just curious about credit cards after seeing of my father use his credit cards with extra caution and the monthly event of credit card bill payment that used to happen at my home. And in that sudden moment of joy, I made my first mistake in the credit world. Representative Image (Source: https://jessepollak.github.io/card/) Now if your guess is that I started spending crazy amounts of money which I couldn't repay, then you are WRONG! I am a miserly person. Money doesn't leave my hands and in general, my credit utilization has never exceeded 5% of my credit limit. So coming back to my first mis...

Generate Large Files in Linux using dd

The programming community often requires large files for stress testing programmes. For example, sometimes such files are required to check the response time of certain programme or testing request handling capacity of servers. Many times, it does not matter what the contents of the file are, however, it is often difficult to find such large files when the need arises. Linux provides us a fast, efficient way of generating such huge files through simple command line options. For the purposes of this demo, I am using Ubuntu 16.04 and 18.04 linux distros. Ubuntu provides dd command to create such huge files in a matter of seconds. A typical dd command to create a 1 GB file is given below. dd if=/dev/zero of=big_file.txt count=1024 bs=1048576 parameters of dd: if - input file from which the content is read of - output file where the content is written count - number of blocks in output file bs - number of bytes in each block The above command creates a file named big_file.txt...