Upload Button Icon Add office photos

Filter interviews by

Citrix Software Developer Interview Questions, Process, and Tips

Updated 16 Sep 2021

Citrix Software Developer Interview Experiences

1 interview found

Software Developer Interview Questions & Answers

user image CodingNinjas

posted on 16 Sep 2021

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

This was MCQ and Coding round, there were some MCQ questions and one coding question.

  • Q1. MCQ's

    25 MCQs-> based on object-oriented programming, Operating system, Data communication and networking.

  • Q2. Last Stone Weight

    We have a collection of stones, each stone has a positive integer weight.

    Each turn, we choose the two heaviest stones and smash them together.  Suppose the stones have weights x and y...

  • Ans. 
    • I used max priority queue to pop 2 stones and push back (Stone 1 weight-Stone 2 weight) and at the end returned front element of priority queue if left. Then the interviewer asked me to write its code and I wrote a neat and commented code and dry run it on the test cases given by the interviewer. He was satisfied with my approach.
  • Answered by CodingNinjas
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This round contained questions related to Object-Oriented Programming System and DP related coding problems.

  • Q1. Real time implementation of Object-oriented programming and types of polymorphism .
  • Ans. 
    • I explained the concept of Object-oriented programming through shapes class example and gave him the definition of polymorphism by again giving the same example. Then he asked me to write code for function overriding which I explained to him through inheritance example with virtual function explanation.
  • Answered by CodingNinjas
  • Q2. Edit Distance

    Given two strings str1 and str2 and below operations that can be performed on str1. Find minimum number of edits (operations) required to convert ‘str1’ into ‘str2’.

    1. Insert

    2. Remove

    3. Replac...

  • Ans. 
    • Firstly I gave him a recursion approach and then the interviewer asked me to reduce time complexity as the complexity of recursion was exponential so I gave him top-down DP approach(recursion with memoization) and wrote its proper code. At last, he was pretty impressed by my approach.
  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Electronics & Communication Engineering from Indira Gandhi Delhi Technical University for Women. I applied for the job as SDE - 1 in BangaloreEligibility criteria7.5Citrix interview preparation:Topics to prepare for the interview - Data Structure and algorithms, Object oriented programming, Operating system.Time required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Do practice a lot of DP problems and pay more focus on Data Structure and algorithms related problems. I prepare for my interview through the interview preparation course of Coding Ninjas and it was too good. You will get all the concepts that are asked in an interview there.

Application resume tips for other job seekers

Do mention 2-3 good projects and your previous internship experiences as it will give a good impression to the interviewer and increases your chances of selection.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Campus Placement

Round 1 - Aptitude Test 

Question related to operating system and computer network

Round 2 - Technical 

(1 Question)

  • Q1. Traverse all child nodes in tree
Round 3 - Technical 

(1 Question)

  • Q1. Question related to cloud and oops
Round 4 - Technical 

(1 Question)

  • Q1. Question related to my background and how web site work
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Written coding test
Basic coding questions
Only c c++
Easy level

Round 2 - Technical 

(2 Questions)

  • Q1. Bit manipulation
  • Q2. Rtos concepts,c coding concepts like structures,pointers
Round 3 - Technical 

(2 Questions)

  • Q1. About projects more detailly
  • Q2. About memory management and layout in c
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 Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

In first round 4 coding question like 1 dsa 2 database and one is api and question is very simple . coding round was conducted in hackerrank

Round 2 - Technical 

(2 Questions)

  • Q1. DSA QUESTION LIKE TREE AND GRAPH
  • Q2. DP AND SORTING APPROACH
Round 3 - Coding Test 

Again same but dsa question and oops concept in deep level

Interview Preparation Tips

Interview preparation tips for other job seekers - good knowledge in dsa , database , programming thats it
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Bubble sort and array was given
  • Q2. Create binary tree
  • Ans. 

    A binary tree is a data structure where each node has at most two children.

    • Start by creating a Node class with left and right child pointers.

    • Implement methods to insert, search, and delete nodes in the tree.

    • Consider different traversal methods like inorder, preorder, and postorder.

  • Answered by AI
  • Q3. HightBuilding Pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - just go through strivers videos

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

2medium level questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Project discussion for 30 mins
  • Q2. Dsa problem medium level
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Rest Apis questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Core java and OOPS and LLD

Interview Preparation Tips

Interview preparation tips for other job seekers - Good understanding of Core language and its framework

Software Developer Interview Questions & Answers

Amadeus user image Aswini Ramachandran

posted on 2 Oct 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Something based on hashet
  • Q2. Same with this too
Round 2 - Aptitude Test 

Basic questions were given..bar graphs,pie charts

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

(2 Questions)

  • Q1. Questions on Oops concepts
  • Q2. Questions on design patterns
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. What is inheritance?
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Allows a class to reuse code from another class

    • Creates a parent-child relationship between classes

    • Derived class inherits attributes and methods from base class

  • Answered by AI
  • Q2. What is oop principles?
  • Ans. 

    OOP principles are the fundamental concepts of object-oriented programming that help in designing and implementing software solutions.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Allowing a class to inherit properties and behavior from another class.

    • Polymorphism: The ability of objects to take on multiple forms or have multiple behaviors.

    • Abstraction: Hiding t...

  • Answered by AI
  • Q3. What is polymorphism principle?
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types or objects.

    • Examples include method overloading and method overriding in object-oriented programming languages like Java.

  • Answered by AI

Citrix Interview FAQs

How to prepare for Citrix Software Developer 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 Citrix. The most common topics and skills that interviewers at Citrix expect are Algorithms, C++, Data Structures, OOPS and CSS.

Tell us how to improve this page.

Citrix Software Developer Salary
based on 28 salaries
₹9.8 L/yr - ₹32 L/yr
135% more than the average Software Developer Salary in India
View more details

Citrix Software Developer Reviews and Ratings

based on 3 reviews

2.9/5

Rating in categories

2.6

Skill development

3.1

Work-Life balance

3.3

Salary & Benefits

2.5

Job Security

3.1

Company culture

2.0

Promotions/Appraisal

2.6

Work Satisfaction

Explore 3 Reviews and Ratings
Technical Support Engineer
160 salaries
unlock blur

₹4 L/yr - ₹16 L/yr

Senior Software Engineer
110 salaries
unlock blur

₹15 L/yr - ₹42.5 L/yr

Senior Technical Support Engineer
91 salaries
unlock blur

₹10.9 L/yr - ₹25 L/yr

Software Engineer2
61 salaries
unlock blur

₹15 L/yr - ₹33.6 L/yr

Software Engineer
60 salaries
unlock blur

₹10.5 L/yr - ₹29.2 L/yr

Explore more salaries
Compare Citrix with

VMware Software

4.4
Compare

Microsoft Corporation

4.1
Compare

IBM

4.1
Compare

Oracle

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview