Filter interviews by
I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.
Related to research and how can be possible
I applied via Referral and was interviewed in Mar 2023. There were 2 interview rounds.
A responsive website is one that adapts to different screen sizes and devices.
Uses flexible layouts and images
Uses media queries to adjust styles based on screen size
Provides optimal user experience on all devices
Examples: Amazon, Netflix, and Google
DocType is an HTML declaration that defines the version of HTML used in a web page.
DocType is placed at the beginning of an HTML document.
It informs the browser about the version of HTML used in the document.
It helps the browser to render the web page correctly.
There are different types of DocTypes available such as HTML5, XHTML, HTML 4.01, etc.
I applied via Approached by Company
Basic mathematical questions , some logical questions
Basic programs and little coding knowledge is required to pass it
I applied via Campus Placement and was interviewed in Aug 2022. There were 4 interview rounds.
On Platform called EDUTRILL . Two easy coding questions where asked to solve in an hour .
Both were based on arrays and not of difficult level.
basic understanding of if else statements , loops was enough.
Symphony Talent interview questions for popular designations
I applied via Referral and was interviewed before Oct 2023. There was 1 interview round.
Design a system for real-time monitoring of temperature and humidity in a warehouse.
Utilize IoT sensors to collect temperature and humidity data
Implement a centralized database to store the data
Develop a web-based dashboard for real-time monitoring
Set up alerts for abnormal temperature or humidity levels
I applied via Referral and was interviewed before Jun 2023. There were 3 interview rounds.
Prepration of a project plan of launching a software
I was interviewed 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.
I was interviewed in Dec 2020.
Round duration - 50 minutes
Round difficulty - Easy
Had to give at least 10 MCQ tests with 5 questions each with 60% accuracy .(each round takes 3 min approx)
Then an easy coding question was asked.
It was an online test.
The webcam was on.
EduThrill would have the candidates go through filtering rounds consisting of questions around data structures, algorithms, problem-solving, etc.
And instant % was visible after each round
Create a program that counts and prints the total number of specific character types from user input. Specifically, you need to count lowercase English alphabets, numeric digi...
Create a program to count lowercase alphabets, digits, and white spaces in user input until '$' is encountered.
Read characters from input stream until '$' is encountered
Count lowercase alphabets, digits, and white spaces separately
Print the counts of each character type as three integers separated by spaces
Tip 1 : Code Daily
Tip 2 : Be Confident
Tip 3 : Study the fundamental Subjects and Concepts Deeply
Tip 4 : Add Skills to Resume
Tip 5 : Participate in Co-Curricular Activities too
Tip 1 : Mention your non-technical skills as well. eg: a member of college club.
Tip 2 : One good project is enough
Tip 3 : Mention the tools and technologies of tools as well
Tip 4 : Use more technical terms
Tip 5 : Give details of important things. i.e. "What was your project about? What tools & technologies you used? What was the impact of the project?
Top trending discussions
posted on 5 Dec 2023
I applied via gfg and was interviewed before Dec 2022. There were 3 interview rounds.
3 medium DSA problems
based on 7 interviews
Interview experience
based on 38 reviews
Rating in categories
Senior Associate
53
salaries
| ₹0 L/yr - ₹0 L/yr |
Associate
27
salaries
| ₹0 L/yr - ₹0 L/yr |
Associate Engineer
12
salaries
| ₹0 L/yr - ₹0 L/yr |
Associate Software Engineer
10
salaries
| ₹0 L/yr - ₹0 L/yr |
Software Engineer
8
salaries
| ₹0 L/yr - ₹0 L/yr |
Randstad
Team Lease
Quess
ManpowerGroup