Filter interviews by
I applied via Naukri.com and was interviewed before Mar 2023. There were 2 interview rounds.
Design side bar multi level
Expected CTC is the salary range that the candidate is looking for in a new job.
Research industry standards for Front end Developer salaries
Consider your experience, skills, and location when determining your expected CTC
Be prepared to negotiate based on the job responsibilities and benefits offered
Top trending discussions
I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.
Its very easy
Basic maths questions learned up to 10
Basic Apptitude questions
I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.
I applied via Company Website and was interviewed in Nov 2024. There were 13 interview rounds.
The Entity-Relationship (ER) model is a data model used to describe the relationships between entities in a database.
Entities are objects or concepts in the real world that can be distinguished from each other.
Relationships describe how entities are related to each other.
Attributes are properties that describe entities and relationships.
ER diagrams visually represent the ER model, showing entities, relationships, and a...
Threads are lighter weight than processes, share memory space, and are more efficient for multitasking.
Threads share the same memory space, making communication between them faster and more efficient.
Threads are lighter weight than processes, as they share resources such as memory and file descriptors.
Threads are more efficient for multitasking, as they can run concurrently within the same process.
Threads are easier to...
Google primarily focuses on pure data structures and algorithms-based questions during coding interviews. Other computer science core topics are typically not covered in Google's interviews. Therefore, it is essential to be proficient in data structures and algorithms to succeed in the Google coding interview.
An aptitude test is a tool used to evaluate a person's skills, abilities, and potential for success in a specific role or activity.
Group discussion is a process of exchanging ideas and opinions among individuals on a specific topic. It is a structured form of communication in which participants have the opportunity to express their views while also listening to others' perspectives on the same subject.
My strengths include problem-solving skills and attention to detail. My weaknesses include time management and public speaking.
Strengths: problem-solving skills
Strengths: attention to detail
Weaknesses: time management
Weaknesses: public speaking
I have a strong foundation in web development, a passion for learning, and a proven track record of delivering high-quality projects.
I have a solid understanding of HTML, CSS, and JavaScript
I am proficient in using various web development tools and frameworks such as React and Node.js
I have successfully completed several web development projects, including a responsive e-commerce website for a local business
An assignment is a task or piece of work that you are given to complete, particularly as part of your job or studies. The assignment for the course includes written assignments and practical tests, similar to tasks, work, jobs, or charges.
A case study is a detailed description and assessment of a specific situation in the real world, created for the purpose of deriving generalized insights and understanding. It can focus on an individual, a group of people, an organization, or an event, among other subjects.
My greatest accomplishment was successfully leading a team to launch a new website for a major client ahead of schedule.
Successfully led a team to launch a new website
Completed the project ahead of schedule
Received positive feedback from the client
I am motivated by challenges, learning opportunities, and the ability to make a positive impact.
Challenges push me to grow and improve my skills.
Learning opportunities allow me to stay updated with the latest technologies and trends.
Making a positive impact through my work gives me a sense of fulfillment and purpose.
My ideal work environment is a collaborative space with supportive colleagues, opportunities for growth, and a healthy work-life balance.
Collaborative team environment where ideas are shared and valued
Supportive colleagues who are willing to help and provide feedback
Opportunities for growth and learning new technologies
Healthy work-life balance with flexible hours and remote work options
By creating a positive work environment, offering growth opportunities, and implementing employee recognition programs.
Creating a positive work environment through open communication and support
Offering growth opportunities such as training programs and career advancement
Implementing employee recognition programs to acknowledge and reward hard work
Providing competitive salaries and benefits to attract and retain top ta
Real-time operating systems are designed to provide predictable response times and prioritize tasks based on timing constraints.
Real-time operating systems prioritize tasks based on timing constraints
They are designed to provide predictable response times
Examples include VxWorks, QNX, and FreeRTOS
Yes, I am comfortable working night shifts to support international clients.
I have previous experience working night shifts in a customer service role.
I am a night owl and tend to be more productive during late hours.
I understand the importance of supporting international clients and am willing to adjust my schedule accordingly.
Operational tasks for maintaining efficiency and quality include regular testing, monitoring performance, updating software, and implementing best practices.
Regularly test website functionality to ensure it is working properly
Monitor website performance metrics such as load times and user experience
Update software and plugins to the latest versions to prevent security vulnerabilities
Implement best practices for coding,
Prepare examples showcasing leadership, conflict resolution, and prioritization skills for a managerial round interview.
Leadership: Discuss a project where you led a team to success, highlighting your ability to motivate and guide others.
Conflict Resolution: Share a situation where you successfully resolved a conflict within a team or project, emphasizing your communication and problem-solving skills.
Prioritization: Ta...
I demonstrate adaptability, leadership, and commitment by actively seeking feedback, taking on new challenges, and fostering collaboration within the team.
Seek feedback from colleagues and supervisors to continuously improve
Volunteer for new projects or tasks to expand skills and knowledge
Encourage open communication and teamwork among team members
Lead by example by showing a positive attitude and willingness to help o...
SCD Type 2 implementation involves tracking historical changes in data by creating new records for each change.
Identify the columns that need to be tracked for changes
Add effective start and end dates to track the validity of each record
Insert new records for changes and update end dates for previous records
Maintain a surrogate key to uniquely identify each version of the record
I can join the team within 2 weeks.
I can start within 2 weeks of receiving the offer.
I need to give notice to my current employer.
I may need to relocate, which could affect my start date.
I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.
Custom hooks in React are reusable functions that allow you to extract component logic into separate functions for better code organization and reusability.
Custom hooks are created using the 'use' prefix and can be used to share logic between components.
Use cases for custom hooks include fetching data from an API, handling form state, managing local storage, and more.
Example of a custom hook for API call: const useFetc...
useMemo is used to memoize a value, while useCallback is used to memoize a function.
useMemo is used to memoize a value and recompute it only when its dependencies change.
useCallback is used to memoize a callback function and prevent unnecessary re-renders.
Example: useMemo can be used to memoize the result of a complex computation, while useCallback can be used to memoize an event handler function.
Class-based components use ES6 classes and have lifecycle methods, while functional components are simpler and use functions.
Class-based components use ES6 classes to create components, while functional components are created using functions.
Class-based components have lifecycle methods like componentDidMount and componentDidUpdate, while functional components do not.
Functional components are simpler and more lightweig...
Implementing the lifecycle of a React component in a functional component
Use the useEffect hook to replicate lifecycle methods like componentDidMount, componentDidUpdate, and componentWillUnmount
Pass an empty array as the second argument to useEffect to mimic componentDidMount
Pass a variable or state as the second argument to useEffect to mimic componentDidUpdate
Return a cleanup function inside useEffect to mimic compo
Various state management techniques in React include Context API, Redux, and local state.
Context API: React's built-in solution for passing data through the component tree without having to pass props down manually at every level.
Redux: A popular state management library for React applications, allowing for a centralized store to manage application state.
Local state: Managing state within individual components using us
Redux is a predictable state container for JavaScript apps. Middlewares are functions that intercept actions before they reach the reducer.
Redux follows a unidirectional data flow architecture.
Middlewares in Redux are functions that can intercept, modify, or dispatch actions.
Common use cases for middlewares include logging, asynchronous API calls, and handling side effects.
Examples of popular Redux middlewares are Redu...
Hoisting in JavaScript is the behavior where variable and function declarations are moved to the top of their containing scope during the compilation phase.
Variable declarations are hoisted to the top of their scope, but not their initializations.
Function declarations are fully hoisted, meaning they can be called before they are declared.
Hoisting can lead to unexpected behavior if not understood properly.
Event bubbling is the propagation of events from the target element up through its ancestors in the DOM tree.
Events triggered on a child element will 'bubble up' and trigger on parent elements.
Event listeners can be attached to parent elements to handle events from multiple child elements.
Stopping event propagation can be done using event.stopPropagation() or event.stopImmediatePropagation().
Block scope and function scope are two types of scopes in JavaScript that determine the visibility and accessibility of variables.
Block scope refers to the visibility of variables within a block of code enclosed by curly braces. Variables declared with 'let' and 'const' have block scope.
Function scope refers to the visibility of variables within a function. Variables declared with 'var' have function scope.
Variables de...
Yes, I have experience working with semantic tags in HTML.
Used semantic tags like <header>, <nav>, <main>, <section>, <article>, <aside>, <footer> for better structure and SEO.
Understand the importance of using semantic tags for accessibility and search engine optimization.
Semantic tags help in organizing content and making it more readable for developers and browsers.
Various methods for creating an object in JavaScript include object literals, constructor functions, ES6 classes, and Object.create() method.
Object literals: var obj = { key: value };
Constructor functions: function ObjectName() { this.key = value; } var obj = new ObjectName();
ES6 classes: class ClassName { constructor() { this.key = value; } } var obj = new ClassName();
Object.create() method: var obj = Object.create(pr
Shallow copy only copies the references of nested objects, while deep copy creates new copies of nested objects.
Shallow copy creates a new object but does not create copies of nested objects, only copies their references.
Deep copy creates a new object and also creates new copies of all nested objects.
Shallow copy can be achieved using Object.assign() or spread operator, while deep copy can be achieved using JSON.parse(
The code will throw an error because 'a' is declared but not initialized.
The code will result in a ReferenceError because 'a' is declared but not assigned a value.
Variables declared with 'const' must be initialized at the time of declaration.
Initializing 'a' with a value before calling test() will prevent the error.
CSS can be used to arrange elements in a row and column layout using flexbox or grid layout properties.
Use display: flex; for a row layout and display: flex; flex-direction: column; for a column layout
Use justify-content and align-items properties to align items in the main axis and cross axis respectively
For grid layout, use display: grid; and grid-template-columns or grid-template-rows to define the layout
Yes, I have utilized CSS preprocessors such as SASS and LESS.
I have experience using SASS to streamline my CSS workflow by utilizing variables, mixins, and nesting.
I have also worked with LESS to improve code organization and maintainability through features like variables and functions.
The color applied will be based on the specificity of the selector, with ID having higher specificity than class.
ID has higher specificity than class in CSS
Color applied will be based on the selector with higher specificity
Example: If ID selector has color red and class selector has color blue, the color applied will be red
Coding is the alphabet letters and write the correct coding in the right way
Aptitude involves the mathematical calculations required to assess amounts over a year.
The assignment revolves around the appropriate skills and experience relevant to the company.
Our company provides IT solutions and services to businesses of all sizes.
Developing and maintaining computer systems and networks
Providing technical support to clients
Implementing security measures to protect data
Offering cloud computing solutions
Managing data storage and backup systems
I plan to contribute my strong technical skills, attention to detail, and dedication to ensuring smooth operations.
Implementing efficient processes to improve workflow
Troubleshooting and resolving technical issues promptly
Maintaining accurate records and documentation
Collaborating with team members to enhance overall productivity
Technical communication within the company is clear, concise, and collaborative.
Technical communication is primarily done through emails, instant messaging, and project management tools.
Documentation is regularly updated and easily accessible to all team members.
Meetings and presentations are used to discuss technical issues and updates.
Collaboration tools like Slack and Microsoft Teams are used for real-time communica
I have strong communication skills and plan to apply them by effectively conveying information, collaborating with team members, and providing excellent customer service.
I have experience in effectively communicating with team members to ensure smooth workflow.
I am skilled in conveying complex technical information in a clear and concise manner.
I plan to actively listen to colleagues and clients to understand their nee...
A business plan assignment and an introduction to business assignment.
In the company, when there is a project, one team member is required to lead a group discussion about that project to enhance communication skills.
If you have a case regarding the company, how would you approach it?
Our company aims to provide efficient and reliable computer operations support to maximize productivity and minimize downtime.
Maximizing productivity through efficient computer operations
Minimizing downtime by providing reliable support
Ensuring smooth functioning of computer systems
Improving overall efficiency and performance
The company provides a comprehensive benefits package including health insurance, retirement plans, paid time off, and professional development opportunities.
Health insurance coverage for employees and their families
Retirement plans such as 401(k) with employer matching
Paid time off including vacation days, sick leave, and holidays
Professional development opportunities like training programs and tuition reimbursement
I am interested in the company's innovative technology and believe my experience in troubleshooting and system maintenance can contribute to its success.
I am impressed by the company's reputation for cutting-edge technology and commitment to excellence.
I have a strong background in troubleshooting hardware and software issues, which can help maintain smooth operations.
I am skilled in system maintenance and can ensure o...
I bring strong technical skills, attention to detail, and the ability to troubleshoot and resolve issues efficiently.
Proficiency in operating computer systems and software
Attention to detail in monitoring and maintaining systems
Ability to troubleshoot and resolve technical issues efficiently
Experience in data backup and recovery processes
I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.
Experienced technical writer with a background in software development and a passion for clear and concise communication.
Over 5 years of experience in technical writing for software products
Proficient in creating user guides, API documentation, and release notes
Strong background in software development, allowing for effective collaboration with engineers
Skilled in translating complex technical concepts into easy-to-und...
DITA XML is a structured content standard used for creating technical documentation.
DITA XML is a structured content standard for technical documentation
Commonly used tags include <topic>, <title>, <body>, <section>
Keywords are used to categorize content for easy retrieval
DITA mapping is the process of linking topics together in a hierarchy
Graphics and illustrations can be created and included i...
Agile Methodology and Scrum are popular project management frameworks used in software development.
Agile Methodology is a flexible approach to software development that emphasizes incremental delivery, collaboration, and continuous improvement.
Scrum is a specific Agile framework that divides work into sprints, with daily stand-up meetings and regular reviews.
Scrum roles include Product Owner, Scrum Master, and Developm...
In case of conflict with SMEs, I prioritize clear communication and collaboration. I have experience working with global audiences, creating various types of documents, and estimating time needed for each project.
In case of conflict with SMEs, I prioritize clear communication and collaboration to find a resolution that meets both our needs.
I have worked with global audiences by adapting my writing style to suit differe...
I receive input through meetings and emails, DDLC is Document Development Life Cycle, SDLC is Software Development Life Cycle, I use APA and Chicago style guides, I ensure accuracy through thorough research and review.
Receive input through meetings with subject matter experts and stakeholders
DDLC (Document Development Life Cycle) is the process of creating, editing, and publishing documents
SDLC (Software Development Li...
Design thinking is a problem-solving approach that focuses on understanding the user's needs and creating innovative solutions.
Design thinking involves empathizing with users, defining the problem, ideating solutions, prototyping, and testing.
Yes, I have communicated with developers to understand technical aspects and constraints of the project.
When lacking information near a deadline, I prioritize the most critical as...
Yes, I have experience working with version control systems.
I have used Git for version control in my previous roles.
I am familiar with branching, merging, and resolving conflicts in Git.
I have also worked with SVN (Subversion) in the past.
posted on 18 Dec 2024
I applied via Company Website and was interviewed in Nov 2024. There were 3 interview rounds.
I am excited to join TCS for the opportunity to work on challenging projects and grow my skills. I am open to Bangalore location.
Excited about working on challenging projects at TCS
Opportunity to grow skills and knowledge
Open to Bangalore location for work
I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.
Understanding customer pain points and demonstrating genuine care is crucial. Professionalism involves being polite, respectful, and competent. It is important to have knowledge of company products or services. Above all, problem-solving skills are essential, along with a commitment to going above and beyond to find solutions.
Emotional intelligence is the ability to recognize, understand, and manage emotions in oneself and others.
Emotional intelligence involves self-awareness and self-regulation.
It also includes empathy and social skills.
Example: Being able to remain calm and composed in a stressful customer interaction.
Example: Understanding and responding appropriately to a customer's emotions.
Technical customer service involves providing assistance with technical issues and troubleshooting for customers.
Assisting customers with technical issues related to products or services
Troubleshooting problems and providing solutions
Explaining technical information in a clear and understandable way
Offering guidance on how to use products or services effectively
Escalating complex technical issues to higher level suppor
Customer service focuses on addressing general inquiries and providing assistance, while technical support deals with resolving technical issues and troubleshooting.
Customer service involves addressing general inquiries and providing assistance with products or services.
Technical support focuses on resolving technical issues, troubleshooting problems, and providing solutions related to technology or software.
Customer s...
Technical skills in customer service refer to the ability to use various tools and software to efficiently assist customers.
Proficiency in using customer relationship management (CRM) software
Ability to troubleshoot technical issues remotely
Knowledge of online chat platforms and ticketing systems
Experience with data entry and analysis for customer support
Familiarity with social media platforms for customer interaction
Customer satisfaction is the measure of how happy and content a customer is with a company's products, services, and overall experience.
Customer satisfaction is the result of meeting or exceeding customer expectations.
It involves providing excellent customer service, resolving issues promptly, and building strong relationships with customers.
Measuring customer satisfaction can be done through surveys, feedback forms, a...
Junior Full Stack Developer
6
salaries
| ₹1.8 L/yr - ₹4 L/yr |
Front end Developer
4
salaries
| ₹3 L/yr - ₹3.6 L/yr |
TCS
Accenture
Wipro
Cognizant