Skip to main content

Most Expensive Cars in World


       Most Expensive Cars of World

Here are some of the mentioned amazing cars with their prices touching the sky.Images are places amongst the cars to let you easily recognize them.

1.Bugati's La Voiture Noire

Sold at $19 million(19,000,000$)
La Voiture Noire features six tailpipes (which "bear witness to its incredible power," ) to go with a high-performance, 8-liter engine with 16 cylinders and 1500 brake horsepower.








2.Rolls Royace Sweptail

Sold at $13 Million  (13,000,000$)
Bringing together the finest materials, cutting-edge technologies and the unrivalled expertise of our designers and craftspeople, we work with you to create a Rolls-Royce that’s as unique as you are.
Bringing together the finest materials, cutting-edge technologies and the unrivalled expertise of our designers and craftspeople, we work with you to create a Rolls-Royce that’s as unique as you are.















3.Koenigsegg CCXR Trevita

Sold at $4.3 million ($4,300,000)
The Trevita features a unique double carbon rear wing, inconell exhaust system, carbon ceramic brakes with ABS, airbags, paddle-shift, chrono instrument cluster, infotainment system, tire monitoring system and a hydraulic lifting system.











Click here for more

Comments

Post a Comment

Popular posts from this blog

Excretion IN Humans and Animals

Excretion In Humans Excretion is one of the essential life processes which is required for a living organism to survive.      Excretion is defined as the process of removal of toxic waste materials from one's body.In humans,the nitrogenous waste products,i.e, urea ,is excreted through a well established system called urinary system or excretory system. Human Excretory System consists of a pair of Kidneys and ureters,a Urinary bladder ,and Urethra.Waste is filtered from the blood and is collected in the form of urine in each Kidney. Urine leaves the kidneys through the ureters and is temporarily stored in the Urinary Bladder. From here the urine leaves the body through urethra. Components of Urinary System and their Functions The human Urinary system has following main components- Kidneys Nephrons and Nephric tubules Collecting Tubules Ureters Urinary Bladder Urethra [If you want to read about MECHANISM of urine formation then cl...

Python program for calculating BMI (Advanced)

This is an advanced code for BMI calculator for one who are beginners in python.  You can calculate the following data from this code...  1. Your Body Mass Index (BMI)  2.Your fitness condition based on your weight.  3.The amount of weight you need to gain or loss..  #program goes like this w=int(input('Enter your weight in kgs..')) h=float(input('Enter your height in m..')) def bmi(w,h):     bmi=w/(h**2)     print('Your BMI is ',bmi)     if bmi>18 and bmi <25:         print('You are healthy')     elif bmi<18:         print('You are underweight')         for x in range(0,100,1):             if (w+x)/h**2>18:                 a=x                 int (a)               ...