Filter interviews by
I applied via Job Fair and was interviewed before Oct 2023. There was 1 interview round.
Top trending discussions
I applied via Company Website and was interviewed in Dec 2021. There were 4 interview rounds.
Splunk has a hierarchy of knowledge objects that includes apps, add-ons, and configurations.
The highest level is the app, which contains all other knowledge objects.
Add-ons are installed within apps and provide additional functionality.
Configurations are specific to an app or add-on and include saved searches, alerts, and dashboards.
Configuring a cluster involves setting up multiple servers to work together as a single system.
Choose a cluster management software such as Kubernetes or Apache Mesos
Select the appropriate hardware and network infrastructure
Install and configure the cluster management software on each server
Define the roles and responsibilities of each server in the cluster
Test the cluster to ensure it is functioning properly
Rsyslog is configured by editing its configuration file, usually located at /etc/rsyslog.conf
Edit the configuration file using a text editor
Specify the log files to be monitored and the actions to be taken for each log message
Configure filters to select specific log messages based on criteria such as severity or facility
Specify the destination for the log messages, such as a file, remote server, or database
Restart the
I applied via Company Website and was interviewed in Dec 2021. There were 4 interview rounds.
Splunk has a hierarchy of knowledge objects to organize and manage data.
The hierarchy includes apps, add-ons, and configurations.
Apps contain dashboards, reports, and alerts.
Add-ons provide additional functionality to apps.
Configurations include indexes, sourcetypes, and fields.
Knowledge objects can be shared across the hierarchy.
Higher level objects inherit settings from lower level objects.
Configuring a cluster involves setting up multiple servers to work together as a single system.
Choose a cluster management tool such as Kubernetes or Apache Mesos
Determine the number of nodes and their roles in the cluster
Configure network settings and communication protocols
Set up load balancing and failover mechanisms
Ensure data consistency and replication across nodes
Rsyslog is configured by editing its configuration file, usually located at /etc/rsyslog.conf
Identify the log sources and their corresponding log files
Specify the log destination and format
Configure filters and rules to process and route logs
Restart the rsyslog service to apply changes
Use tools like logger and tail to test the configuration
I applied via Referral and was interviewed in Jan 2020. There were 4 interview rounds.
posted on 2 Sep 2015
Polymorphism is the ability of an object to take on many forms. Constructors and destructors are special methods in classes.
Polymorphism allows objects to be treated as instances of their own class or as instances of their parent class.
Constructors are used to initialize objects when they are created. Destructors are used to clean up after an object when it is destroyed.
Classes are templates for creating objects. They ...
Encapsulation is the process of hiding implementation details and exposing only the necessary information to the user.
Encapsulation is achieved through access modifiers like public, private, and protected.
It helps in achieving data abstraction and information hiding.
Encapsulation provides better control over the data and prevents unauthorized access.
Example: A class with private variables and public methods to access t...
Remove duplicates in linked lists
Traverse the linked list and keep track of visited nodes using a hash table
If a node is already visited, remove it from the linked list
Time complexity: O(n), Space complexity: O(n)
Mergesort is a divide-and-conquer algorithm that sorts an array by dividing it into two halves, sorting each half, and merging them.
Divide the array into two halves
Sort each half recursively
Merge the two sorted halves
Repeat until the entire array is sorted
Example: ['apple', 'banana', 'cherry', 'date'] -> ['apple', 'banana', 'cherry', 'date'] -> ['apple', 'banana'], ['cherry', 'date'] -> ['apple'], ['banana'], ['cherry'...
Reverse a given string
Create an empty string
Iterate through the original string in reverse order
Append each character to the empty string
Return the reversed string
Reverse words in a string
Split the string into an array of words
Reverse the array
Join the array into a string
Check if a string is palindrome or not
Reverse the string and compare with original
Compare characters from start and end of string
Ignore spaces and punctuation marks while comparing
I am a software engineer with experience in developing web applications and a passion for problem-solving.
Experienced in developing web applications using technologies such as HTML, CSS, JavaScript, and React
Proficient in programming languages such as Java and Python
Skilled in problem-solving and troubleshooting
Strong communication and collaboration skills
Passionate about staying up-to-date with the latest technologies
GATE is not my preferred choice as I am more interested in software development than research.
I am more interested in practical application of software development than theoretical research
I believe my skills and interests align better with software engineering roles
I have researched and found that software engineering roles do not require a GATE qualification
I prefer open-source technologies and have more experience with them.
I have more experience with open-source technologies like Linux and Python.
I believe in the benefits of open-source software for collaboration and innovation.
I am not opposed to using MS technologies if they are the best fit for the project.
However, I prefer to work with technologies that align with my values and experience.
Diebold offers challenging work and opportunities for growth in the software engineering field.
Diebold has a strong reputation in the industry
The company offers a diverse range of projects and technologies to work on
There are opportunities for career growth and development
The work is challenging and rewarding
Diebold values innovation and creativity in its employees
Software is the future and ECE has a strong foundation in programming and problem-solving.
ECE curriculum includes programming courses
Software development is a growing industry
Programming skills are transferable across fields
Interest in software development and problem-solving
Opportunities to work on software projects during ECE studies
I applied via Campus Placement
I applied via Referral
My biggest achievement till date is successfully leading a team to develop and launch a new software product ahead of schedule.
Led a team of developers to create a new software product
Completed the project ahead of schedule
Received positive feedback from clients and stakeholders
I would address conflicts directly and respectfully, seeking to understand the root cause and find a mutually beneficial solution.
Listen actively to understand the other person's perspective
Communicate clearly and respectfully
Identify the root cause of the conflict
Brainstorm potential solutions together
Be willing to compromise and find a mutually beneficial solution
Success is achieving personal goals, feeling fulfilled, and making a positive impact.
Success is subjective and can vary from person to person.
It involves setting and achieving goals, both short-term and long-term.
Feeling fulfilled and content with one's accomplishments is a key aspect of success.
Making a positive impact on others or the world can also be a measure of success.
Success is not just about material wealth or...
Dijkstra's algorithm finds the shortest path between nodes in a graph.
Create a graph with nodes and edges
Assign a tentative distance to each node
Set the initial node as current and mark it visited
For each neighbor of the current node, calculate the tentative distance
If the tentative distance is less than the current distance, update the distance
Mark the current node as visited and select the unvisited node with the sma...
A program to reverse a singly linked list
Create a new empty linked list
Traverse the original linked list and insert each node at the beginning of the new list
Return the new list
Methods to find nth largest element in an unsorted linked list
Traverse the linked list and store elements in an array, sort the array and return the nth largest element
Use quickselect algorithm to find the nth largest element in O(n) time complexity
Implement a max heap and extract the nth largest element
Divide the linked list into smaller sublists and recursively find the nth largest element
Use merge sort to sort the l
A prime number is a number that is divisible only by 1 and itself.
A prime number has exactly two factors: 1 and itself.
Prime numbers cannot be divided evenly by any other number.
Examples of prime numbers include 2, 3, 5, 7, 11, 13, 17, etc.
Test cases for a bank transaction
Transaction amount within account balance limit
Transaction amount exceeds account balance limit
Transaction to a valid account number
Transaction to an invalid account number
Transaction with correct transaction code
Transaction with incorrect transaction code
Transaction during bank working hours
Transaction outside bank working hours
Design classes for educational institutions in a city
Identify the main entities: schools, students, teachers, courses
Create a School class with attributes like name, address, and a list of students and teachers
Create a Student class with attributes like name, age, and a list of courses
Create a Teacher class with attributes like name, specialization, and a list of courses
Create a Course class with attributes like name, ...
based on 1 interview
Interview experience
based on 2 reviews
Rating in categories
Senior Executive
234
salaries
| ₹0 L/yr - ₹0 L/yr |
Executive
220
salaries
| ₹0 L/yr - ₹0 L/yr |
Assistant Manager
183
salaries
| ₹0 L/yr - ₹0 L/yr |
Engineer- Customer Support
120
salaries
| ₹0 L/yr - ₹0 L/yr |
Deputy Manager
74
salaries
| ₹0 L/yr - ₹0 L/yr |
Nucleus Software Exports
Nelito System
Financial Software & Systems
Euronet Global Development Center