Filter interviews by
I applied via Approached by Company and was interviewed in Jul 2024. There was 1 interview round.
Lists are mutable, ordered collections while tuples are immutable, ordered collections.
Lists can be modified after creation, tuples cannot.
Lists are denoted by square brackets [], tuples by parentheses ().
Lists are typically used for collections of similar items, tuples for fixed collections of different items.
The '==' operator compares the values of two objects, while the 'is' keyword checks if two objects are the same instance.
Use '==' for value comparison, use 'is' for object identity comparison
Example: x == y (compares values), x is y (checks if same instance)
The '==' operator can be overloaded by classes, but 'is' cannot be overloaded
The init method in Python is a special method used to initialize objects of a class.
The init method is called when a new object is created from a class.
It is used to initialize the attributes of the object.
The init method is defined with the __init__ keyword in Python.
Example: class MyClass: def __init__(self, x): self.x = x obj = MyClass(5)
Context management in Python is handled using the 'with' statement to ensure resources are properly managed and released.
Use the 'with' statement to create a context manager
Implement the __enter__() and __exit__() methods in a class to define the behavior of the context manager
Resources like files, database connections, or locks can be managed using context managers
Example: with open('file.txt', 'r') as file: # File
File operations in Python involve opening, reading, writing, and closing files.
Use the 'open()' function to open a file in different modes (read, write, append, etc.)
Use 'read()' or 'readline()' to read content from a file
Use 'write()' to write content to a file
Remember to close the file using 'close()' to free up system resources
Indexing in SQL is a way to optimize the performance of queries by creating a data structure that allows for faster retrieval of data.
Indexes are created on columns in a table to speed up the retrieval of rows based on certain conditions.
Types of indexes include clustered, non-clustered, unique, and composite indexes.
Examples of SQL indexing commands include CREATE INDEX, DROP INDEX, and ALTER INDEX.
Types of joins in SQL include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.
INNER JOIN: Returns rows when there is at least one match in both tables.
LEFT JOIN: Returns all rows from the left table and the matched rows from the right table.
RIGHT JOIN: Returns all rows from the right table and the matched rows from the left table.
FULL JOIN: Returns rows when there is a match in one of the tables.
Tables are joined in SQL based on common columns, specified conditions, and join type.
Common columns: Tables are joined based on columns that have the same values in both tables.
Specified conditions: Join conditions are specified using the ON keyword in SQL.
Join type: Different types of joins like INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN determine how the tables are joined.
Callback functions are functions that are passed as arguments to other functions and are executed after a certain task is completed.
Callback functions are commonly used in asynchronous programming to handle tasks that take time to complete.
They allow for more flexible and modular code by separating concerns.
An example of a callback function is the setTimeout function in JavaScript, where a function is executed after a
sudo stands for 'superuser do' and is a command in Unix/Linux systems that allows a permitted user to execute a command as the superuser or another user.
sudo allows users to perform administrative tasks without logging in as the root user
It is commonly used to run commands that require elevated privileges, such as installing software or modifying system files
Example: sudo apt-get update
Common git commands include add, commit, push, pull, clone, and merge.
git add
git commit -m 'message': Commit staged changes with a message
git push: Push committed changes to a remote repository
git pull: Fetch and merge changes from a remote repository
git clone
git merge
I applied via Campus Placement and was interviewed in Oct 2023. There was 1 interview round.
Where do you see headspin in ten year and what are the improvement do you suggest.
Top trending discussions
Palindrome code should be designed to check if a given string is the same forwards and backwards.
Create a function that takes a string as input
Remove any spaces and punctuation from the string
Reverse the string and compare it to the original string to check if it is a palindrome
I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.
I am passionate about driving organizational effectiveness and employee engagement through strategic HR initiatives.
I have a strong background in HR strategy and business partnering
I enjoy collaborating with cross-functional teams to drive positive change
I am excited about the opportunity to make a meaningful impact on the organization's culture and performance
I applied via Referral and was interviewed in Oct 2024. There were 3 interview rounds.
4 easy level questions will be asked basically from arrays and strings.
Assignment will be given after clearing coding round. In my case ELearning Platform project was given and 7 days time was given to complete.
posted on 17 Dec 2024
I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.
Utilize AWS or Azure services for scalable web applications
Use AWS Elastic Beanstalk or Azure App Service for easy deployment and scaling
Leverage AWS Lambda or Azure Functions for serverless computing
Utilize AWS Auto Scaling or Azure Autoscale to automatically adjust resources based on traffic
Store data in AWS RDS or Azure SQL Database for scalable database solutions
Use AWS CloudFront or Azure CDN for content delivery
I would use memory profiling tools to identify the source of the leaks and then fix them by properly managing memory allocation and deallocation.
Use memory profiling tools like Valgrind or Instruments to identify the source of the leaks
Review the code to ensure proper memory allocation and deallocation practices are being followed
Implement smart pointers or garbage collection to automatically manage memory
Use static co...
Yes, I have experience working on legacy systems.
I have successfully maintained and upgraded legacy systems to meet current business needs.
I have refactored legacy code to improve performance and scalability.
I have integrated new technologies with legacy systems to enhance functionality.
I have experience troubleshooting and debugging issues in legacy systems.
Yes, I have experience working with cross functional teams and resolving disputes effectively.
I have successfully collaborated with team members from different departments to achieve project goals.
I am skilled at mediating conflicts and finding mutually beneficial solutions.
I prioritize open communication and actively listen to all team members' perspectives.
I have experience using conflict resolution techniques such a
posted on 27 Sep 2024
I applied via Walk-in and was interviewed in Aug 2024. There were 3 interview rounds.
Basically It is a list of 25 questions having mix of Resoning,Aptitude &English. Each Queztion carries 2 marks and also there was a plus point that it doesn't have any negative marks
Experienced Senior Product Manager with a background in tech industry and a passion for driving product innovation.
Over 8 years of experience in product management roles
Strong background in the tech industry, with a focus on software development
Proven track record of successfully launching and managing products from concept to market
Passionate about driving product innovation and improving user experiences
Skilled in cr...
posted on 15 Jan 2025
List is mutable, tuple is immutable in Python.
List is mutable, meaning its elements can be changed after creation.
Tuple is immutable, meaning its elements cannot be changed after creation.
List is defined using square brackets [], tuple using parentheses ().
Example: list_example = [1, 2, 3], tuple_example = (4, 5, 6)
posted on 24 Dec 2024
I applied via LinkedIn and was interviewed in Nov 2024. There were 4 interview rounds.
Experienced Full Stack Developer with expertise in front-end and back-end technologies.
Experienced in HTML, CSS, JavaScript for front-end development
Proficient in Node.js, Express, MongoDB for back-end development
Familiar with React, Angular for building interactive web applications
GraphQL is a query language for APIs and a runtime for executing those queries. REST API is a set of rules for building web services. Both have their own advantages.
GraphQL allows clients to request only the data they need, reducing over-fetching and under-fetching.
REST API follows a more rigid structure and is easier to understand for beginners.
GraphQL is more efficient for complex queries involving multiple resources...
I was asked to discuss the system design of Google Meet, with a primary focus on video processing and WebRTC.
A graph question regarding LC 1334.
Experienced Full Stack Developer with a passion for creating innovative solutions and a strong desire to contribute to a dynamic team.
Over 5 years of experience in full stack development, working on various projects from concept to deployment.
Proficient in front-end technologies such as HTML, CSS, JavaScript, and React.
Skilled in back-end technologies including Node.js, Express, and MongoDB.
Motivated by the opportunity...
based on 15 reviews
Rating in categories
Associate Software Engineer
7
salaries
| ₹3 L/yr - ₹4 L/yr |
Automation Engineer
7
salaries
| ₹4.6 L/yr - ₹7.2 L/yr |
Associate Automation Engineer
6
salaries
| ₹4.5 L/yr - ₹5 L/yr |
Talent Acquisition Specialist
6
salaries
| ₹5.2 L/yr - ₹11.5 L/yr |
Software Engineer
5
salaries
| ₹3.6 L/yr - ₹10.5 L/yr |
BrowserStack
LambdaTest
Testbirds
Testlio