Skip to main content

TOP 10 BIKES INTHE WORLD AND SPECIFICATIONS

 While I can't provide real-time information, I can offer general specifications for some popular motorcycle models as of my last knowledge update in January 2022. Keep in mind that specifications can vary by model year and region. Here's a list with brief specifications:




1. **Yamaha YZF-R1:**

   - Engine: 998cc inline-four

   - Power: Varies by model year, around 200hp

   - Features: Advanced electronics, sport-oriented design.



2. **Ducati Panigale V4:**

   - Engine: 1103cc Desmosedici Stradale V4

   - Power: Varies, approximately 214hp

   - Features: Cutting-edge electronics, aerodynamic design.



3. **BMW S1000RR:**

   - Engine: 999cc inline-four

   - Power: Around 205hp

   - Features: Dynamic performance, electronic aids.



4. **Honda CBR1000RR-R Fireblade:**

   - Engine: 999cc inline-four

   - Power: Approximately 214hp

   - Features: Aerodynamic design, advanced electronics.



5. **Kawasaki Ninja ZX-10R:**

   - Engine: 998cc inline-four

   - Power: Varies, around 200hp

   - Features: High-performance components, aerodynamics.



6. **Suzuki GSX-R1000:**

   - Engine: 999cc inline-four

   - Power: Around 199hp

   - Features: Race-derived technology, lightweight design.



7. **KTM 1290 Super Duke R:**

   - Engine: 1301cc V-twin

   - Power: Approximately 177hp

   - Features: Aggressive styling, performance-oriented.



8. **Aprilia RSV4:**

   - Engine: 1078cc V4

   - Power: Varies, around 201hp

   - Features: High-performance components, advanced electronics.



9. **Triumph Speed Triple RS:**

   - Engine: 1050cc inline-three

   - Power: Approximately 148hp

   - Features: Naked sportbike design, electronic aids.



10. **Harley-Davidson Fat Bob:**

    - Engine: Milwaukee-Eight 114 V-twin

    - Power: Around 86hp

    - Features: Cruiser style, distinctive design.


For the most accurate and up-to-date information, please refer to the latest specifications from the respective motorcycle manufacturers or authorized dealers.

Comments

Popular posts from this blog

java lab 2nd semester

SYED AMMAL ARTS AND SCIENCE COLLEGE   (Affiliated to Alagappa University - Karaikudi) NAAC Accredited with “B” Grade Koottampuli, Ramanathapuram - 623513     DEPARTMENT OF INFORMATION TECHNOLOGY                   Reg. No :     Name     :         Academic Year     2024 – 2025     SYED AMMAL ARTS AND SCIENCE COLLEGE   (Affiliated to Alagappa University - Karaikudi) NAAC Accredited with “B” Grade DEPARTMENT OF INFORMATION TECHNOLOGY       Certified a Bonafide record of practical work done on 23BIT2P1-JAVA PROGRAMMING LAB by _______________________________ Reg.No. __________________ of B.Sc. (Information Technology) – I year during II Semester APRIL, 2025.                      ...

DBMS LAB

AIM: To write a sql program in ddl commands. PROGRAM: SQL> create table student(stid number, stname varchar(15), staddr varchar(15), stmob number(15)); Table created. SQL> desc student; Name Null? Type ----------------------------- -------- ------------------------ STID NUMBER STNAME VARCHAR2(15) STADDR VARCHAR2(15) STMOB NUMBER(15) SQL> alter table student add stmark number; Table altered. SQL> desc student; Name Null? Type --------------------------------- -------- -------------------- STID NUMBER STNAME VARCHAR2(15) STADDR VARCHAR2(15) STMOB NUMBER(15) STMARK NUMBER SQL> alter table student rename to student_info; Table altered. SQL> desc student; ERROR: ORA-04043: object student does not exist SQL> desc student_info; Name Null? Type -------------------------------- -------- ---------------- STID NUMBER STNAME VARCHAR2(15) STADDR VARCHAR2(15) STMOB NUMBER(15) STMARK NUMBER SQL> drop table student_info; Table dropped. SQL> desc student_info; ERROR: ORA-04...

Iwd only 8 pdf 😉(👈 click seiyavum)

 demonstrate the calculator program. Program : <html> <body> <script> const operator = prompt('Enter operator to perfome the calculation(either+,-,* or/):');  const number1 = parseFloat(prompt('Enter the first number:'));  const number2 = parseFloat(prompt('Enter the second number:'));  let result;  if(operator =='+') { result = number1+number2; } else if(operator =='-') { result = number1-number2; } else if(operator =='*') { result = number1*number2; } else { result=number1/number2; } window.alert("Result is"+result); </script> </body> </html> OUTPUT : Result : The given program is executed successfully. Ex no : 2 Date : FACTORIAL Aim: To demonstrate the factorial program. Program : <html> <body style="text align:center;font-size:20px;"> <h1>welcome to department of BCA</h1> <h1>FACTORIAL NUMBER</h1> enter the num...