Filter interviews by
I was interviewed in Apr 2024.
Arrow functions are a concise way to write functions in JavaScript.
Arrow functions do not have their own 'this' keyword.
They have a shorter syntax compared to traditional function expressions.
Arrow functions are often used in ES6 for cleaner and more readable code.
Example: const add = (a, b) => a + b;
A component is a reusable, self-contained piece of code that defines the appearance and behavior of a part of a user interface.
Components can be used to break down complex UIs into smaller, manageable pieces.
They can be reused across different parts of an application.
Components can have their own state, props, and lifecycle methods.
Examples include buttons, forms, modals, and navigation bars.
Axios is a popular JavaScript library used to make HTTP requests from the browser or Node.js.
Axios is a promise-based HTTP client for making asynchronous requests.
It can be used in both browser and Node.js environments.
Axios supports interceptors for request and response handling.
It can handle JSON data, file uploads, and more.
Some common HTTP methods used with Axios are GET, POST, PUT, DELETE.
Top trending discussions
I applied via Approached by Company and was interviewed in Jan 2022. There were 2 interview rounds.
posted on 5 Nov 2024
I applied via Naukri.com
Yes, I am interested in sales as it allows me to understand customer needs and provide solutions.
I enjoy interacting with customers and understanding their requirements.
I am motivated by meeting sales targets and achieving success.
I believe in the value of building relationships with clients to drive business growth.
Yes, I am ready for relocation.
I am open to relocating for the right opportunity
I have experience moving for previous jobs
I am excited about the possibility of living in a new city
They discussed some easy questions on Node JS and Dp and heap , binary search
Multithreading is the ability of a CPU to execute multiple threads concurrently, improving performance and responsiveness.
Multithreading allows for parallel execution of tasks, improving performance by utilizing multiple CPU cores.
It is commonly used in applications that require handling multiple tasks simultaneously, such as web servers, video games, and data processing.
Multithreading can help improve responsiveness i...
I applied via Campus Placement and was interviewed in Feb 2024. There was 1 interview round.
HTML CSS javascript jQuery
I applied via Job Fair and was interviewed in Jun 2023. There were 3 interview rounds.
Ms office,Core Java , Tally , C,
In my Opinion,view , If you ask me, As far as I can see/I am Concerned , It seems to me that , I think /feel/reckon/ belive , If you want my option , What we have to decide
I was interviewed in Jul 2021.
Round duration - 70 minutes
Round difficulty - Medium
Link was active for 24 hours, I took the test at night.
Difficulty was medium.
There were some MCQs on Springboot/Java along with 2 DSA questions.
Applied BFS for level order traversal.
The core logic is how to append the current level nodes in the resultList.
If currLevel is even:
then append the curr level node list as it is to the resultList
else:
reverse the curr level node list and then append to the resultList.
Finally return the resultList.
As we need to find K closest restaurants to the source (0,0), I used priority queue(MaxHeap) in python to eliminate all the farthest restaurants and have only k closest restaurants left at the end of the loop.
I had stored the elements in priority Queue as a pair [distance, coordinates], so that at I can directly get the coordinates for the k closest restaurants to return in the result.
Round duration - 60 minutes
Round difficulty - Medium
Technical round (Questions on Java, Spring Boot, Microservices, Rest APIs, OOPs and Solid principals).
Why is multiple inheritance not allowed in java?
What is time theta?
What are java collections?
Round duration - 45 minutes
Round difficulty - Easy
How was your previous work experience?
What are your strengths and weaknesses?
What are your hobbies?
Salary Discussions.
Tip 1 : Prepare core concepts of OOPs and SOLID principles with some examples.
Tip 2 : Practice DSA Medium level question (Trees, Heaps, LinkedList, Dynamic Programming, BFS-DFS, Two pointer, Backtracking)
Tip 3 : For OA round, Prepare Spring Boot core concepts (For MCQs) along with DSA.
Tip 1 : Mention all the previous projects tasks/achievements point wise along with the Tech Stack used.
Tip 2 : Practice explaining projects which were part of your work experience and be ready for follow up questions.
Tip 3 : Specify relevant skills and certificates in the resume.
Dependency injection is a design pattern that allows objects to receive dependencies rather than creating them.
It helps to decouple the code and makes it more testable and maintainable.
It allows for easier swapping of dependencies without changing the code.
There are three types of dependency injection: constructor injection, setter injection, and interface injection.
Example: Instead of creating a database connection ob...
Bean factory is used for creating and managing instances of beans in Spring framework.
Bean factory is responsible for creating and managing instances of beans defined in the Spring configuration file.
It provides a way to decouple the configuration and specification of dependencies from the actual application code.
Bean factory supports different scopes of beans such as singleton, prototype, request, session, etc.
It also...
Switch case is used for multiple conditions while if else is for binary conditions. Sorting can be done using various algorithms.
Switch case is faster than if else for multiple conditions
If else is more readable for binary conditions
Sorting can be done using bubble sort, insertion sort, quick sort, etc.
Example code for bubble sort: for(i=0;i
Difference between compiler and interpreter with a coding challenge
Compiler translates the entire code into machine language before execution while interpreter translates line by line during execution
Compiler generates an executable file while interpreter does not
Compiler is faster but debugging is harder while interpreter is slower but debugging is easier
Coding challenge: Write a program to find the sum of two numbers
I applied via Naukri.com and was interviewed in Dec 2020. There were 3 interview rounds.
Python interpreter is a program that executes Python code.
It reads Python code and converts it into machine-readable code
It executes the code line by line
It also provides a command-line interface for interactive programming
Examples: CPython, Jython, IronPython
Python was developed by Guido van Rossum in the late 1980s.
Guido van Rossum started working on Python in December 1989.
Python's design philosophy emphasizes code readability and ease of use.
Python is an interpreted, high-level, general-purpose programming language.
Python's popularity has been steadily increasing over the years.
Python is open-source and has a large community of developers contributing to its development
PEP8 is a style guide for Python code.
PEP8 provides guidelines for formatting, naming, and organizing Python code.
It covers topics such as indentation, line length, variable naming, and function and class definitions.
Adhering to PEP8 can improve code readability and maintainability.
Tools such as Flake8 and PyLint can be used to check code against PEP8 standards.
Python has several built-in data types including integers, floats, strings, booleans, lists, tuples, and dictionaries.
Integers are whole numbers without decimals
Floats are numbers with decimals
Strings are sequences of characters
Booleans are either True or False
Lists are ordered collections of items
Tuples are ordered, immutable collections of items
Dictionaries are unordered collections of key-value pairs
A class is a blueprint for creating objects that have similar properties and behaviors.
A class is a user-defined data type that encapsulates data and functions.
It provides a way to organize and structure code.
Objects are instances of a class.
Classes can inherit properties and behaviors from other classes.
Example: A class 'Car' can have properties like 'color', 'model', and behaviors like 'start', 'stop'.
An object is an instance of a class that encapsulates data and behavior.
Objects are created from classes
They have attributes (data) and methods (behavior)
Objects can interact with each other through method calls
Examples include a car object with attributes like make, model, and color, and methods like start and stop
Another example is a person object with attributes like name and age, and methods like walk and talk
Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.
Inheritance allows code reuse and promotes code organization.
The existing class is called the parent or superclass, and the new class is called the child or subclass.
The child class inherits all the properties and methods of the parent class and can also add its own unique properties and ...
Multiple inheritance is the ability of a class to inherit properties and behavior from multiple parent classes.
It allows a class to inherit from more than one parent class.
It can lead to the diamond problem where a class inherits from two classes that have a common base class.
Languages like C++ support multiple inheritance while others like Java do not.
Example: A class can inherit properties from both a 'Vehicle' class...
Data abstraction is the process of hiding implementation details and showing only the necessary information to the user.
Abstraction is achieved through abstract classes and interfaces
It helps in reducing complexity and increasing efficiency
Example: A car dashboard shows only necessary information like speed, fuel level, etc. and hides the internal workings of the car
Abstraction is one of the four fundamental concepts o
PHP Developer
4
salaries
| ₹2.4 L/yr - ₹3.8 L/yr |
Laravel Developer
3
salaries
| ₹4.2 L/yr - ₹7.2 L/yr |
TCS
Accenture
Wipro
Cognizant