Filter interviews by
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
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
Top trending discussions
I applied via Company Website and was interviewed in Jul 2023. There were 2 interview rounds.
I applied via Recruitment Consulltant and was interviewed before Mar 2023. There was 1 interview round.
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.
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
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...
posted on 5 Nov 2024
I applied via Naukri.com
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.
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
They discussed some easy questions on Node JS and Dp and heap , binary search
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...
I applied via Campus Placement and was interviewed in Feb 2024. There was 1 interview round.
HTML CSS javascript jQuery
I applied via Job Fair and was interviewed in Jun 2023. There were 3 interview rounds.
Ms office,Core Java , Tally , C,
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
I was interviewed in Jul 2021.
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.
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.
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.
Round duration - 60 minutes
Round difficulty - Medium
Technical round (Questions on Java, Spring Boot, Microservices, Rest APIs, OOPs and Solid principals).
Round duration - 45 minutes
Round difficulty - Easy
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.
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.
I applied via Naukri.com and was interviewed in Dec 2020. There were 3 interview rounds.
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
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
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.
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
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'.
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
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 ...
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...
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
I applied via Naukri.com and was interviewed in Jan 2021. There were 5 interview rounds.
Associate Consultant
7
salaries
| ₹3.6 L/yr - ₹4.1 L/yr |
TCS
Infosys
Wipro
HCLTech