KPIT Placement Papers, KPIT Online Test Pattern, KPIT Syllabus, KPIT Online Test Pattern | KPIT Placement Papers 2023 | KPIT Off Campus Drive 2023
Job Role | Graduate Trainee |
Job Type | Internship + Full Time |
Experience | Freshers |
Qualification | BE/ BTech |
Year of Passing | 2023 |
Salary | ₹4,50,000/- per annum |
Job Location | Across India |
Last date | 13th October 2023 |
About Company:
KPIT Technologies Limited is an Indian multinational corporation headquartered in Pune, Maharashtra, India. Popularly known as KPIT, it provides software to the automotive companies. KPIT has development centers in Europe, USA, Japan, China, Thailand, and IndiaName Of Organization:
KPIT
KPIT Technologies Test Structure:
Day 1: Section A- Aptitude
- Engineering Mathematics
- Professional skills and
- Knowledge of English Language
- Basics of C Language
- Algorithmic thinking
Domain specific questions (Attempt any one section from the following as per your expertise)
Day 2: Coding round and domain specific questions
2) The average age of a class of 22 students is 21 years. The average increased by 1 when the teacher's age also included. What is the age of the teacher?
2. Solve
1) Select the option in which both the columns are exactlysame:
2) I ___ watching TV when Paul and Simon arrived.
1) In statement "char *const q = "KPIT" ;" q is a:
For the following problem, what are the correct steps to obtain the right solution?Find the dimensions of a rectangle with perimeter 1000 meters sothat the area of the rectangle is a maximum.
Apply for KPIT Technologies Off Campus Drive 2023 for Engineer Trainee Position | KPIT Freshers Drive 2023 | Off Campus jobs
- Circuit Branches
- Computer/ IT Engineering
- Electrical Engineering
Day 2: Coding round and domain specific questions
- Track 1:Programming in C and
- Embedded C
- Track 2: Programming in C++
- Track 3: MATLAB, Simulink and C Programming
KPIT Technologies Syllabus Pattern:
KPIT Syllabus Day 1: Section A
What should you expect in this section?This is common for all the participants- Aptitude
- Engineering Mathematics
- Professional Skills and Knowledge of English Language
- Basics of C Language
- Algorithmic Thinking
KPIT Example Problem on Aptitude
1) The percentage profit earned by selling an item for Rs. 1920 is equal to the percentage loss incurred by selling the same item for Rs. 1280. Atwhat price should the item be sold tomake 25% profit?- A) Insufficient Data
- B) Rs. 3000
- C) Rs. 2000
- D) Rs. 2200
2) The average age of a class of 22 students is 21 years. The average increased by 1 when the teacher's age also included. What is the age of the teacher?
- A) 48
- B) 45
- C) 43
- D) 44
KPIT Example Problem on Engineering Mathematics
1) The lowest eigen value of the matrix4 21 3- A) 5
- B) 2
- C) 1
- D) 4
2. Solve
- A. 0.25
- B. 0.5
- C. 1
- D. 2
Example Problem on Professional Skills and Knowledge of English Language
1) Select the option in which both the columns are exactlysame:
- A) KPIT Technology Ltd KPIT Technologies Ltd
- B) Larsen and Tuobro Ltd Larsen and Toubro Ltd
- C) Tata Consultancy Service Tata Consultancy Services
- D) Google Inc. Ltd. Google Inc. Ltd.
2) I ___ watching TV when Paul and Simon arrived.
- A) were
- B) is
- C) was
- D) am
KPIT Example Problem on Basics of C Language
1) In statement "char *const q = "KPIT" ;" q is a:
- A) pointer to constant
- B) constant pointer
- C) const pointer to constant
- A) True
- B) False
KPIT Example Problem on Algorithmic Thinking
For the following problem, what are the correct steps to obtain the right solution?Find the dimensions of a rectangle with perimeter 1000 meters sothat the area of the rectangle is a maximum.
A) Find the derivative of the equation: A x = 500 x − ______You will get max(A) at dA/dx=0. and solve the equation.B) Find the double derivative of the equation: A x = 500 x − x(x)C) Find the relation between x and y i.e., 1000 = 2x + 2y. Hence,y = 500 – xD) Find the equation for area. A(x) = xy = x(500 − x) =500x – x(x)E) Apply constrains 0 <= x <= 500
int main(void)
{
int data[1000];
int x = 1, y = 5, c = 25, d = 7;
for (int i = 0; i < 1000; ++i)
{
data[i] = (((c % d) * x / y) % d) * i;}
return 0;}
- a) C, D, A
- b) A, B, C, D
- c) E, B, D
- d) E, A ,B, C, D
KPIT Syllabus for Day 1 – Section B (Only one Sub-section to be attempted)
KPIT Test Example For Circuit Branches :(Electronics and Communication / Electrical and Electronics / Electronics and Telecommunication / Instrumentation)KPIT Example Problem for Circuit Branches
1) Which of the following transfer function will havethe greatest maximum overshoot?- A) 9/(s2+2s+9)
- B) 16/(s2+2s+16)
- C) 25/(s2+2s+25)
- D) 36/(s2+2s+36)
- A) AB’ + C
- B) AB + AC
- C) A’B + AC’
- D) AB + A
KPIT Example Problem for Computer Science / IT Engineering
1) Which of the following recursive formula can be used tofind the factorial of a number?- A) fact(n) = n * fact(n)
- B) fact(n) = n * fact(n+1)
- C) fact(n) = n * fact(n-1)
- D) fact(n) = n * fact(1)
- A) Hiding the implementation
- B) Showing the important data
- C) Hiding the important data
- D) Hiding the implementation and showing only the features
KPIT Syllabus for Day 2 - KPIT Syllabus Programming in C and Embedded C (Track -1)
You should expect the following sections- Section 1: MCQ of C: 25 questions (approx. 35 min)
- Section 2: Five code snippets in Embedded Software Development (approx. 35 min)
- Section 3: MCQ of Embedded C: 25 questions (approx. 35 min)
- Section 4: Two Coding assignments in C (approx. 75 min)
KPIT Problem For C Programming (Track 1)
Code snippet #1:#include <stdio.h>int main(void)
{
int data[1000];
int x = 1, y = 5, c = 25, d = 7;
for (int i = 0; i < 1000; ++i)
{
data[i] = (((c % d) * x / y) % d) * i;}
return 0;}
Code snippet #2:
#include <stdio.h>
int main(void)
{
int data[1000];
int x = 1, y = 5, c = 25, d = 7;
int value = (((c % d) * x / y) % d);
for (int i = 0; i < 1000; ++i) {
data[i] = value * i;
}
return 0;
OUTPUT :
A) Code snippet #1 and code snippet 2 both leads to speed optimized code
B) Code snippet #1 leads to speed optimized code
C) Code snippet #2 leads to speed optimized code
D) Code snippet #1 and code snippet #2 will have same execution times in similar environment
KPIT Syllabus for Day 2 - KPIT Syllabus Programming in C++ (Track 2)
You should expect the following sections
- Section 1: MCQ of C++ and OOPS Concepts: 60 questions (75 min)
- Section 2: One Coding challenge in C++ (75 min)
KPIT Problem For C++ Programming (Track 2)
Predict the output of given code snippet?
Code Snippet question for CPP:
using namespace std;
int i;
class A
{
public:
~A()
{
i=10;
}
};
{
i=3;
A ob;
return i;
}
int main()
{
cout << foo() << endl;
return 0;
}
};
- A) 0
- B) 3
- C) 10
- D) None of the above
KPIT Syllabus for Day 2 - KPIT Syllabus For MATLAB, Simulink and C Programming (Track 3)
You should expect the following sections
- Section 1: MCQ of C: 15 questions (15 min)
- Section 2: Four code snippets in C (20 min)
- Section 3: MCQ on MATLAB (MATLAB Programming and Signal Processing): 10 questions (20 min)
- Section 4: Five code snippets in MATLAB (25
- min)
- Section 5: MCQ on Simulink (Math Modelling, Control System, Stateflow and Physical Modelling with Simscape): 10 questions (45 min)
- Section 6: Two Coding assignments in C (approx. 55 min)
KPIT Syllabus for Day 2 - KPIT Syllabus For For ML / DL and C Programming (Track 4)
You should expect the following sections
- Section 1: MCQ of C: 15 questions (25 min)
- Section 2: Two Coding assignments in C (approx. 55 min)
- Section 3 : MCQ of Machine Learning and Deep Learning : 25 Questions (100 Mins)
KPIT Problems on ML / DL and C Programming
1) Which of the following is/are Limitations of deep learning?
- A) Data labeling
- B) Obtain huge training datasets
- C) Both A and B
- D) None of the above
2) CNN is mostly used when there is an?
- A) structured data
- B) unstructured data
- C) Both A and B
- D) None of the above
KPIT Syllabus for Day 2 - KPIT Syllabus For Java (Track 5)
You should expect the following sections
- Section 1: MCQ of Java and OOPS: 70 questions (180 min)
KPIT Problems on Programming in Java
1)Which of the following is/are Limitations of deep learning?
- A) Data labeling
- B) Obtain huge training datasets
- C) Both A and B
- D) None of the above
2) CNN is mostly used when there is an?
- A) structured data
- B) unstructured data
- C) Both A and B
- D) None of the above
Latest IT Off Campus Freshers Recruitment | (2019, 2020, 2021, 2022, 2023 Batch)
- Apply Here
Off Campus Drive For Freshers | BE/BTech/ME/MTech/MCA/MSC- Apply Here
Is there any negative marking for questions
ReplyDelete