Upload Button Icon Add office photos

Citrix R&d India Pvt. Lit

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Citrix R&d India Pvt. Lit Software Developer Interview Questions and Answers

Updated 27 Aug 2024

Citrix R&d India Pvt. Lit Software Developer Interview Experiences

3 interviews found

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I was interviewed in Feb 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Java internals memory management
  • Q2. Coding question based on linked list
Round 2 - One-on-one 

(2 Questions)

  • Q1. Android life cycle explain
  • Ans. 

    Android life cycle refers to the stages a mobile app goes through from creation to termination.

    • Android app starts in onCreate() method

    • Moves to onStart() and onResume() when app becomes visible

    • Goes to onPause() when app is partially visible

    • Enters onStop() when app is no longer visible

    • Finally reaches onDestroy() when app is terminated

  • Answered by AI
  • Q2. Android kotlin co routines

Skills evaluated in this interview

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

Two questions are asked:
Reverse linked list
2 sum (leetcode)

Round 2 - Technical 

(1 Question)

  • Q1. Theoretical questions were asked
Round 3 - HR 

(1 Question)

  • Q1. Basic and behaviour questions

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

50 questions 2 coding questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Dicker question
  • Q2. Cryptography questions

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops concepts, Exception Handling & other Core Java concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Search & Contact recruiters who hire for ur domain on LinkedIn & share ur resume with them, search relevant jobs on LinkedIn & apply.

Go to companies' websites & create ur profile.

Update ur profile daily on naukri. 👍🏻

Interview Questionnaire 

1 Question

  • Q1. In C# --> Abstraction, Interface , Abstract Method, Abstract Class, Polymorphisms, Encapsulation ,Inheritance, Serialization,
  • Ans. 

    C# concepts including abstraction, interface, abstract method, abstract class, polymorphism, encapsulation, inheritance, and serialization.

    • Abstraction: hiding implementation details

    • Interface: defining a contract for behavior

    • Abstract method: method without implementation

    • Abstract class: class with one or more abstract methods

    • Polymorphism: ability of objects to take on multiple forms

    • Encapsulation: bundling data and behavi...

  • Answered by AI

Skills evaluated in this interview

I was interviewed before May 2016.

Interview Preparation Tips

Round: written test
Experience: it was elitmus test conducted by the company itself on campus. As per my knowledge only those scoring 90 percentile got selected for round 2.
Tips: Attempt only those ques that are necessary for scoring 90+ in e litmus. Specially in verbal don't attempt more then required questions, though you might be tempted. The aim is not to score max bt to score 90+

Round: Technical Interview
Experience: This was a programming based round. I was asked to write algorithms for various array linked list based problems. There was cross questioning prompting to reduce complexity and to use different data structures for same problems.

Mostly it focused on subjects like c, data structures and ADA.
Tips: Be clear with basic of data structures and algorithms. Pointers, queue, stacks, array linked lists, sorting etc are the keywords.

Round: Technical Interview
Experience: This was a information security specific round since that was my major. In depth cross questioning on my thesis topics, honeypots, network intrusion etc. Security certificates, and on the go problems to provide security solution layer wise in different scenarios. Security concept of torrents was also asked in detail.
Tips: It was more of a security discussion and throwing of ideas about how things in a particular case could work or could not. Don't worry about right or wrong answer just be clear with your reasoning about the solution you are suggesting.

Round: Other Interview
Experience: I don't know what to name this round, but it focused mainly on developing test cases for an object. Say they gave me a stapler and said to develop a test plan listing down test cases for a given object to pass so that it can be confirmed that it is a stapler. Another scenario was with a lift.
Tips: This is one round where your presence of mind and inter personal skills matter. I think the way you present your thoughts was most important here.

Round: Behavioural Interview
Experience: This was was mostly about how would you react in a given professional situation
Like your assigned work could not be completed on time, or if you are doing something wrong with the work assigned.
Tips: This is all about inter personal skills and putting your best foot forward :)

College Name: Indira Gandhi Delhi Technical University For Women, Delhi

I was interviewed before Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 70 Minutes
Round difficulty - Medium

This round had 40 MCQ's followed by 2 questions of DS and Algo. The programming questions were preety standard and can be solved within 30 minutes.

  • Q1. 

    Maximum Subarray Sum Problem Statement

    Given an array arr of length N consisting of integers, find the sum of the subarray (including empty subarray) with the maximum sum among all subarrays.

    Explanation...

  • Ans. 

    Find the sum of the subarray with the maximum sum among all subarrays in a given array.

    • Iterate through the array and keep track of the maximum sum subarray seen so far.

    • Use Kadane's algorithm to efficiently find the maximum subarray sum.

    • Handle cases where all elements are negative or array is empty.

    • Example: For input arr = [-2, 1, -3, 4, -1], the maximum subarray sum is 4.

  • Answered by AI
  • Q2. 

    Remove Character from String Problem Statement

    Given a string str and a character 'X', develop a function to eliminate all instances of 'X' from str and return the resulting string.

    Input:

    The first lin...
  • Ans. 

    Develop a function to remove all instances of a given character from a string.

    • Iterate through the string character by character and only add characters that are not equal to the given character to a new string.

    • Alternatively, use built-in string manipulation functions to remove all instances of the given character from the string.

    • Ensure the function handles edge cases such as empty strings or strings with no instances o...

  • Answered by AI
Round 2 - Face to Face 

(7 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had questions from DSA, OS, DBMS and Computer Networks. The programming question was quiet easy and I coded it preety fast after discussing the appropriate approach and complexity analysis.

  • Q1. 

    Intersection of Linked List Problem

    You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list.

    Your task is to determine t...

  • Ans. 

    Find the node where two linked lists merge, return -1 if no merging occurs.

    • Traverse both lists to find their lengths and the difference in lengths

    • Move the pointer of the longer list by the difference in lengths

    • Traverse both lists simultaneously until they meet at the merging point

  • Answered by AI
  • Q2. Can you explain the concepts of multitasking and multiprogramming?
  • Ans. 

    Multitasking involves executing multiple tasks simultaneously, while multiprogramming involves running multiple programs on a single processor.

    • Multitasking allows multiple tasks to run concurrently on a single processor, switching between them quickly.

    • Multiprogramming involves loading multiple programs into memory and executing them concurrently, utilizing idle CPU time efficiently.

    • Examples of multitasking include runn...

  • Answered by AI
  • Q3. What is the difference between a process and a program?
  • Ans. 

    A process is an executing instance of a program, while a program is a set of instructions stored in the computer's memory.

    • A program is a static set of instructions stored on disk, while a process is a dynamic instance of those instructions being executed in memory.

    • Multiple processes can be running the same program simultaneously, each with its own memory space and resources.

    • Processes have their own unique process ID (P...

  • Answered by AI
  • Q4. What is the difference between a process and a thread?
  • Ans. 

    A process is an instance of a program, while a thread is a unit of execution within a process.

    • A process has its own memory space, while threads share the same memory space.

    • Processes are independent and isolated, while threads can communicate and share resources.

    • Creating a new process is more resource-intensive than creating a new thread.

    • Processes have their own program counter, while threads share the same program coun...

  • Answered by AI
  • Q5. What is the main difference between UNION and UNION ALL?
  • Ans. 

    UNION combines and removes duplicate rows, UNION ALL combines without removing duplicates.

    • UNION combines the result sets of two or more SELECT statements into a single result set

    • UNION removes duplicate rows from the result set

    • UNION ALL combines the result sets without removing duplicates

    • UNION is slower than UNION ALL as it requires additional processing to remove duplicates

    • Use UNION when you want to combine and remove ...

  • Answered by AI
  • Q6. What are the advantages of using views in a database management system?
  • Ans. 

    Views provide a virtual representation of data, offering advantages such as simplifying complex queries, enhancing security, and improving performance.

    • Views simplify complex queries by predefining commonly used joins, filters, and aggregations.

    • Views enhance security by allowing users to access only specific columns or rows of a table.

    • Views improve performance by storing the results of complex queries, reducing the need...

  • Answered by AI
  • Q7. What is the ARP protocol?
  • Ans. 

    ARP stands for Address Resolution Protocol, used to map IP addresses to MAC addresses in a local network.

    • ARP is used to find the MAC address of a device based on its IP address

    • It operates at the data link layer of the OSI model

    • ARP requests are broadcasted to all devices on the local network

    • Example: When a device wants to communicate with another device on the same network, it uses ARP to find the MAC address of the des

  • Answered by AI
Round 3 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

This is a cultural fitment testing round. HR was very frank and asked standard questions. Then we discussed about my role.

  • Q1. Why should we hire you?
  • Ans. 

    I should be hired because of my strong technical skills, problem-solving abilities, and passion for software development.

    • I have a solid understanding of data structures and algorithms.

    • I have experience in developing and debugging complex software systems.

    • I am a quick learner and can adapt to new technologies and programming languages.

    • I have a track record of delivering high-quality code on time.

    • I am a team player and c...

  • Answered by AI
  • Q2. What is something about you that is not included in your resume?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAHewlett Packard Enterprise interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 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

Interview Preparation Tips

General Tips: I asked my seniors about the interview process. Their guidelines were very helpful. Always try to bring the interviewer into your comfort zone. Also be confident and expressive while explaining. Explain your thought process while solving. Even though you don't get the solution the thought process might be very important for your selection.
College Name: NIT SURATHKAL

Interview Questionnaire 

1 Question

  • Q1. Basic java, core java

Interview Preparation Tips

Round: Test
Experience: Oracle had an online test which includes 3
Sections:
1. Programming: basic C++/java programming + data structure. One need to have good hand over oops
to score well in this section.

2. Aptitude: General Aptitude Questions

3. General Maths: Very simple maths problem (+2 level) but needs very very good speed.
Tips: Individual cutoff was not declared, but different cutoff for different profile is expected.
Oracle has no GD round.

Round: Interview
Experience: In 2nd round of interview, there was more programming, less resume based question and more emphasis on will I be comfortable in an IT sector. Some apti questions were also asked.

Round: Interview
Experience: 1st round was completely on resume based. Each and every project and intern is discussed in detail. Most of the extracurricular activities were also discussed. In the 1st interview, some basic program like fibonacci series by recursion, star pattern by loop etc were asked.

Round: Interview
Experience: Next round was HR. I was asked about the earlier 2 interviews and some basic HR questions.

College Name: IIT Roorkee
Contribute & help others!
anonymous
You can choose to be anonymous

Citrix R&d India Pvt. Lit Interview FAQs

How many rounds are there in Citrix R&d India Pvt. Lit Software Developer interview?
Citrix R&d India Pvt. Lit interview process usually has 2-3 rounds. The most common rounds in the Citrix R&d India Pvt. Lit interview process are One-on-one Round, Coding Test and Technical.
What are the top questions asked in Citrix R&d India Pvt. Lit Software Developer interview?

Some of the top questions asked at the Citrix R&d India Pvt. Lit Software Developer interview -

  1. Android life cycle expl...read more
  2. Coding question based on linked l...read more
  3. Java internals memory managem...read more

Recently Viewed

INTERVIEWS

Gx India

4 interviews

INTERVIEWS

Custom Automated Prosthetics

4 interviews

INTERVIEWS

GlobalLogic

No Interviews

INTERVIEWS

HPCL-Mittal Energy Limited

No Interviews

INTERVIEWS

GOLFLAN TECHNOLOGY SOLUTIONS

No Interviews

INTERVIEWS

Shadowfax Technologies

No Interviews

SALARIES

Accenture

INTERVIEWS

Visa

No Interviews

INTERVIEWS

MathWorks

No Interviews

INTERVIEWS

NetApp

No Interviews

Tell us how to improve this page.

Citrix R&d India Pvt. Lit Software Developer Interview Process

based on 3 interviews

Interview experience

3.3
  
Average
View more
Citrix R&d India Pvt. Lit Software Developer Salary
based on 7 salaries
₹9.1 L/yr - ₹23.2 L/yr
81% more than the average Software Developer Salary in India
View more details

Citrix R&d India Pvt. Lit Software Developer Reviews and Ratings

based on 2 reviews

2.7/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

2.3

Salary

2.3

Job security

3.0

Company culture

2.7

Promotions

3.0

Work satisfaction

Explore 2 Reviews and Ratings
Senior Technical Support Engineer
81 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Support Engineer
57 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer 2
46 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
42 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer2
35 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Citrix R&d India Pvt. Lit with

Microsoft Corporation

4.0
Compare

Oracle

3.7
Compare

IBM

4.0
Compare

Google

4.4
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent