i
ClearTax
Filter interviews by
Transport refers to the movement of goods or people from one place to another, while Theory of Constraints (TOC) is a management philosophy focused on identifying and alleviating bottlenecks in a system.
Transport involves physical movement of goods or people using various modes of transportation such as trucks, trains, ships, or planes.
TOC is a management approach that aims to improve the overall efficiency of a system...
I manage events by creating detailed plans, coordinating with stakeholders, and ensuring smooth execution.
Create a detailed event plan outlining goals, timeline, budget, and resources
Coordinate with stakeholders such as vendors, sponsors, and attendees
Ensure smooth execution by overseeing logistics, troubleshooting issues, and adapting to changes
Collect feedback and evaluate the success of the event for future improvem
My expected CTC is based on industry standards, my experience, and the value I can bring to the company.
Research industry standards for SDE 1 roles in the current market
Consider my years of experience and skills in software development
Factor in the value I can bring to the company through my expertise and contributions
Be open to negotiation based on the overall compensation package offered
Top trending discussions
I applied via Naukri.com and was interviewed in Jan 2023. There were 2 interview rounds.
Copy constructor creates a new object by copying the values of an existing object.
Copy constructor is used to create a new object with the same values as an existing object.
It is invoked when a new object is initialized with an existing object.
It is used to avoid shallow copy and ensure deep copy of objects.
Example: MyClass obj1; MyClass obj2 = obj1; //copy constructor called to create obj2
Shallow copy creates a new object with the same reference as the original, while deep copy creates a new object with a new reference.
Shallow copy only copies the reference to the original object, so changes made to the copy will affect the original object.
Deep copy creates a new object with a new reference, so changes made to the copy will not affect the original object.
In Python, shallow copy can be made using the cop...
Vectors are dynamic arrays that allocate memory dynamically. They work by storing elements in contiguous memory locations.
Vectors allocate memory dynamically and store elements in contiguous memory locations
They can be resized dynamically as needed
Accessing elements is done using an index, similar to arrays
Inserting or deleting elements in the middle of a vector can be expensive as it requires shifting all subsequent e...
STL provides various containers like vector, list, map, set, etc.
Vector: Dynamic array with contiguous memory allocation
List: Doubly linked list
Map: Associative container with key-value pairs
Set: Associative container with unique keys
Deque: Double-ended queue
Stack: LIFO data structure
Queue: FIFO data structure
Ordered map maintains the order of insertion while unordered map does not.
Ordered map is implemented using a balanced binary search tree while unordered map is implemented using a hash table.
Ordered map is useful when we need to maintain the order of insertion while unordered map is useful when we need faster access to elements.
Example of ordered map: std::map in C++, Example of unordered map: std::unordered_map in C++
Polymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as if they were the same type.
Polymorphism is achieved through method overriding and method overloading.
Method overriding is when a subclass provides a specific implementation of a method that is already provided by its parent class.
Method overloading is when a class has two or more methods with the same...
Name mangling is used by compilers to differentiate between different functions with the same signature.
Name mangling is a process of encoding/decoding function names to include additional information such as parameter types and namespaces.
This allows the compiler to differentiate between functions with the same name and signature.
For example, in C++, two functions with the same name and signature but in different name...
C++ program to find absolute difference between sum of diagonal elements
Create a 2D array
Calculate sum of diagonal elements
Calculate absolute difference
Print the result
Virtual functions allow dynamic binding of functions at runtime. Vptr and Vtable are used to implement this feature.
Virtual functions are declared in base class and can be overridden in derived classes.
Vptr is a pointer to Vtable which contains addresses of virtual functions.
Virtual function is needed to achieve polymorphism and to allow derived classes to have their own implementation of a function.
Virtual functions a...
I am a software engineer with 5 years of experience in developing web applications and mobile apps.
Developed a web application for a healthcare company using React and Node.js
Built a mobile app for a retail company using React Native
Worked on a project for a financial institution using Java and Spring Framework
Experience in Agile methodology and Scrum framework
Strong skills in problem-solving and debugging
Check if a point is inside or outside a circle
Calculate the distance between the center of the circle and the given point using the distance formula
If the distance is less than the radius of the circle, the point is inside the circle
If the distance is equal to the radius of the circle, the point is on the circle
If the distance is greater than the radius of the circle, the point is outside the circle
Smart pointers are objects that manage the memory of dynamically allocated objects, preventing memory leaks and dangling pointers.
Smart pointers are a type of RAII (Resource Acquisition Is Initialization) technique.
They automatically delete the object they point to when it is no longer needed.
Examples of smart pointers include unique_ptr, shared_ptr, and weak_ptr in C++.
They are used to prevent memory leaks and danglin...
I applied via LinkedIn and was interviewed in Jul 2022. There were 3 interview rounds.
Sudu codes all languages array string if else for loop
Factorial program using class syntax explained with examples.
Factorial is the product of all positive integers up to a given number.
Class syntax is used to define a blueprint for creating objects.
Example: class Factorial { def fact(n): return 1 if n == 0 else n * fact(n-1) }
Example: f = Factorial(); print(f.fact(5)) # Output: 120
Function syntax is the structure and format of a function in a programming language.
Function name followed by parentheses and parameters
Code block enclosed in curly braces
Return statement to output a value
Example: function add(a, b) { return a + b; }
Example: function greet(name) { console.log('Hello, ' + name + '!'); }
posted on 10 Dec 2024
I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.
I am a software engineer with 5 years of experience in developing web applications using Java, Spring Boot, and Angular.
5 years of experience in software development
Proficient in Java, Spring Boot, and Angular
Strong problem-solving skills
Experience working in Agile development environment
Bachelor's degree in Computer Science from XYZ University
I come from a close-knit family of five, including my parents, older sister, and younger brother.
Close-knit family of five
Parents, older sister, and younger brother
We enjoy spending time together traveling and trying new restaurants
Seeking new challenges and opportunities for growth in a different environment.
Desire for new challenges and learning opportunities
Seeking a better work-life balance
Interested in working with new technologies or industries
Looking for a more collaborative team environment
I applied via Company Website and was interviewed in Sep 2024. There were 3 interview rounds.
Focusing on moderate level patterns
Object oriented principles are fundamental concepts in software development that focus on organizing code into objects with properties and behaviors.
Encapsulation: Bundling data and methods that operate on the data into a single unit.
Inheritance: Allowing a new class to inherit properties and behaviors from an existing class.
Polymorphism: The ability for objects of different classes to respond to the same message in di...
Array questions - rearranging letters for encryption
posted on 12 Dec 2024
Use thread pooling and asynchronous processing to handle multiple requests efficiently in Spring Boot.
Implement thread pooling to manage multiple requests concurrently.
Use asynchronous processing to handle requests without blocking the main thread.
Consider using reactive programming with Spring WebFlux for better scalability.
Optimize database queries and external API calls to reduce response times.
Implement caching mec...
posted on 14 Jul 2024
I applied via Naukri.com and was interviewed in Jun 2024. There were 3 interview rounds.
Yes, I have experience implementing server driven UIs.
Implemented server driven UIs using JSON responses to dynamically update UI elements
Worked with frameworks like React and Angular to handle server driven UI updates
Used server driven UIs to efficiently manage and display large amounts of data
Closure is a function that captures variables from its surrounding scope, allowing it to access those variables even after the scope has closed.
Closure allows a function to access variables from its lexical scope even after the function has finished executing.
Types of closures include lexical closures, which capture variables from the surrounding lexical scope, and function closures, which capture variables from the fu...
Core Data is a framework provided by Apple for managing the model layer objects in an iOS application.
Core Data is used for storing, retrieving, and managing data in an iOS app.
It provides an object-oriented interface to work with data.
Operations include creating, reading, updating, and deleting data.
Example: Creating a new record in Core Data for a user profile.
Example: Fetching a list of items from Core Data to displ
A server is a computer or software that provides functionality for other programs or devices. ABAP server is a server that runs ABAP programs.
A server is a computer or software that provides services or resources to other computers or programs.
ABAP server is a server that runs ABAP (Advanced Business Application Programming) programs, commonly used in SAP systems.
ABAP server handles requests from clients and executes A...
SQL Server Agent is a job scheduling tool in SQL Server. Abstract classes cannot be instantiated. SPs are faster than functions. Microservice concepts. IEnumerable vs IQueryable.
SQL Server Agent is a job scheduling tool in SQL Server for automating tasks like backups, database maintenance, etc.
Abstract classes cannot be instantiated because they are incomplete and meant to be extended by subclasses.
Extension methods ca...
A record in C# is a data structure that stores a fixed number of fields of different data types.
A record in C# is similar to a struct in C++, containing fields to store data.
Example: 'public record Person { public string Name; public int Age; }'
Generic method for summation: 'public T Sum
Test cases can include checking the su...
Strategic Account Manager
38
salaries
| ₹16.6 L/yr - ₹42 L/yr |
Assistant Manager
37
salaries
| ₹7.5 L/yr - ₹12.5 L/yr |
Customer Success Manager
37
salaries
| ₹3.2 L/yr - ₹11.2 L/yr |
Senior Enterprise Sales Manager
25
salaries
| ₹8.8 L/yr - ₹20.1 L/yr |
Senior Customer Success Manager
24
salaries
| ₹6 L/yr - ₹17.4 L/yr |
Zerodha
Quicko
H&R Block
Taxmann Publications