Filter interviews by
I appeared for an interview in Jan 2021.
Round duration - 105 minutes
Round difficulty - Medium
Yes, here comes the technical Round. Like other casual Interviews, it started with my introduction. and then the Interviewer asked me about OOPs Concepts and for every concept he asked for an example code. it took around 20 mins for this round and next he started asking questions from my project ( in which I mentioned ML Project ). From this he has asked Like why do you choose this algorithm and why did you learned ML. After That he moved to the problem solving part. He asked 6 questions on Problem solving. this took me around 30 mins to solve. I'll mention those problems in the below section. And he started asking me about tree's implementation. I answered him the theoretical part for the questions asked. and furtherly he asked me 6-7 SQL queries which took me around 20mins I remember. And from there he started asking questions about CN and OS. As I don't know about them- I replied Like i didn't have much Knowledge In these Sessions but I have Learned Some new technologies that are trending in the market. So, the key point for every Interview is like- we need not to be know everything it is up to us to in which area we are having interest and finally you should be able to show that you are expert in that and one more thing- Any job role is not expecting to be good at only one area of tech- So you should be able to convince the Interviewer that you are capable of understanding, learning new tech and to be have good team working skills.
Determine if a given singly linked list of integers forms a cycle or not.
A cycle in a linked list occurs when a node's next
points back to a previous node in the ...
Detect if a singly linked list forms a cycle by checking if a node's next pointer points back to a previous node.
Use Floyd's Tortoise and Hare algorithm to detect a cycle in O(N) time complexity and O(1) space complexity.
Start with two pointers, slow and fast, moving at different speeds. If they meet at some point, there is a cycle.
If the fast pointer reaches the end of the list (null), there is no cycle.
Check if the n...
You are given a singly linked list of integers. Your task is to sort the linked list using the merge sort algorithm.
Merge Sort is a divide and conq...
Implement merge sort algorithm to sort a singly linked list of integers.
Divide the linked list into two halves using slow and fast pointers.
Recursively sort the two halves.
Merge the sorted halves using a merge function.
Handle the base case of empty or single node list.
Ensure the termination of the linked list with -1 at the end.
Example: For input 3 1 2 -1, output should be 1 2 3 -1.
You are provided with a square matrix. Your task is to determine if the matrix is symmetric. Return true
if it is symmetric, otherwise return false
.
A matrix is co...
Determine if a square matrix is symmetric by checking if its transpose is equal to itself.
Iterate through the matrix and compare each element with its corresponding element in the transpose
If any pair of elements are not equal, return false immediately
If all pairs are equal, return true at the end
You are given a N x M
matrix of integers. Your task is to return the spiral path of the matrix elements.
The first line contains an integer 'T' which denotes the nu...
The task is to return the spiral path of elements in a given matrix.
Iterate through the matrix in a spiral path by adjusting the boundaries at each step.
Keep track of the direction of traversal (right, down, left, up) to cover all elements.
Handle edge cases like when the matrix is a single row or column.
Implement a function that takes the matrix dimensions and elements as input and returns the spiral path.
You are provided with the Inorder and Level Order traversals of a Binary Tree composed of integers. Your goal is to determine the height of this Binary Tree without actually construc...
Find the height of a Binary Tree given its Inorder and Level Order traversals without constructing it.
Use the properties of Inorder and Level Order traversals to determine the height of the Binary Tree.
The height of a Binary Tree is the number of edges on the longest path from the root to a leaf node.
Consider edge cases like a single node tree or empty tree while calculating the height.
Round duration - 45 minutes
Round difficulty - Medium
In this round Company Director for India team and HR has joined.
I started with my Introduction and he has asked what I know about the Company. I started saying everything from google and Wikipedia and from their official site. As this is a off campus recruitment he started explaining about the company what they do and the job role I have applied for. He said that the job was very challenging one and we'll be closely dealing with clients and meeting their expectations is quite challenging for the role. and then he started asking some real HR questions. for which I have answered in a cool way
Tip 1 : Basics of technology you know and work proof ( can be projects or events you have conducted ) for that particular technology is must.
Tip 2 : Even if you are not good at a particular technology, try to be best at some other technology.
Tip 3 : Never show of your weakness. and never in technology. There must be some, be you good at a particular thing. so find it out and become expertise in that.
Tip 1 : Hide some interesting facts about you in the resume, So that you can impress the recruiter during the interview.
Tip 2 : Don't try online resumes, Instead you can make your own resume in MS Word to stand out from others. For me it took 2-3 hours to learn making resume in word and to complete it.
Top trending discussions
posted on 10 Jan 2025
I appeared for an interview before Jan 2024.
I have a strong understanding of Web Forms, ASP.NET, .NET Core, and SQL Server.
Proficient in creating web forms using ASP.NET
Experience with .NET Core for building modern web applications
Skilled in working with SQL Server for database management
Knowledge of integrating ASP.NET with SQL Server for data-driven applications
posted on 15 Aug 2024
I applied via Company Website and was interviewed in Jul 2024. There were 2 interview rounds.
Vision India Services Pvt Ltd is a leading software development company known for its innovative solutions and client satisfaction.
Vision India Services Pvt Ltd is known for its expertise in software development and IT services
The company has a strong reputation for delivering high-quality solutions to clients
Vision India Services Pvt Ltd values employee growth and provides opportunities for career advancement
I wish to...
I enjoyed the opportunity to work on cutting-edge technologies and collaborate with a talented team.
Exciting projects using the latest technologies
Collaboration with a talented team
Opportunity for professional growth and learning
I have a strong technical background and a proven track record of delivering high-quality software solutions.
Extensive experience in software development with proficiency in multiple programming languages such as Java, Python, and JavaScript
Strong problem-solving skills and ability to work well in a team environment, demonstrated by successful completion of complex projects on time and within budget
posted on 2 Jan 2021
I applied via Naukri.com and was interviewed in Dec 2020. There was 1 interview round.
Dependency injection in Spring Boot allows objects to be injected into a class, reducing tight coupling and improving flexibility.
In Spring Boot, dependency injection is achieved through the use of @Autowired annotation.
Dependencies are injected into a class by Spring framework at runtime.
It helps in achieving loose coupling between classes and promotes easier testing.
Example: @Autowired private UserService userService
The @RestController annotation in Spring Boot is used to define a RESTful web service endpoint.
Used to create RESTful web services in Spring Boot
Maps HTTP requests to handler methods
Returns data in JSON or XML format
Example: @RestController public class UserController { @GetMapping("/users") public List<User> getAllUsers() { return userService.getAllUsers(); }
The @RequestMapping annotation is used in Spring MVC to map web requests to specific handler methods.
Used to map HTTP requests to specific controller methods
Can specify the HTTP method, URL path, and other parameters
Helps in routing requests to the appropriate controller method
Example: @RequestMapping(value = "/hello", method = RequestMethod.GET)
I applied via Naukri.com and was interviewed in Dec 2018. There were 5 interview rounds.
I applied via Walk-in and was interviewed before Jun 2020. There were 3 interview rounds.
I applied via Job Fair and was interviewed in Feb 2023. There were 3 interview rounds.
Scenario wise questionaries, they had give for the explained on.
Education and assessment are crucial for measuring knowledge and skills.
Education provides the foundation for learning and acquiring knowledge and skills.
Assessment measures the level of understanding and mastery of the subject matter.
Effective education and assessment methods can lead to better learning outcomes and improved performance.
Examples of assessment methods include exams, quizzes, projects, and presentations
I applied via Company Website and was interviewed before Nov 2020. There were 4 interview rounds.
I applied via LinkedIn and was interviewed before Feb 2023. There was 1 interview round.
based on 1 review
Rating in categories
Senior Associate
54
salaries
| ₹9.1 L/yr - ₹33 L/yr |
Associate
33
salaries
| ₹5.3 L/yr - ₹16 L/yr |
Associate Software Engineer
10
salaries
| ₹8 L/yr - ₹13 L/yr |
Associate Engineer
10
salaries
| ₹8 L/yr - ₹10 L/yr |
Senior Software Engineer
8
salaries
| ₹23 L/yr - ₹41 L/yr |
Vision India Services
Creative Hands HR Consultancy
Gi Group
Ven Consulting