Upload Button Icon Add office photos

Filter interviews by

DXCorr Hardware Technologies HR Executive Generalist Interview Questions and Answers

Updated 24 Apr 2024

DXCorr Hardware Technologies HR Executive Generalist Interview Experiences

1 interview found

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

I applied via Company Website and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Just casual discussion about HR role
  • Q2. Email writing test - HR related emails

Interview Preparation Tips

Interview preparation tips for other job seekers - To crack this interview your written and verbal communication should be good.

Interview questions from similar companies

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

I applied via Referral and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Was working with Neoteric Distributor of Gigabyte also had previous experience of Intel

Round 2 - One-on-one 

(2 Questions)

  • Q1. Past experience your expectation
  • Ans. 

    I have a proven track record of exceeding sales targets and building strong relationships with clients.

    • Exceeded sales targets by 20% in my previous role

    • Developed and maintained relationships with key clients, resulting in repeat business

    • Implemented new sales strategies that increased revenue by 30%

  • Answered by AI
  • Q2. Competiton

Interview Preparation Tips

Interview preparation tips for other job seekers - Market Information is essential and What competition is doing what can be the solution

I applied via LinkedIn and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Hashmap working.
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Hashmap operations like insertion, deletion, and lookup have an average time complexity of O(1).

  • Answered by AI
  • Q2. Problem solving. Minimum absolute difference pairs

Interview Preparation Tips

Interview preparation tips for other job seekers - There were two people one hiring manager and one person who asked technical.
This person was so rude.I hardly understood what he was speaking his accent was so bad.I don't understand how a standard company like Applied Materials even hired this person who is lacking at a basic level of Communication.

One should make the person comfortable before the interview to even get the best from the candidate.

First question in discussion was what is your salary expectations and what offer do u already have that's pathetic to ask this question in the beginning itself.

They don't pay well yet they expect the candidate to be perfect.
Worst interview experience I have ever had .
Please be nice to candidates.Have some standards for your hiring process don't be rude and arrogant.if you want to hire a potential candidate be nice to the person at the first place that's when you can check the knowledge and technical capabilites of a person not just simply ask same set of questions.

Skills evaluated in this interview

I applied via Company Website and was interviewed in Jan 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Write your own stack?
  • Ans. 

    A stack is a linear data structure that follows the Last In First Out (LIFO) principle.

    • Implement using an array or linked list

    • Push operation adds element to top of stack

    • Pop operation removes element from top of stack

    • Peek operation returns top element without removing it

  • Answered by AI
  • Q2. How to find intersection happened between two linked list?
  • Ans. 

    To find intersection of two linked lists, traverse both lists and compare each node.

    • Traverse both linked lists and compare each node

    • Use two pointers, one for each linked list

    • If a node is common, return the node

    • If both pointers reach the end, return null

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Applied Materials Senior Software Engineer interview:
  • Data Structures
Interview preparation tips for other job seekers - Basic should be good, interview is easy to medium type only

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Aug 2022. There were 4 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 - Coding Test 

Problem would be given to solve

Round 3 - Technical 

(2 Questions)

  • Q1. Questions will be based on their the first round
  • Q2. Questions will be from their projects
Round 4 - HR 

(1 Question)

  • Q1. Behavioral questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

General aptitude questions

Round 2 - Coding Test 

Problem solving, solved 2 out of 3 questions

Round 3 - Group Discussion 

General topics were given in gd

Round 4 - Technical 

(2 Questions)

  • Q1. Programming concepts
  • Q2. Projects and coding round questions solved

I applied via Campus Placement and was interviewed in Dec 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Digital electronics, verilog code
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. General behavioral and situational questions about team members
Round 2 - Technical 

(1 Question)

  • Q1. Identify if the number is positive, negative or zero
  • Ans. 

    Identify if a number is positive, negative, or zero

    • Check if the number is greater than 0 to determine if it is positive

    • Check if the number is less than 0 to determine if it is negative

    • If the number is neither greater nor less than 0, it is zero

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
2-4 weeks
Result
No response

I was interviewed before Feb 2023.

Round 1 - Coding Test 

3 coding questions out of which 2 are easy and 1 is medium

Round 2 - Technical 

(1 Question)

  • Q1. 2 Interviewers kept on asking to write codes for each and every question they ask. I was given a tree problem and coded everything from scratch and executed written test cases and again I was asked to solv...

I applied via LinkedIn and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

6 Questions

  • Q1. References vs pointers
  • Ans. 

    References and pointers are both used to refer to memory locations, but references cannot be null and cannot be reseated.

    • Pointers can be null or uninitialized

    • Pointers can be reseated to point to a different memory location

    • References are automatically dereferenced

    • References cannot be used with arrays

    • Pointers can be used with arrays

  • Answered by AI
  • Q2. Where is it necessary to use references
  • Ans. 

    References are necessary when passing large objects to functions or when returning objects from functions.

    • When passing large objects to functions

    • When returning objects from functions

    • When working with complex data structures

    • When implementing operator overloading

    • When working with polymorphism

  • Answered by AI
  • Q3. Const pointers
  • Q4. Where to declare const pointers
  • Ans. 

    Const pointers should be declared in the same scope as the variable they point to.

    • Declaring const pointers in the same scope as the variable they point to ensures that the pointer cannot be used to modify the variable.

    • If the pointer is only used within a function, it should be declared within that function.

    • If the pointer is used across multiple functions, it should be declared in a header file or at the top of the sour...

  • Answered by AI
  • Q5. Copy constructor with pointers
  • Ans. 

    Copy constructor with pointers creates a new object by copying the values of the existing object's pointers.

    • Copy constructor is used to create a new object from an existing object.

    • Pointers in the new object point to the same memory locations as the original object.

    • Deep copy should be used to avoid shallow copy issues.

  • Answered by AI
  • Q6. New vs malloc
  • Ans. 

    new and malloc are used for dynamic memory allocation in C++ and C respectively.

    • new is an operator in C++ while malloc is a function in C.

    • new automatically calls the constructor while malloc does not.

    • new returns a pointer to the object while malloc returns a void pointer.

    • new throws an exception if allocation fails while malloc returns NULL.

    • new can be overloaded while malloc cannot be.

    • new and delete are used together wh

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well OOPS fundamentals

Skills evaluated in this interview

DXCorr Hardware Technologies Interview FAQs

How many rounds are there in DXCorr Hardware Technologies HR Executive Generalist interview?
DXCorr Hardware Technologies interview process usually has 1 rounds. The most common rounds in the DXCorr Hardware Technologies interview process are One-on-one Round.

Tell us how to improve this page.

DXCorr Hardware Technologies HR Executive Generalist Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Qualcomm Interview Questions
3.8
 • 253 Interviews
Intel Interview Questions
4.2
 • 214 Interviews
Tata Electronics Interview Questions
4.0
 • 146 Interviews
Texas Instruments Interview Questions
4.1
 • 120 Interviews
Synopsys Interview Questions
3.9
 • 88 Interviews
Molex Interview Questions
3.9
 • 53 Interviews
View all
Vlsi Engineer
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Amts
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Physical Design Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Memory Circuit Design Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare DXCorr Hardware Technologies with

Innovace Technology Solutions

1.0
Compare

Gigabyte Technology (India) Pvt. Ltd.

4.1
Compare

Intel

4.2
Compare

Qualcomm

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