Upload Button Icon Add office photos

Citrix R&d India Pvt. Lit

Compare button icon Compare button icon Compare

Filter interviews by

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 Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Motilal Nehru Institute National Institute of Technology (NIT), Allahabad 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

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

1 hour , dsa, hackerearth, medim to hard

Round 2 - Technical 

(2 Questions)

  • Q1. Dsa question was asked in it
  • Q2. Questions related to resume was asked

Interview Preparation Tips

Interview preparation tips for other job seekers - study
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Comprehensive questions

Round 2 - Coding Test 

Java strings programs

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

(2 Questions)

  • Q1. Core java basic details
  • Q2. Everything related to basic core java
  • Ans. Learn deeply into basic core java concepts
  • Answered Anonymously
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in May 2023. 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 - Coding Test 

Find out a string is palindrome or not

Round 3 - One-on-one 

(8 Questions)

  • Q1. ACID properties
  • Ans. 

    ACID properties are a set of properties that guarantee database transactions are processed reliably.

    • ACID stands for Atomicity, Consistency, Isolation, Durability

    • Atomicity ensures that all operations in a transaction are completed successfully or none at all

    • Consistency ensures that the database remains in a consistent state before and after the transaction

    • Isolation ensures that transactions are executed independently of...

  • Answered by AI
  • Q2. Event loop in node js
  • Ans. 

    Event loop in Node.js manages asynchronous operations by executing callback functions when certain events occur.

    • Event loop is responsible for handling I/O operations, timers, and callbacks in Node.js

    • It allows Node.js to perform non-blocking operations efficiently

    • Event loop continuously checks the event queue and executes callback functions when events are triggered

  • Answered by AI
  • Q3. Trigger and cursor
  • Q4. Primary vs foreign vs unique key
  • Ans. 

    Primary key uniquely identifies a record, foreign key links to a primary key in another table, unique key ensures uniqueness of a column or set of columns.

    • Primary key: uniquely identifies each record in a table (e.g. employee_id in an employees table)

    • Foreign key: links to a primary key in another table to establish a relationship (e.g. department_id in an employees table linking to department_id in a departments table)

    • ...

  • Answered by AI
  • Q5. Project related Questions and whats your job role in that project
  • Q6. Variable hoisting in js
  • Ans. 

    Variable hoisting is a behavior in JavaScript where variable declarations are moved to the top of their scope during compilation.

    • Variable declarations are hoisted to the top of their function or global scope.

    • Only the declarations are hoisted, not the initializations.

    • Hoisting allows you to use a variable before it is declared, but it is best practice to declare variables at the top of the scope.

    • Example: console.log(myV

  • Answered by AI
  • Q7. Function closure in js
  • Ans. 

    Function closure in JavaScript allows a function to access variables from its outer scope even after the outer function has finished executing.

    • Function closures occur when a function is defined within another function and the inner function has access to the outer function's variables.

    • Closures are commonly used to create private variables and functions in JavaScript.

    • Example: function outerFunction() { let outerVar = 'I...

  • Answered by AI
  • Q8. Shallow vs deep copy in js
  • Ans. 

    Shallow copy creates a new object but references the same nested objects, while deep copy creates a new object with copies of all nested objects.

    • Shallow copy only copies the top-level object, not the nested objects.

    • Deep copy creates new copies of all nested objects, ensuring they are independent.

    • In JavaScript, shallow copy can be achieved using Object.assign or spread operator, while deep copy can be achieved using JSO

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare more on database levels.
They are using some what old technologies so prepare like that way

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Dec 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. L2 - two logic wise code
  • Ans. 

    Provide two logic-wise code snippets for L2 level software developer position.

    • Use conditional statements to check for specific conditions and execute code accordingly.

    • Implement loops to iterate over data and perform operations.

    • Use functions to modularize code and improve readability.

    • Implement error handling to prevent unexpected behavior.

    • Use data structures such as arrays and objects to organize and manipulate data.

  • Answered by AI
  • Q2. L3 - Design and implement a Messenger like application
  • Ans. 

    Design and implement a Messenger like application

    • Identify the core features of a messaging app such as sending/receiving messages, creating groups, notifications, etc.

    • Choose a suitable platform and programming language for development

    • Implement a user-friendly interface with intuitive design

    • Ensure data security and privacy by implementing encryption and authentication measures

    • Test the application thoroughly to ensure it

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with OOPS concepts. They just analyse how you approach a problem and find solutions. They don't need the actual code to be completed

Skills evaluated in this interview

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Easy

It was in the morning. The 1st round was online coding + MCQ round. It had 3 sections in total to be solved in 40mins.Questions were mainly from Data structure, OS, DBMS, SQL.

  • Q1. 

    Morty's Array Challenge

    Rick has provided Morty with an array 'Arr' of length 'N' and an integer 'K'. Morty needs to split the array into non-empty sub-arrays to achieve the minimum possible cost, subject...

  • Ans. Naive Approach

    The basic idea is to generate all the possible subarrays and find the cost of every possible split and then returning the minimum cost from all of them. 

    The steps are as follows:

     

    1. Recursively go through every possible split of the array Arr.
    2. Store all the subarrays of one split into a vector<vector<int>> split.
    3. Now go through every subarray of that split and find the frequency of every ...
  • Answered Anonymously
  • Q2. 

    Longest Common Prime Subsequence Problem Statement

    Imagine Ninja is tackling a puzzle during his long summer vacation. He has two arrays of integers, each with lengths 'N' and 'M'. Ninja's task is to dete...

  • Ans. Dynamic Programming

    The simplest idea is to consider all subsequences of arr1[] and check if all numbers in this subsequence are prime and appear in arr2[]. Then find the longest length of these subsequences. But the time complexity for this operation will be O(M * (2 ^ N)) where ‘M’ is the length of the first array and ‘N’ is the length of the second array.

     

    We can think of an efficient solution in which first we c...

  • Answered Anonymously
Round 2 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

It was conducted in the evening around 4:30PM-5:30PM. Questions were bit difficult. Questions were mainly from Data Structures and there was total of 3 questions.

  • Q1. 

    Split Array Problem Statement

    You are given an integer array/list arr of size N. Your task is to split the array into the maximum number of subarrays such that the first and last occurrence of every disti...

  • Ans. Iterative

    The key idea in this problem is storing the first and last occurrence index of every element. So, we can store the first and last index and then iterate over the array, and in each iteration, we check if the maximum index of the last occurrence of all the previous elements of the current subarray is less than or equal to the current index. 

     

    We use array hash to store the last occurrence of an elemen...

  • Answered Anonymously
  • Q2. 

    Split Array into 'K' Consecutive Subarrays Problem

    Given an integer array arr of size N, determine if it is possible to split the array into K consecutive non-overlapping subarrays of length M such that e...

  • Ans. Array Traversal.

    We will be solving this problem using a simple array traversal. At each position, we will check if the element at the current index i and (i + M) are the same or not. Moreover, if it is the same, then we will increment the counter, and as soon as our counter becomes equal to K, it means the array can be split, and we will return the answer at that step. If, after all, iterations are still if the count i...

  • Answered Anonymously
Round 3 - HR 

Round duration - 20 minutes
Round difficulty - Easy

It was in the evening. Interviewer first ask simple questions to keep me calm and it was nice interaction with her the environment created by her was very interesting to answer

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAAdobe interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Operating Systems, Computer Networks, JavaTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Even if you are stuck in the problem, just give a try. The interviewer will help you definitely for sure.
Tip 2 : Prepare Data Structures and Algorithms well. They mostly check our Problem Solving ability to find the solutions for the real world problems.
Tip 3 : Be enough confident, don't be nervous. Maintain atleast 2 projects in your resume

Application resume tips for other job seekers

Tip 1 : Mention atleast 2 projects.
Tip 2 : Mention your skills in which you are perfect.
Tip 3 : It should not be too long or too short

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic c++, exception handling,mfc basic, message handling in mfc,about project ,c++ oops concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to the basic .. explain what you know and be relax

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

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

₹8.4 L/yr - ₹22 L/yr

Technical Support Engineer
57 salaries
unlock blur

₹5.9 L/yr - ₹14 L/yr

Senior Software Engineer 2
46 salaries
unlock blur

₹21 L/yr - ₹48 L/yr

Senior Software Engineer
42 salaries
unlock blur

₹16.2 L/yr - ₹44.5 L/yr

Software Engineer2
35 salaries
unlock blur

₹12 L/yr - ₹24 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