Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Exicom Team. If you also belong to the team, you can get access from here

Exicom Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Exicom Graduate Trainee Interview Questions and Answers

Updated 2 Aug 2021

Exicom Graduate Trainee Interview Experiences

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jun 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. Introduction, Family Background, last company details & Salary expectations
Round 3 - Technical 

(1 Question)

  • Q1. All the questions asked were about my previous company roles experience & operations & also Advanced Excel knowledge

Interview Questionnaire 

4 Questions

  • Q1. What do you know about the company?
  • Ans. 

    The company is a leading technology firm specializing in software development and IT solutions.

    • The company was founded in 2005 and has since grown to become a global player in the industry.

    • They have a diverse portfolio of clients ranging from small startups to multinational corporations.

    • The company is known for its innovative and cutting-edge solutions, constantly pushing the boundaries of technology.

    • They have a strong...

  • Answered by AI
  • Q2. What is rectifier, its types and function of UPS?
  • Ans. 

    A rectifier is an electrical device that converts alternating current (AC) to direct current (DC). UPS stands for Uninterruptible Power Supply.

    • Rectifier is used to convert AC to DC.

    • Types of rectifiers include half-wave, full-wave, and bridge rectifiers.

    • UPS is a device that provides backup power during power outages.

    • The function of a UPS is to ensure uninterrupted power supply to connected devices.

    • UPS uses a rectifier t...

  • Answered by AI
  • Q3. Tell about yourself?
  • Ans. 

    I am a recent graduate with a strong academic background and a passion for learning and professional growth.

    • Recent graduate with a Bachelor's degree in Business Administration

    • Strong academic performance with a GPA of 3.8

    • Completed internships at two reputable companies, gaining practical experience in marketing and finance

    • Participated in various extracurricular activities, including leadership roles in student organizat...

  • Answered by AI
  • Q4. Where you like to be after 5 years?
  • Ans. 

    In 5 years, I see myself in a leadership position, contributing to the growth and success of the organization.

    • Leading a team or department

    • Implementing innovative strategies

    • Driving organizational growth

    • Mentoring and developing junior employees

    • Contributing to decision-making processes

    • Building strong relationships with clients or stakeholders

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Basic aptitude which comprises of all topics and few technical mcq

Round 3 - HR 

(1 Question)

  • Q1. Questions from Resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong on basic electronics

Interview Preparation Tips

Round: Other Interview
Experience: Most interviews progress depending on what is being highlighted/ stressed by you. Highlight things accordingly in resume and during interviews. My interview was focused on advanced VLSI electives/projects as I highlighted them during the interview and in resume.
Tips: CG cut-off: CG is a factor but nothing rigid above 8 would be useful. Generally long
shortlists are released. Therefore, selection is extremely dependent on interviews.

General Tips: Intel HR Interviews mostly concentrate on ethics. Make sure all replies are ethically correct. Work environment - one of the top 3 best places to work in India. Good employee care.
Note: Sometimes the HR interviews are taken by tech interviewers themselves. There is not always
an independent panel for HR interviews.
College Name: IIT MADRAS

I applied via Referral and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Linked list vs array Union vs array Prime no Explain memory segment How code executes [29/06, 20:53] Storage class [29/06, 20:53] Segmentation fault Dynamic memory allocation [29/06, 20:53] Calculator [...
  • Ans. 

    Questions related to data structures, memory management, programming languages, and computer architecture.

    • Linked list is a dynamic data structure while array is a static data structure.

    • Union is a data type that allows storing different data types in the same memory location as opposed to array which stores elements of the same data type.

    • Prime numbers are numbers that are only divisible by 1 and themselves.

    • Memory segmen...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Must have basic knowledge of C and OS
It's good is you know linkux

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(5 Questions)

  • Q1. Question related to C, and c++ 1 SORT the array using bubble sort
  • Q2. What is virtual function
  • Ans. 

    Virtual function is a function in C++ that can be overridden in a derived class.

    • Virtual functions are declared in a base class and defined in a derived class.

    • They allow polymorphism, where a derived class object can be treated as a base class object.

    • The virtual keyword is used to declare a function as virtual.

    • Example: virtual void display() = 0; // pure virtual function

    • Example: virtual void display() { cout << 'Base cl

  • Answered by AI
  • Q3. What is constructor
  • Ans. 

    A constructor is a special method that is used to initialize objects of a class.

    • Constructors have the same name as the class they belong to.

    • They are called automatically when an object of the class is created.

    • They can be used to set default values for object properties.

    • Constructors can be overloaded to accept different parameters.

    • Example: public class Car { public Car() { // constructor code here } }

  • Answered by AI
  • Q4. What is destructor
  • Ans. 

    A destructor is a member function of a class that is responsible for destroying objects of that class.

    • Destructors have the same name as the class preceded by a tilde (~).

    • They are called automatically when an object is destroyed or goes out of scope.

    • They are used to release resources allocated by the object during its lifetime.

    • Example: ~MyClass() { delete[] myArray; }

    • Destructors cannot be overloaded or inherited.

  • Answered by AI
  • Q5. What is friend class
  • Ans. 

    Friend class is a class that has access to the private and protected members of another class.

    • Friend class is declared using the 'friend' keyword.

    • It allows the friend class to access the private and protected members of the class it is friends with.

    • Friendship is not mutual, meaning the friend class does not grant access to its own private and protected members.

    • Friend functions can also be declared to have access to pri...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Intel Graduate Trainee interview:
  • C
  • C++
  • OOPS
  • programming

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

MCQs on basics of digital design, comp arch and asic flow

Round 3 - Technical 

(2 Questions)

  • Q1. Projects on my resume
  • Q2. Verilog code for dff
  • Ans. 

    Verilog code for D flip-flop (DFF) is a fundamental building block in digital design.

    • Use always block to describe the behavior of DFF

    • Use non-blocking assignment to update the output based on the input

    • Include a clock signal to trigger the update of the output

    • Example: always @(posedge clk) begin q <= d; end

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Introduction to yourself
  • Ans. 

    I am a recent graduate with a degree in Business Administration and a passion for marketing and project management.

    • Recent graduate with a degree in Business Administration

    • Passionate about marketing and project management

    • Strong communication and organizational skills

    • Experience in internships and extracurricular activities

  • Answered by AI
  • Q2. Why should we hire you
  • Ans. 

    I am a dedicated and motivated individual with relevant skills and experience to excel in this role.

    • I have a strong academic background in [relevant field]

    • I have completed internships at [relevant companies] where I gained practical experience

    • I possess excellent communication and teamwork skills, as demonstrated by my involvement in [relevant projects or activities]

    • I am highly motivated and eager to learn and grow with

  • Answered by AI

Project Engineer Interview Questions & Answers

Fuji Electric user image Krushna Ramesh Rayate

posted on 21 Dec 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. They Ask about my previous experience in company and Electrical Questions.

Tell us how to improve this page.

Interview Questions from Similar Companies

Intel Interview Questions
4.2
 • 223 Interviews
Texas Instruments Interview Questions
4.1
 • 125 Interviews
Synopsys Interview Questions
3.8
 • 89 Interviews
Molex Interview Questions
3.9
 • 53 Interviews
View all
Exicom Graduate Trainee Salary
based on 7 salaries
₹2.4 L/yr - ₹4.5 L/yr
18% less than the average Graduate Trainee Salary in India
View more details
Engineer
152 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Diploma Trainee Engineer
146 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Junior Engineer
132 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
111 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
100 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Exicom with

Su-Kam Power Systems

3.6
Compare

Luminous Power Technologies

4.2
Compare

Microtek International

3.7
Compare

Delta Electronics

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview