Upload Button Icon Add office photos

Filter interviews by

Idexcel Technologies Project Coordinator Interview Questions and Answers

Updated 14 Apr 2024

Idexcel Technologies Project Coordinator Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Need to explain on agile , JIRA and SDLC process
  • Q2. Advance excel questions
Round 2 - Behavioral 

(1 Question)

  • Q1. 1. explain scrum , agile 2.Resource management
  • Ans. 

    Scrum and Agile are project management methodologies focused on iterative development and flexibility. Resource management involves allocating and utilizing resources efficiently.

    • Scrum is a framework within Agile that emphasizes collaboration, self-organization, and cross-functionality of teams.

    • Agile is a project management approach that promotes adaptive planning, evolutionary development, early delivery, and continuo...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared JIRA, agile methodology and ms office tools like excel

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Walk-in and was interviewed before Jan 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 - Aptitude Test 

Be prepared for self introduction or sorts

Round 3 - Technical 

(2 Questions)

  • Q1. How to deal with BSOD error?
  • Ans. 

    BSOD error can be resolved by identifying the root cause and taking appropriate measures.

    • Identify the error code displayed on the BSOD screen

    • Check for any recent hardware or software changes

    • Run hardware diagnostics to identify any faulty hardware components

    • Update or reinstall drivers

    • Perform a system restore to a previous stable state

    • If all else fails, reinstall the operating system

    • Take preventive measures such as regul

  • Answered by AI
  • Q2. What is domain and why its necessary for any type of IT infrastructure?
  • Ans. 

    Domain is a logical grouping of network resources and devices that share a common security policy.

    • Domains help in managing and securing IT infrastructure

    • They provide a centralized authentication and authorization mechanism

    • Domains enable efficient resource sharing and collaboration

    • Examples of domains include Active Directory Domain Services, DNS domain, email domain, etc.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You must have knowledge of desktop or laptops and their functions.

Skills evaluated in this interview

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

I applied via Google and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

The duration was of 30 minutes with no switching of Tabs allowed.

Round 2 - HR 

(2 Questions)

  • Q1. Regarding my qualifications.
  • Q2. It was a situation based question.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. All Questions were to judge your capabilities
Round 2 - One-on-one 

(1 Question)

  • Q1. Questions were situation oriented

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Prompt and with positive approaches

I applied via Naukri.com and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. If client complains regarding the product wat u will do
  • Ans. 

    I would listen to the client's complaint, apologize for any inconvenience caused, and work towards finding a solution to their problem.

    • Listen attentively to the client's complaint

    • Apologize for any inconvenience caused

    • Ask questions to understand the issue better

    • Work towards finding a solution to the problem

    • Communicate the solution to the client and ensure their satisfaction

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Think analytical and answer accordingly

I applied via Naukri.com and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Experience and education background only
  • Q2. But still now responce from Wipro side
  • Q3. Iam willing to join the job on wfh basis for 4months.

Interview Preparation Tips

Interview preparation tips for other job seekers - They are asking expected salary

I was interviewed in Apr 2017.

Interview Questionnaire 

2 Questions

  • Q1. Java questions...
  • Q2. Tell me about urself and about us family and all
  • Ans. 

    I am a software developer with a passion for coding and problem-solving. My family is supportive and has always encouraged my career in tech.

    • Experienced software developer

    • Passionate about coding and problem-solving

    • Supportive family that encourages my career in tech

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Easy questions are there
Duration: 1 hour
Total Questions: 90

Round: Group Discussion
Experience: 12 members are there only 9 got selected
Tips: Be confident in urself and specially work in Communication skills
Duration: 15 minutes

Round: Technical Interview
Experience: Asking all the concepts of Java like oops collections threads
Tips: Prepare well on Java

Round: HR Interview
Experience: Everything was Gud but due to my certificate problem I got rejected.. Otherwise everything is good.
Tips: Be confident

College Name: C. V. Raman College of Engineering

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was an easy round which went really smooth.

  • Q1. 

    Nth Fibonacci Number Problem Statement

    Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1.

    Input:

    ...
  • Ans. 

    Calculate the Nth Fibonacci number efficiently using dynamic programming.

    • Use dynamic programming to store previously calculated Fibonacci numbers to avoid redundant calculations.

    • Start with base cases F(1) and F(2) as 1, then iteratively calculate F(n) using F(n-1) and F(n-2).

    • Ensure the input N is within the constraints 1 <= N <= 10000.

    • Example: For N = 5, the 5th Fibonacci number is 5 (1, 1, 2, 3, 5).

  • Answered by AI
  • Q2. 

    Prime Numbers Problem Statement

    Given a positive integer N, your task is to determine and return all prime numbers less than or equal to N.

    Input:

    N = 10

    Output:

    2 3 5 7

    Example:

    Input:
    N = 20
    Out...
  • Ans. 

    Implement a function to return all prime numbers less than or equal to a given positive integer N.

    • Create a function that takes a positive integer N as input

    • Iterate from 2 to N and check if each number is prime

    • Use a helper function to determine if a number is prime

    • Return an array of all prime numbers less than or equal to N

  • Answered by AI
  • Q3. What is a merge join in SQL?
  • Ans. 

    A merge join in SQL is a method of combining two sorted datasets by matching corresponding rows based on a specified condition.

    • Merge join is used when joining two large datasets that are already sorted.

    • It is more efficient than other join methods like nested loop join or hash join for sorted datasets.

    • The join condition must be an equality condition.

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.id = table2.i

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

The round went excellent. I really enjoyed it. Just be confident about whatever you answer

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPALarsen & Toubro Infotech (LTI) interview preparation:Topics to prepare for the interview - Database, Basic C/C++, Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This round went well. Interview depends on your basic knowledge of C/C++.

  • Q1. 

    Matrix Multiplication Task

    Given two sparse matrices MAT1 and MAT2 of integers with dimensions 'N' x 'M' and 'M' x 'P' respectively, the goal is to determine the resulting matrix produced by their multipl...

  • Ans. 

    Implement a function to multiply two sparse matrices and return the resulting matrix.

    • Create a function that takes two sparse matrices as input and returns the resulting matrix after multiplication

    • Iterate through the non-zero elements of the matrices to perform the multiplication efficiently

    • Handle the edge cases such as empty matrices or matrices with all zero elements

    • Ensure the dimensions of the matrices are compatible

  • Answered by AI
  • Q2. 

    Problem: Count Even or Odd in Array

    Tanmay and Rohit are best buddies. Tanmay gives Rohit a challenge involving an array of N natural numbers. The task is to perform and answer a series of queries on the ...

  • Ans. 

    Count the number of even or odd numbers in a range of an array based on given queries.

    • Create an array to store the input numbers.

    • Iterate through the queries and update or count even/odd numbers based on the query type.

    • Output the count of even or odd numbers for each query of type 1 or 2.

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical HR round with behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPALarsen & Toubro Infotech (LTI) interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Sep 2016.

Interview Preparation Tips

Round: Group Discussion
Experience: Interview was scheduled in Grab Job consultancy. In that, a class room, where we all asked to sit and interviewer was sitting in front and asked to speak one by one on the topic traffic situation in Hyderabad.
Tips: Just speak once two to three lines. Don't rush to speak. Take ur time and don't try speak repeatedly.
Duration: 35 minutes

Round: Technical Interview
Experience: System based test. Easy question from java , c, data structure.

Round: HR Interview
Experience: Not held because already we got too late.

Skills: Proficiency In English, Basic Coding
College Name: Medak College of engineering

Idexcel Technologies Interview FAQs

How many rounds are there in Idexcel Technologies Project Coordinator interview?
Idexcel Technologies interview process usually has 3 rounds. The most common rounds in the Idexcel Technologies interview process are Technical, Behavioral and HR.
How to prepare for Idexcel Technologies Project Coordinator interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Idexcel Technologies. The most common topics and skills that interviewers at Idexcel Technologies expect are Audit Compliance, Confluence, JIRA, Project Management and Release Management.
What are the top questions asked in Idexcel Technologies Project Coordinator interview?

Some of the top questions asked at the Idexcel Technologies Project Coordinator interview -

  1. 1. explain scrum , agile 2.Resource managem...read more
  2. Need to explain on agile , JIRA and SDLC proc...read more
  3. Advance excel questi...read more

Tell us how to improve this page.

Idexcel Technologies Project Coordinator Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
View all
Idexcel Technologies Project Coordinator Salary
based on 5 salaries
₹5.2 L/yr - ₹8.5 L/yr
36% more than the average Project Coordinator Salary in India
View more details

Idexcel Technologies Project Coordinator Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

2.0

Salary

3.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
55 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Test Engineer
39 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
39 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Test Engineer
32 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Idexcel Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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