Skip to main content

Things to consider before buying Yamaha R15



Description:


             The mighty Japanese manufacturer Yamaha has proved themselves with their R Series lineup. Notably in India when the craze for a mid range sports bike was starving the young minds Yamaha came up with the title R15. Since R series lineup being sports segment the entry level R15 was super sporty and commuter friendly at affordable price. This move made Yamaha to be a sole dominator of the Indian roads for a decade in this segment.

Since from the time of launch Yamaha is continuously trying to give the best out of price. There are two revised models after the launch namely R15-V2 and R15 S.

In the Indian market there is only one competitor on the same class exists. Its the mighty Honda CBR-150R . 

Since from the beginning the R15 made it to the finish line before other manufacturers thought of it.
But R15 has its own set behaviors and quality to deal with.

Here I am trying to help you to choose your best fit for enjoyable ride. Now jumping straight into the topic here are few things to consider before buying an R15.

1. R15 as a commuter:


       This is a most misunderstood topic under R15. Since it belongs to R series line up the motorcycle itself has to prove itself to be worthy. R15 offers a best performance out the 150cc segment with the same price range. 
       If you are using it as your daily driver the if you do lot of commuting inside the city traffic then you should consider. R15 is a breeze to cruse on the highways and off city roads. But in the city traffic it can be little painful if you struck for a log time(say for 1 hour) other wise it will not spoil your mood. You can dazzle around the corners and get out of the city limits without any limit.

The highway rides are enjoyable with the R15.

2. Considering the price:

   
         R15 costs around 1,30,000/- RS (On Road). For the same price you have other options but the features loaded into R15 make it a clear winner. CBR 150R cost 20,000/- RS more than R15. You get the 150cc fuel injected liquid cooled engine with 6 speed transmission and lot more.
   Also if looking for an after market mods then R15 has lot of good stuff like projector, DRLs etc.

3. Look and Feel:


    R15 was inspired by the R6. The design and riding posture are very aggressive. The build quality is excellent with durability. The after mods one are just like an angel and daemon on the streets. You have the pride which was carried out by the R Series lineup. 

       R15 is comfortableonly for riders below 6 foot. So consider that while a test ride. The more you feel the bike the more you love it. 

4. Milege:


      The sports bikes are not considered for their mileage. But if you are not a track person and you are intended to use as a daily driver then it is more important to consider this. 
    Among its class it has the best fuel efficiency because of it hi-tech features use for track. If you are a person who rides it in 70-80 km/hr then if you follow certain procedure then you get above 50 kmpl (I got 55 kmpl).

5. Maintenance:


      R15 has a better durability and Yamaha also offers warranty for 5 years. The service schedules are given for every 3000 Kms. Just a regular service costs around 1500/- Rs. I don't think it is huge. But If you are coming from low end commuter then you might have an impact on it.


I have written this article after the ownership of R15 for a year. I have written it considering on the commuter perspective and not as super sportier.  I will also post the milege tips on the R15 soon.





Comments

Popular posts from this blog

One of the best Torrent caching service.

Hi readers, It's been a long time since I made my last post on this blog. That's due to the migration of the blog to private servers.  Today I found a decent torrent caching service, which I have been looking for years. Initially, when I started, I couldn't find the services are really benefiting me. So I went with my own Virtual Private Server in Digital Ocean. I ran a five dollar per month instance for my torrent caching as well as a multipurpose server.  Of course, It has its pros and cons.  Pros: I was able to do anything I wanted. It served as a good multipurpose server. Relatively inexpensive. Cons: You need to be a computer geek for up and running. Even most of the things are automated, still few manual works have to be performed. It takes usual time for downloading unlike caching services(They can do it instantly). Finally, we have a hassle free torrent caching service  Seedr .  It is a free torrent caching servic...

2-Dimensional Array with Dynamic Rows and Columns.

In Programming many times we have to store and work  with the data. But choosing the right way of storing is important. Array is one of the most simple and effective way of storing list of data.Now we have to multiple array of data. Ohh! that sounds easy we can use 2 Dimensional Array. I agree 2 Dimensional array is suitable but I have arrays of variable lengths. So simply creating 2-D Array will not be efficient because I have to specify the column size as the highest of my arrays. So there will be lot of unused space. The good solution can be Dynamic 2D Array with variable columns. Also Array of vectors can also be used. But we are not discussing about STL. Algorithm: Create a ptr to ptr to ptr with the name of your 2D Array to hold the Array of Pointers. Now create an Array of pointers depending on the no of rows and store the base address on the ptr to ptr. For every Row allocate the required memory and store the address in the array of pointers. You own the 2D...

Merge Sort Implementation in C++

For a Programmer sorting is an easy task after writing the code for couple of pages. But there are many other sorting algorithms.  The question which is not being properly answered is which sorting algorithm you should choose.  This is the most frustrating situation where we feel bad about us. The best sorting algorithm depends only on the scenario in which you are intended to use.  Let us speak about the Merge sort. Merge sort uses the divide and conquer approach. Entirely the merge sort is an easy algorithm (Depends on the way you think). You cannot master merge sort until you think what is happening. It has a good worst case performance (0(N logN)). It uses an additional space to accomplish the goal. The implementation is mainly based on the recursion.  You can get real performance benefit when comparing to bubble,selection sort. That's enough for the quick intro. If you would like you know more do a research on yourself. The algorithm goes like th...