Upload Button Icon Add office photos

Filter interviews by

Idnor Technologies Sailpoint Developer Interview Questions and Answers

Updated 11 Jun 2024

Idnor Technologies Sailpoint Developer Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. Describe your experience migration from on-prem to cloud IAM solution
  • Ans. 

    I have experience migrating on-prem IAM solutions to cloud IAM solutions.

    • Conducted thorough analysis of current on-prem IAM setup

    • Identified key differences and challenges in moving to cloud IAM

    • Developed migration plan with clear timelines and milestones

    • Executed migration plan with minimal disruption to operations

    • Tested and validated cloud IAM solution for functionality and security

    • Provided training and support to users

  • Answered by AI
  • Q2. How do you handle issues with multiple Active Directory domain integration in SailPoint.
  • Ans. 

    Issues with multiple Active Directory domain integration in SailPoint are handled by configuring multiple connectors and mapping attributes accordingly.

    • Configure multiple connectors for each Active Directory domain

    • Map attributes accordingly for each domain

    • Use custom scripts or rules to handle conflicts or discrepancies

    • Regularly monitor and troubleshoot synchronization issues

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. How do you handle pressure during P1 scenario with client.
  • Q2. Why are you a good fit for this role

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Company Website and was interviewed in Jul 2023. There were 2 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. In-depth Details about Sailpoint IIQ
  • Q2. Linux Basics questions asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Deep knowledge of Sailpoint IIQ Expected.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Why are strings in Java Immutable?
  • Ans. 

    Strings in Java are immutable to ensure data integrity and security.

    • Immutable strings prevent accidental modification of data.

    • String pool optimization is possible due to immutability.

    • Enhances thread safety in multi-threaded environments.

  • Answered by AI
  • Q2. What are the four concepts of OOP?
  • Ans. 

    Encapsulation, Inheritance, Polymorphism, Abstraction

    • Encapsulation: Bundling data and methods that operate on the data into a single unit

    • Inheritance: Ability of a class to inherit properties and behavior from another class

    • Polymorphism: Ability to present the same interface for different data types

    • Abstraction: Hiding the complex implementation details and showing only the necessary features

  • Answered by AI
  • Q3. What is the difference between a private and public variable?
  • Ans. 

    Private variables can only be accessed within the class they are declared in, while public variables can be accessed from outside the class.

    • Private variables are declared using the 'private' keyword, while public variables are declared using the 'public' keyword.

    • Private variables are encapsulated within the class, providing data hiding and security, while public variables can be accessed and modified from outside the c...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study the most common 250 Java technical Interview questions and try to spin them off into your own words to remember them.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com

Round 1 - HR 

(2 Questions)

  • Q1. R u interested in sales
  • Ans. 

    Yes, I am interested in sales as it allows me to understand customer needs and provide solutions.

    • I enjoy interacting with customers and understanding their requirements.

    • I am motivated by meeting sales targets and achieving success.

    • I believe in the value of building relationships with clients to drive business growth.

  • Answered by AI
  • Q2. Ready to relocation
  • Ans. 

    Yes, I am ready for relocation.

    • I am open to relocating for the right opportunity

    • I have experience moving for previous jobs

    • I am excited about the possibility of living in a new city

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

They discussed some easy questions on Node JS and Dp and heap , binary search

Round 2 - Technical 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. What is multithreading and explain its usecases.
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently, improving performance and responsiveness.

    • Multithreading allows for parallel execution of tasks, improving performance by utilizing multiple CPU cores.

    • It is commonly used in applications that require handling multiple tasks simultaneously, such as web servers, video games, and data processing.

    • Multithreading can help improve responsiveness i...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare cs fundamentals as well.

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

HTML CSS javascript jQuery

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

I applied via Job Fair and was interviewed in Jun 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Ms office,Core Java , Tally , C,

Round 3 - Group Discussion 

In my Opinion,view , If you ask me, As far as I can see/I am Concerned , It seems to me that , I think /feel/reckon/ belive , If you want my option , What we have to decide

Interview Preparation Tips

Interview preparation tips for other job seekers - Upgrade the skills

I was interviewed in Jul 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 70 minutes
Round difficulty - Medium

Link was active for 24 hours, I took the test at night.
Difficulty was medium.
There were some MCQs on Springboot/Java along with 2 DSA questions.

  • Q1. Zigzag Binary Tree Traversal

    Given a binary tree, return the zigzag level order traversal of the nodes' values of the given tree. Zigzag traversal means starting from left to right, then right to left ...

  • Ans. 

    Applied BFS for level order traversal.
    The core logic is how to append the current level nodes in the resultList.
    If currLevel is even:
    then append the curr level node list as it is to the resultList
    else:
    reverse the curr level node list and then append to the resultList.

    Finally return the resultList.

  • Answered Anonymously
  • Q2. K Closest Points to Origin

    Your house is located at the origin of a 2-D plane. You have 'N' neighbours who live at 'N' different points on the plane. You want to visit exactly 'K' d...

  • Ans. 

    As we need to find K closest restaurants to the source (0,0), I used priority queue(MaxHeap) in python to eliminate all the farthest restaurants and have only k closest restaurants left at the end of the loop.

    I had stored the elements in priority Queue as a pair [distance, coordinates], so that at I can directly get the coordinates for the k closest restaurants to return in the result.

  • Answered Anonymously
Round 2 - Video Call 

Round duration - 60 minutes
Round difficulty - Medium

Technical round (Questions on Java, Spring Boot, Microservices, Rest APIs, OOPs and Solid principals).

Round 3 - HR 

Round duration - 45 minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaminimum 1 year of experienceJio Private Limited interview preparation:Topics to prepare for the interview - DSA problems, Spring Boot, Java, OOPs and SOLID principles, Micro Services, Rest APIs, MySQLTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare core concepts of OOPs and SOLID principles with some examples.
Tip 2 : Practice DSA Medium level question (Trees, Heaps, LinkedList, Dynamic Programming, BFS-DFS, Two pointer, Backtracking)
Tip 3 : For OA round, Prepare Spring Boot core concepts (For MCQs) along with DSA.

Application resume tips for other job seekers

Tip 1 : Mention all the previous projects tasks/achievements point wise along with the Tech Stack used.
Tip 2 : Practice explaining projects which were part of your work experience and be ready for follow up questions. 
Tip 3 : Specify relevant skills and certificates in the resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

12 Questions

  • Q1. About python
  • Q2. What is python interpreter
  • Ans. 

    Python interpreter is a program that executes Python code.

    • It reads Python code and converts it into machine-readable code

    • It executes the code line by line

    • It also provides a command-line interface for interactive programming

    • Examples: CPython, Jython, IronPython

  • Answered by AI
  • Q3. Who
  • Q4. Who developed python
  • Ans. 

    Python was developed by Guido van Rossum in the late 1980s.

    • Guido van Rossum started working on Python in December 1989.

    • Python's design philosophy emphasizes code readability and ease of use.

    • Python is an interpreted, high-level, general-purpose programming language.

    • Python's popularity has been steadily increasing over the years.

    • Python is open-source and has a large community of developers contributing to its development

  • Answered by AI
  • Q5. What is PEP8
  • Ans. 

    PEP8 is a style guide for Python code.

    • PEP8 provides guidelines for formatting, naming, and organizing Python code.

    • It covers topics such as indentation, line length, variable naming, and function and class definitions.

    • Adhering to PEP8 can improve code readability and maintainability.

    • Tools such as Flake8 and PyLint can be used to check code against PEP8 standards.

  • Answered by AI
  • Q6. What are the data types in python
  • Ans. 

    Python has several built-in data types including integers, floats, strings, booleans, lists, tuples, and dictionaries.

    • Integers are whole numbers without decimals

    • Floats are numbers with decimals

    • Strings are sequences of characters

    • Booleans are either True or False

    • Lists are ordered collections of items

    • Tuples are ordered, immutable collections of items

    • Dictionaries are unordered collections of key-value pairs

  • Answered by AI
  • Q7. What are the Oops concepts in python
  • Q8. What is a class
  • Ans. 

    A class is a blueprint for creating objects that have similar properties and behaviors.

    • A class is a user-defined data type that encapsulates data and functions.

    • It provides a way to organize and structure code.

    • Objects are instances of a class.

    • Classes can inherit properties and behaviors from other classes.

    • Example: A class 'Car' can have properties like 'color', 'model', and behaviors like 'start', 'stop'.

  • Answered by AI
  • Q9. What is an object
  • Ans. 

    An object is an instance of a class that encapsulates data and behavior.

    • Objects are created from classes

    • They have attributes (data) and methods (behavior)

    • Objects can interact with each other through method calls

    • Examples include a car object with attributes like make, model, and color, and methods like start and stop

    • Another example is a person object with attributes like name and age, and methods like walk and talk

  • Answered by AI
  • Q10. Tell me about inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add its own unique properties and ...

  • Answered by AI
  • Q11. What is multiple inheritance
  • Ans. 

    Multiple inheritance is the ability of a class to inherit properties and behavior from multiple parent classes.

    • It allows a class to inherit from more than one parent class.

    • It can lead to the diamond problem where a class inherits from two classes that have a common base class.

    • Languages like C++ support multiple inheritance while others like Java do not.

    • Example: A class can inherit properties from both a 'Vehicle' class...

  • Answered by AI
  • Q12. What is data abstraction
  • Ans. 

    Data abstraction is the process of hiding implementation details and showing only the necessary information to the user.

    • Abstraction is achieved through abstract classes and interfaces

    • It helps in reducing complexity and increasing efficiency

    • Example: A car dashboard shows only necessary information like speed, fuel level, etc. and hides the internal workings of the car

    • Abstraction is one of the four fundamental concepts o

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - About

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. Profile and permission sets logical questions, logical question on process builder,contacts and accounts relationship and how to use trigger to calculate no.of contacts on account ,managed and unmanaged p...

Interview Preparation Tips

Interview preparation tips for other job seekers - technical round is mostly based on logic. If you have grip on salesforce admin then only you can answer. Managerial round is quite general, you can mostly go by preparing all interview questions on salesforce on internet.

Idnor Technologies Interview FAQs

How many rounds are there in Idnor Technologies Sailpoint Developer interview?
Idnor Technologies interview process usually has 2 rounds. The most common rounds in the Idnor Technologies interview process are Technical and HR.
How to prepare for Idnor Technologies Sailpoint 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 Idnor Technologies. The most common topics and skills that interviewers at Idnor Technologies expect are IAM and Identity Access Management.
What are the top questions asked in Idnor Technologies Sailpoint Developer interview?

Some of the top questions asked at the Idnor Technologies Sailpoint Developer interview -

  1. How do you handle issues with multiple Active Directory domain integration in S...read more
  2. Describe your experience migration from on-prem to cloud IAM solut...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
Associate Consultant
7 salaries
unlock blur

₹3.6 L/yr - ₹4.1 L/yr

Explore more salaries
Compare Idnor Technologies with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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