Filter interviews by
I applied via Campus Placement and was interviewed in Dec 2016. There were 3 interview rounds.
Concatenation of two strings in C
Use the strcat() function to concatenate two strings in C
Make sure the destination string has enough space to hold the concatenated result
The destination string should be null-terminated before concatenation
BST stands for Binary Search Tree.
BST is a type of binary tree where each node has at most two children.
In a BST, the left child of a node is always smaller than the node, and the right child is always greater.
BSTs are commonly used for efficient searching, insertion, and deletion operations.
Example: [5, 3, 7, 2, 4, 6, 8] is a BST.
Find peak in increasing and decreasing sequence
Use binary search to find the peak element
Compare the middle element with its neighbors to determine if it's a peak
If the middle element is smaller than its left neighbor, search in the left half of the array
If the middle element is smaller than its right neighbor, search in the right half of the array
The task is to count the occurrences of words from a dictionary in a big string efficiently.
Create a hash map to store the count of each word from the dictionary.
Split the big string into words and iterate through each word.
Check if the word exists in the dictionary and update its count in the hash map.
Return the hash map with word counts.
Inorder traversal is a depth-first traversal algorithm that visits the left subtree, then the root, and finally the right subtree.
Start at the root node
Traverse the left subtree recursively
Visit the root node
Traverse the right subtree recursively
Construct a Binary Search Tree (BST) using preorder traversal.
Preorder traversal visits the root node first, then the left subtree, and finally the right subtree.
To construct a BST from preorder traversal, we can use a recursive approach.
The first element in the preorder traversal is the root of the BST.
All elements smaller than the root will be in the left subtree, and all elements greater than the root will be in the...
Given a directed dependency graph, find sequence to install packages if each node has a structure of package name and dependency list.
Use topological sorting algorithm to find the installation sequence
Start with nodes that have no dependencies and gradually remove dependencies as packages are installed
If there is a cycle in the graph, it is not possible to find a valid installation sequence
I am a recent graduate with a degree in Computer Science and a passion for software development.
Recent graduate with a degree in Computer Science
Passionate about software development
Experience with programming languages like Java and Python
My strengths include problem-solving, teamwork, adaptability, communication, and attention to detail. My weaknesses include public speaking, time management, and delegation.
Strengths: problem-solving - I enjoy analyzing and finding solutions to complex problems
Strengths: teamwork - I work well with others and value collaboration
Strengths: adaptability - I am able to quickly adjust to new situations and challenges
Streng...
TiVo offers innovative technology and a user-friendly interface for entertainment enthusiasts.
TiVo provides a unique and customizable viewing experience with features like recording, pausing, and rewinding live TV.
The platform offers access to a wide range of streaming services and apps, making it a one-stop entertainment hub.
TiVo's intuitive interface and recommendation system help users discover new content based on
Yes, I have led a team in my previous role as a project manager.
Led a team of 5 developers in a software development project
Assigned tasks, set deadlines, and conducted regular team meetings
Resolved conflicts and ensured project milestones were met
Received positive feedback from team members for leadership skills
I am currently focused on gaining practical experience in the industry, but may consider higher studies in the future.
Currently focused on gaining practical experience in the industry
Open to considering higher studies in the future for further specialization
Will assess the benefits of higher studies based on career goals and industry trends
Top trending discussions
I was interviewed in Jun 2016.
I was interviewed before Nov 2016.
I am a dedicated and experienced consultant with a strong background in problem-solving and client management.
Over 5 years of experience in consulting roles
Skilled in analyzing data and providing strategic recommendations
Excellent communication and interpersonal skills
Proven track record of successfully managing client relationships
Strong ability to work in fast-paced environments and meet deadlines
I have the skills, experience, and passion to excel in this role.
I have a strong background in software development, with experience in multiple programming languages and frameworks.
I am a quick learner and enjoy tackling new challenges.
I am a team player and enjoy collaborating with others to achieve common goals.
I am passionate about software engineering and am always looking for ways to improve my skills and knowled...
I chose your company because of its reputation for innovation and its commitment to employee growth.
Your company has a strong reputation for innovation in the industry.
I was impressed by the emphasis on employee growth and development.
I believe that your company's values align with my own personal values.
I was excited about the opportunity to work with a talented team of engineers.
Your company's mission and vision reso
I am a software engineer with experience in developing and maintaining software applications.
I have a strong background in programming languages such as Java, C++, and Python.
I have worked on various projects, including developing web applications and implementing software solutions.
I am skilled in problem-solving and debugging, ensuring efficient and effective software development.
I have experience in collaborating wi...
I learned valuable teamwork and problem-solving skills during my summer internship.
Developed strong collaboration skills by working with a team of software engineers to complete projects
Gained experience in troubleshooting and debugging software issues
Learned to effectively communicate and present technical concepts to both technical and non-technical stakeholders
Improved problem-solving abilities by identifying and re...
Java is an object-oriented language while C is a procedural language.
Java is platform-independent while C is platform-dependent.
Java has automatic garbage collection while C requires manual memory management.
Java has built-in support for multithreading while C requires external libraries.
Java has a larger standard library compared to C.
Java is more secure than C due to its strong type checking and exception handling.
C ...
Pointers are variables that store memory addresses of other variables in programming languages.
Pointers allow direct access and manipulation of memory locations.
They are commonly used in programming languages like C and C++.
Pointers can be used to pass variables by reference, allowing modifications to the original value.
They can also be used to dynamically allocate memory.
Example: int* ptr; // declares a pointer to an
In 5 years, I see myself as a senior software engineer leading a team of developers.
Leading a team of developers
Working on complex projects
Continuing to learn and grow in my role
Contributing to the success of the company
I am a software engineer with experience in developing web applications and expertise in programming languages such as Java and Python.
Proficient in Java and Python programming languages
Experience in developing web applications using frameworks such as Spring and Django
Familiarity with database technologies such as MySQL and MongoDB
Strong problem-solving and analytical skills
Ability to work in a team and collaborate ef
My strengths include problem-solving skills and attention to detail. My weaknesses are sometimes being too critical of my own work and difficulty saying no.
Strengths: problem-solving skills, attention to detail
Weaknesses: being too critical of my own work, difficulty saying no
In the next 5 years, I see myself as a senior software engineer leading a team of developers.
I plan to continue learning and expanding my skillset
I hope to take on more leadership roles and mentor junior developers
I aim to contribute to the development of innovative software solutions
I plan to stay up-to-date with the latest technologies and industry trends
Yes, I know C language. Here's a program to print numbers from 1 to 10 excluding 5.
Use a loop to iterate from 1 to 10
Inside the loop, check if the current number is equal to 5
If it is not equal to 5, print the number
The question was about finding the average of a set of numbers.
I approached the problem by first summing all the numbers in the set.
Then, I divided the sum by the total number of elements in the set to find the average.
I used a loop to iterate through the set and keep track of the sum and count of elements.