Upload Button Icon Add office photos
Engaged Employer

i

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

Linkfields Innovations Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Linkfields Innovations Interview Questions and Answers

Updated 6 Sep 2023

Linkfields Innovations Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Job Portal and was interviewed before Sep 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 - Technical 

(4 Questions)

  • Q1. Technology related
  • Q2. How views will render custom tables
  • Ans. 

    Views can render custom tables by creating a custom template file and using Views API to define the table structure.

    • Create a custom template file for the table display

    • Use Views API to define the table structure and fields

    • Apply custom styling using CSS if needed

  • Answered by AI
  • Q3. Git Process and rebase
  • Q4. Custom api implemenation
Round 3 - Assignment 

Custom module development

Round 4 - HR 

(1 Question)

  • Q1. Salary Discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (210)

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. The Questions was mostly about the core oops and a coding problem.

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview takes a day , i applied through a portal and i got a call from Hr and then the second call i receive was after few hours regarding the techinical discussion and a coding problem . After that i got call for third round on same day and that was a formal discussion with the VP and then last round was with HR for the salary discussion.

The best thing is all rounds in one day .
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. DSA based Questions- Strings, Stack and Linked List
Round 2 - Technical 

(1 Question)

  • Q1. DSA and Conceptual Based Question
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2024. There were 6 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. DSA questions & SQL queries
Round 2 - Technical 

(1 Question)

  • Q1. Again dsa round
Round 3 - Behavioral 

(1 Question)

  • Q1. HR + general questions based on internship, projects, etc
Round 4 - Technical 

(1 Question)

  • Q1. DSA questions & SQL queries
Round 5 - Technical 

(1 Question)

  • Q1. Again dsa round
Round 6 - Behavioral 

(1 Question)

  • Q1. HR + general questions based on internship, projects, etc

Data Analyst Interview Questions & Answers

CIMET user image shirish jhalani

posted on 25 Apr 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Details about myself
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

3 DSA questions on array and strings 1 easy, 2 medium level

Round 2 - Assignment 

Create django backend project for book store

Round 3 - HR 

(1 Question)

  • Q1. Behaviour and Situations questions
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Based on Data Structures- Basic question like strings, stacks and Linked List
Round 2 - Technical 

(1 Question)

  • Q1. This interview included DSA, Conceptual and Database Questions- It was one level harder than 1st round
Round 3 - Technical 

(1 Question)

  • Q1. This round was with architect and it was also related to DSA and databse
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jun 2024. There were 4 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Concat two LinkedList without using any space and in O(n) time
  • Ans. 

    Concatenate two LinkedList without using extra space in O(n) time

    • Traverse the first LinkedList and update the last node's next pointer to the head of the second LinkedList

    • Return the head of the first LinkedList as the concatenated LinkedList

  • Answered by AI
  • Q2. 2 Sql Queries -1] rank window function 2] join
  • Q3. Project focused
Round 2 - Technical 

(3 Questions)

  • Q1. Discussion about Interfaces
  • Q2. Discussion about Dependency Injection in .net
  • Q3. Multiple .net questions
Round 3 - Technical 

(5 Questions)

  • Q1. Create Data structure to store file system like tree. it should get used for file and folder both.? find count of files in folder ?
  • Q2. Redis cache system
  • Q3. System designing Discussion
  • Q4. Dependency Injection discussion
  • Q5. Project in depth discussion
Round 4 - Behavioral 

(2 Questions)

  • Q1. Project Focused questions
  • Q2. What are your contributions in projects
  • Ans. 

    I have contributed to various projects by developing new features, fixing bugs, and optimizing code.

    • Developed new features based on client requirements

    • Fixed bugs reported by QA team

    • Optimized code for better performance

    • Collaborated with team members to meet project deadlines

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Energy Exemplar Software Engineer interview:
  • SQL
  • Data Structures
  • C#.Net

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Design patterns
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 Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was a mcq + coding round with computer fundamentals and aptitude + easy-medium level dsa questions.

Round 2 - Aptitude Test 

It was an offline aptitute test with 30 questions for 30 minutes.

Round 3 - Technical 

(4 Questions)

  • Q1. Detect a loop in the linked list
  • Ans. 

    Detect a loop in a linked list by using Floyd's Cycle Detection Algorithm

    • Use two pointers, slow and fast, to traverse the linked list

    • If there is a loop, the fast pointer will eventually meet the slow pointer

    • Initialize slow and fast pointers at the head of the linked list

    • Move slow pointer by one step and fast pointer by two steps in each iteration

    • If the fast pointer reaches the end of the list or meets the slow pointer,

  • Answered by AI
  • Q2. Find the unique element in an array
  • Ans. 

    Find the unique element in an array of strings

    • Iterate through the array and use a hashmap to store the frequency of each element

    • After iterating, check the hashmap for elements with frequency 1 to find the unique element

  • Answered by AI
  • Q3. Tell about your projects
  • Ans. 

    I have worked on various projects including a web application for a local business and a mobile app for tracking daily habits.

    • Developed a web application using HTML, CSS, and JavaScript for a local business to manage their inventory and sales.

    • Created a mobile app using React Native to track daily habits and provide reminders for healthy routines.

    • Collaborated with a team to implement new features and fix bugs in existin...

  • Answered by AI
  • Q4. Write a MySQL query for selecting the id of second highest salary from employee table
  • Ans. 

    MySQL query to select the id of second highest salary from employee table

    • Use ORDER BY clause to sort salaries in descending order

    • Use LIMIT to select the second row

    • Use a subquery to avoid duplicates if multiple employees have the same salary

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Energy Exemplar Associate Software Engineer interview:
  • RDBMS
  • Frontend
  • DSA
  • System Design

Skills evaluated in this interview

Linkfields Innovations Interview FAQs

How many rounds are there in Linkfields Innovations interview?
Linkfields Innovations interview process usually has 4 rounds. The most common rounds in the Linkfields Innovations interview process are Resume Shortlist, Technical and Assignment.
How to prepare for Linkfields Innovations 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 Linkfields Innovations. The most common topics and skills that interviewers at Linkfields Innovations expect are Javascript, SQL, CSS, Java and SAP Implementation.
What are the top questions asked in Linkfields Innovations interview?

Some of the top questions asked at the Linkfields Innovations interview -

  1. How views will render custom tab...read more
  2. Git Process and reb...read more
  3. Custom api implemenat...read more

Tell us how to improve this page.

Linkfields Innovations Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

MyOperator Interview Questions
3.4
 • 17 Interviews
KDK Software Interview Questions
3.1
 • 15 Interviews
Idfy Interview Questions
3.6
 • 15 Interviews
Toast Interview Questions
3.7
 • 14 Interviews
Exotel Interview Questions
3.1
 • 12 Interviews
CIMET Interview Questions
4.4
 • 5 Interviews
View all

Linkfields Innovations Reviews and Ratings

based on 31 reviews

3.7/5

Rating in categories

3.6

Skill development

3.4

Work-life balance

3.1

Salary

3.2

Job security

3.4

Company culture

3.1

Promotions

3.2

Work satisfaction

Explore 31 Reviews and Ratings
Associate Software Engineer
20 salaries
unlock blur

₹3.7 L/yr - ₹8.5 L/yr

Software Engineer
14 salaries
unlock blur

₹3.8 L/yr - ₹10 L/yr

Software Developer
11 salaries
unlock blur

₹2.5 L/yr - ₹8 L/yr

Drupal Developer
8 salaries
unlock blur

₹8 L/yr - ₹10 L/yr

Business Analyst
7 salaries
unlock blur

₹2.4 L/yr - ₹11.5 L/yr

Explore more salaries
Compare Linkfields Innovations with

Yalamanchili Software Exports

3.3
Compare

ScoreMe Solutions

4.3
Compare

Xtancia Technosoft

4.0
Compare

Global Edge Software

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