Upload Button Icon Add office photos
Engaged Employer

i

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

Crosslynx Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Crosslynx Interview Questions and Answers

Updated 9 Apr 2025
Popular Designations

6 Interview questions

A C Developer was asked 2mo ago
Q. Given the head of a linked list, remove the n-th node from the end of the list and return its head.
Ans. 

Remove the N-th node from the end of a linked list efficiently using two-pointer technique.

  • Use two pointers: 'fast' and 'slow'.

  • Move 'fast' pointer N steps ahead.

  • Then, move both pointers until 'fast' reaches the end.

  • The 'slow' pointer will be at the node before the N-th from end.

  • Adjust pointers to remove the target node.

View all C Developer interview questions
A C Developer was asked 2mo ago
Q. Given the head of a sorted linked list, delete all duplicates such that each element appears only once. Return the linked list sorted as well.
Ans. 

This task involves removing duplicates from a sorted list, ensuring each element appears only once.

  • Iterate through the list: Use a loop to traverse the sorted list and compare each element with the next one.

  • Use a new index: Maintain a separate index for the unique elements, copying over only the distinct values.

  • Example: For a sorted list [1, 1, 2, 3, 3], the result should be [1, 2, 3].

  • In-place modification: If req...

View all C Developer interview questions
A Python Developer Trainee was asked 10mo ago
Q. What is a docstring in Python?
Ans. 

Docstring in Python is a string literal that occurs as the first statement in a module, function, class, or method definition.

  • Docstrings are used to document code and provide information about the purpose and usage of the code.

  • They are enclosed in triple quotes (either single or double) and are accessible through the __doc__ attribute.

  • Docstrings can be accessed using the help() function or by typing the object nam...

View all Python Developer Trainee interview questions
A Python Developer Trainee was asked 10mo ago
Q. What does the # symbol do in Python?
Ans. 

The # symbol is used to add comments in Python code, which are ignored by the interpreter.

  • Comments are used to explain the code and make it more readable for other developers.

  • Comments start with the # symbol and continue until the end of the line.

  • Comments can also be used to temporarily disable code without deleting it.

  • Example: # This is a comment in Python code.

View all Python Developer Trainee interview questions
A Python Developer Trainee was asked 10mo ago
Q. What is Python?
Ans. 

Python is a high-level, interpreted programming language known for its simplicity and readability.

  • Python is dynamically typed and garbage-collected.

  • It supports multiple programming paradigms like procedural, object-oriented, and functional programming.

  • Python has a large standard library and a thriving community of developers.

  • Example: print('Hello, World!')

View all Python Developer Trainee interview questions
A Python Developer Trainee was asked 10mo ago
Q. What are the break, continue, and pass statements in Python?
Ans. 

break, continue, and pass are control flow statements in Python.

  • break is used to exit a loop prematurely

  • continue is used to skip the current iteration and continue to the next one

  • pass is a null operation, used when a statement is required syntactically but you do not want any command or code to execute

View all Python Developer Trainee interview questions

Crosslynx Interview Experiences

3 interviews found

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is python?
  • Ans. 

    Python is a high-level, interpreted programming language known for its simplicity and readability.

    • Python is dynamically typed and garbage-collected.

    • It supports multiple programming paradigms like procedural, object-oriented, and functional programming.

    • Python has a large standard library and a thriving community of developers.

    • Example: print('Hello, World!')

  • Answered by AI
  • Q2. What does the # symbol do in python?
  • Ans. 

    The # symbol is used to add comments in Python code, which are ignored by the interpreter.

    • Comments are used to explain the code and make it more readable for other developers.

    • Comments start with the # symbol and continue until the end of the line.

    • Comments can also be used to temporarily disable code without deleting it.

    • Example: # This is a comment in Python code.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is docstring in python?
  • Ans. 

    Docstring in Python is a string literal that occurs as the first statement in a module, function, class, or method definition.

    • Docstrings are used to document code and provide information about the purpose and usage of the code.

    • They are enclosed in triple quotes (either single or double) and are accessible through the __doc__ attribute.

    • Docstrings can be accessed using the help() function or by typing the object name fol...

  • Answered by AI
  • Q2. What is break, continue and pass in pytjon?
  • Ans. 

    break, continue, and pass are control flow statements in Python.

    • break is used to exit a loop prematurely

    • continue is used to skip the current iteration and continue to the next one

    • pass is a null operation, used when a statement is required syntactically but you do not want any command or code to execute

  • Answered by AI

Skills evaluated in this interview

C Developer Interview Questions & Answers

user image Anonymous

posted on 7 Apr 2025

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Remove N-th Node form End of list
  • Ans. 

    Remove the N-th node from the end of a linked list efficiently using two-pointer technique.

    • Use two pointers: 'fast' and 'slow'.

    • Move 'fast' pointer N steps ahead.

    • Then, move both pointers until 'fast' reaches the end.

    • The 'slow' pointer will be at the node before the N-th from end.

    • Adjust pointers to remove the target node.

  • Answered by AI
  • Q2. Remove Duplicate form Sorted List
  • Ans. 

    This task involves removing duplicates from a sorted list, ensuring each element appears only once.

    • Iterate through the list: Use a loop to traverse the sorted list and compare each element with the next one.

    • Use a new index: Maintain a separate index for the unique elements, copying over only the distinct values.

    • Example: For a sorted list [1, 1, 2, 3, 3], the result should be [1, 2, 3].

    • In-place modification: If required...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Operating system
  • Q2. About your project
  • Q3. Question based on resume

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Crosslynx?
Ask anonymously on communities.

Interview questions from similar companies

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

(2 Questions)

  • Q1. WHATS YOUR NAME
  • Ans. 

    My name is John Smith, a seasoned engineer with over 10 years of experience in the field.

    • Full name: John Smith

    • Years of experience: 10+

    • Engineering background

  • Answered by AI
  • Q2. HOW MANY PROJECTS HAVE YOU DONE
  • Ans. 

    I have completed 10 projects in my career as a senior engineer.

    • Completed 10 projects in various industries such as automotive, aerospace, and telecommunications.

    • Led a team of engineers to successfully complete a project for a major automotive company.

    • Implemented new technologies in projects to improve efficiency and performance.

    • Collaborated with cross-functional teams to deliver projects on time and within budget.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Research 100% BEFORE JOINING ANY FAKE COMPANY
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Execution in Structure
  • Ans. 

    Execution in structure refers to the ability to effectively implement plans and strategies within an organized framework.

    • Understanding the overall goals and objectives of the organization

    • Developing detailed action plans to achieve those goals

    • Assigning tasks and responsibilities to team members

    • Monitoring progress and making adjustments as needed

    • Ensuring that resources are allocated efficiently

    • Communicating effectively w...

  • Answered by AI
  • Q2. High rise buildings

Skills evaluated in this interview

I applied via Walk-in and was interviewed before Jun 2021. 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 - One-on-one 

(1 Question)

  • Q1. What is data structure?
  • Ans. 

    Data structure is a way of organizing and storing data in a computer so that it can be accessed and used efficiently.

    • Data structures are used to manage large amounts of data efficiently.

    • They provide a way to organize data in a way that makes it easy to access and manipulate.

    • Examples of data structures include arrays, linked lists, stacks, queues, trees, and graphs.

  • Answered by AI
Round 3 - Coding Test 

Explain logic of stack

Interview Preparation Tips

Interview preparation tips for other job seekers - Its good place to start your career

Skills evaluated in this interview

I applied via Referral and was interviewed in Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. In technical round they gave me a plan and asked to take quantity of Rcc masonry and plastering

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared and while filling up the first form be extra careful
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Aug 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 - Technical 

(2 Questions)

  • Q1. Basic of HVAC system
  • Q2. Basic of revit MEP
Round 3 - Revit test 

(1 Question)

  • Q1. Asked to do a modelling in revit of HVAC and plumbing plan
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. About Revit software
  • Q2. About civil Engineering

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing

I applied via Walk-in and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Process engineering

Interview Preparation Tips

Interview preparation tips for other job seekers - good

Crosslynx Interview FAQs

How many rounds are there in Crosslynx interview?
Crosslynx interview process usually has 2 rounds. The most common rounds in the Crosslynx interview process are One-on-one Round and Technical.
How to prepare for Crosslynx 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 Crosslynx. The most common topics and skills that interviewers at Crosslynx expect are C++, Javascript, Python, Java and Multithreading.
What are the top questions asked in Crosslynx interview?

Some of the top questions asked at the Crosslynx interview -

  1. What is break, continue and pass in pytj...read more
  2. What does the # symbol do in pyth...read more
  3. What is docstring in pyth...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.2/5

based on 6 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Crosslynx Reviews and Ratings

based on 26 reviews

4.0/5

Rating in categories

3.8

Skill development

3.8

Work-life balance

3.8

Salary

3.5

Job security

4.0

Company culture

3.7

Promotions

3.4

Work satisfaction

Explore 26 Reviews and Ratings
QA Architect / Consultant

Noida

7-12 Yrs

₹ 22.5-32.5 LPA

Explore more jobs
Software Engineer
13 salaries
unlock blur

₹5 L/yr - ₹9.6 L/yr

Python Software Developer
5 salaries
unlock blur

₹4.5 L/yr - ₹12.5 L/yr

Technical Writer
4 salaries
unlock blur

₹5.5 L/yr - ₹6.5 L/yr

Module Lead
4 salaries
unlock blur

₹19.5 L/yr - ₹30 L/yr

Senior Software Engineer
4 salaries
unlock blur

₹11.1 L/yr - ₹15 L/yr

Explore more salaries
Compare Crosslynx with

Millennium Engineers & Contractors

4.2
Compare

Karam Industries

4.0
Compare

MaRS Planning & Engineering Services

3.9
Compare

S V S Projects India

3.3
Compare
write
Share an Interview