0% found this document useful (0 votes)
29 views25 pages

Srikanth Ip Investigatory Project

Uploaded by

Siddharth Jain
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
29 views25 pages

Srikanth Ip Investigatory Project

Uploaded by

Siddharth Jain
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 25

KENDRIYA VIDYALAYA NO.

1
JALAHALLI WEST, BANGALORE

A PROJECT REPORT
ON
INDIAN CARS SPECIFICATION
FOR
CBSE 2023 EXAMINATION
[AS A PART OF THE INFORMATICS PRACTICES(065)]
DONE BY
HR.HARSHITH
SRIKANTH.B
RISHAB
SUBMITTED BY
HR.HARSHITh
UNDER THE GUIDANCE OF:
MRS. DIVYA
PGT (COMP.SC)
CERTIFICATE
This is to certify that the Project entitled
“INDIAN CARS SPECIFICATION” is a work done by
HR.HARSHITH,SRIKANTH.B AND RISHAB
of Class XII Session 2022-23 in partial fulfillment of
CBSE Examination 2023 and has been carried out
under my direct supervision and guidance. This
report or a similar report on the topic has not been
submitted for any other examination and does not
form a part of any other course undergone by the
candidate.

………………..
……………….
Signature of Principal Signature of Teacher/Guide
Name: MRS. DIVYA
Designation: PGT (Comp.Sc.)
ACKNOWLEDGEMENT
I undertook this Project work, as the part of my XII-
INFORMATION PRACTICES course. I have tried to apply best of
knowledge and experience, gained during the study and class
work experience. However, developing an efficient code is
generally a quite complex and time-consuming process. It
requires a systematic study, insight vision and professional
approach during the design and development.
I would like to extend my sincere thanks and gratitude to my
teacher MRS DIVYA C. K PGT (Comp.Sc).
I am very much thankful to our Principal Mr. Ravindra S Devadiga
for giving valuable time and moral support to develop this code.
I would like to take the opportunity to extend my sincere thanks
and gratitude to our parents for being a source of inspiration and
providing time and freedom to develop this project.
CONTENTS
1. AIM

2. INTRODUCTION

3.THEORETICAL APPROACH

4. SOFTWARE AND HARDWARE USED

5. CODE

6. OUTPUT

7. CONCLUSIONS

8. BIBLIOGRAPHY
AIM

To Analyze and provide a comparison Of various


cars specification in INDIA the with the help of
plots, graphs, and Charts, using python libraries
such as Pandas, matplotlib, and a few other
data Analysis and manipulation tools.
INTRODUCTION
The automobile industry is an important driver of the economic growth in India and
one of the successful sectors in which the country has high participation in global value
chains (GVCs).
This chapter analyzes the role of government policy, infrastructure, and other
enabling factors in the expansion of the automobile and automotive component
sectors and the direction they are likely to take for growth in the next few years.
The analysis in this chapter is organized into seven sections: The rst section dis-
cusses the structure and makeup of the Indian automobile industry. The second
section analyzes the growth of the sector over the past decades, while the third section
discusses the role of government. The fourth section deals with other enabling factors
in the growth of the industry. The fth section analyzes initiatives in upgrading and
innovation. The sixth section includes a discussion of the future scenario and the
seventh section concludes.
The automobile industry is an important driver of the economic growth in India and
one of the successful sectors in which the country has high participation in global value
chains (GVCs).1
This chapter analyzes the role of government policy, infrastructure, and other
enabling factors in the expansion of the automobile and automotive component
sectors and the direction they are likely to take for growth path in the next few years.
The analysis in this chapter is organized into seven sections: The rst section dis-
cusses the structure and makeup of the Indian automobile industry. The second
section analyzes the growth of the sector over the past decades, while the third section
discusses the role of government. The fourth section deals with other enabling factors
in the growth of the industry. The fifth section analyzes initiatives in upgrading and
innovation. The sixth section includes a discussion of the future scenario and the
seventh section concludes.
The automobile industry is an important driver of the economic growth in India and
one of the successful sectors in which the country has high participation in global value
chains (GVCs).
This chapter analyzes the role of government policy, infrastructure, and other
enabling factors in the expansion of the automobile and automotive component
sectors and the direction they are likely to take for growth in the next few years.
The analysis in this chapter is organized into seven sections: The rst section dis-
cusses the structure and makeup of the Indian automobile industry. The second
section analyzes the growth of the sector over the past decades, while the third section
discusses the role of government. The fourth section deals with other enabling factors
in the growth of the industry. The 5th section analyzes initiatives in upgrading and
innovation. The sixth section includes a discussion of the future scenario and the
seventh section concludes
The Indian auto industry is recognised as a ‘sunrise industry’ as it has emerged
as one of the fastest growing sector over last few years. India's annual
production stood at 29.08 million vehicles (including passenger vehicles,
commercial vehicles, three wheelers, and two wheelers) in FY18 as against 25.33
million in FY17, registering a healthy growth of 14.8% over the same period last
year. As of April 2018, India has about 120 vehicles (all segments including 19
cars per 1000) on every 1000 people, which is expected to rise to almost 300
vehicles in next 10 years for every 1000 people. While the population (vehicle
parc) of automobiles in India is expected to surge to 404 million by 2028 from
162.31 million in April, 2018. Currently, 24.37 million automobiles are added
every year and it is expected to rise to 55.84 million by 2028, still much lesser
than the global average vehicle penetration.
THEORETICAL APPROACH

What is Python?
Python is an interpreted, object-oriented, high-level programming language with
dynamic semantics. Its high-level built in data structures, combined with dynamic
typing and dynamic binding, make it very attractive for Rapid Application
Development, as well as for use as a scripting or glue language to connect existing
components together. Python's simple, easy to learn syntax emphasizes readability
and therefore reduces the cost of program maintenance. Python supports modules
and packages, which encourages program modularity and code reuse. The Python
interpreter and the extensive standard library are available in source or binary form
without charge for all major platforms, and can be freely distributed.
Often, programmers fall in love with Python because of the increased productivity it
provides. Since there is no compilation step, the edit-test-debug cycle is incredibly fast.
Debugging Python programs is easy: a bug or bad input will never cause a
segmentation fault. Instead, when the interpreter discovers an error, it raises an
exception. When the program doesn't catch the exception, the interpreter prints a
stack trace. A source level debugger allows inspection of local and global variables,
evaluation of arbitrary expressions, setting breakpoints, stepping through the code a
line at a time, and so on. The debugger is written in Python itself, testifying to Python's
introspective power. On the other hand, often the quickest way to debug a program is
to add a few print statements to the code

Features of Python:
Python provides lots of features that are listed below.
1) Easy to Learn and Use
Python is easy to learn and use. It is developer-friendly and high-level programming
language.
2) Expressive Language
Python language is more expressive means that it is more understandable and
readable.
3) Interpreted Language
Python is an interpreted language i.e. interpreter executes the code line by line at a
time. This makes debugging easy and thus suitable for beginners.
4) Cross-platform
Language Python can run equally on different platforms such as Windows, Linux, Unix
and Macintosh etc. So, we can say that Python is a portable language.
5) Free and Open Source
Python language is freely available at official web address. The source-code is also
available. Therefore, it is open source.
6) Object-Oriented Language
Python supports object-oriented language and concepts of classes and objects come
into existence.
7) Extensible
It implies that other languages such as C/C++ can be used to compile the code and thus
it can be used further in our python code.
8) Large Standard Library
Python has a large and broad library and provides rich set of module and functions for
rapid application development.
9) GUI Programming Support
Graphical user interfaces can be developed using Python.

Data Visualisation in python :

Using Python besides organising data and information in tabular format it can also be
represented pictorially using visual elements like charts /graphs/maps.

matplotlib library’s pyplot interface is used for the same.

II. Pandas: It is a popular library for working with data.

III. Data Frames: A Data Frame is a 2-Dimensional data structure that can store data of
different types (including characters, integers, floating-point values, factors, and more)
in columns. There are many ways to summarize and access the data stored in Data
Frames, using attributes and methods provided by the Data Frame object.
THE HARDWARE USED:
While developing the system, the used hardware is:
Device name DESKTOP-K2HHT1L

Processor Intel(R) Pentium(R) Silver N5030 CPU @ 1.10GHz 1.10 GHz

Installed RAM 4.00 GB (3.79 GB usable)

THE SOFTWARE’S USED:

● Microsoft Windows® 10( 64 bit) Home as


Operating System.
● Google Colab for executing the code
● Python 3.8 as Front-end Development environment.
● Note pad ++ for drafting rough code
● MS-Word for documentation.
CODES:
CONCLUSIONS
“INDIAN CARS SPECIFICATION ”
has been prepared to make analysis of
various cars in INDIA
types of cars ,specification of cars,
introduction to variety of
high sales cars in INDIA

BIBLOGRAPHY
Data Analysis, the following books and literature are referred
to by me during the various phases of development of the
project.

1. NCERT Informatics Practices Class XII


2. Information Practices textbook ( class XI) by Sumita Arora
The following sites were referred to collect required data :

https://www.sesei.eu/wp-content/uploads/2018/12/Automotive-Sector-Report_-Final.pdf

https://www.v3cars.com/

Other than the above-mentioned books, the suggestions


and supervision of my teacher and my class experience also
helped me to develop this software project

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy