i
GSPANN
Technologies
Filter interviews by
I applied via Naukri.com and was interviewed in May 2024. There were 4 interview rounds.
Solve a string problem by implementing an efficient algorithm to manipulate or analyze strings.
Identify the problem type: substring search, anagram check, palindrome check, etc.
Use built-in string functions for efficiency, e.g., str.contains() in Python.
Consider edge cases: empty strings, single-character strings.
Optimize for time complexity, aiming for O(n) when possible.
Example: To check if two strings are anagrams, ...
I appeared for an interview in Sep 2024.
String manipulation and selenium 4 jenkins and page object model
I applied via Approached by Company and was interviewed before Feb 2022. There were 2 interview rounds.
To add dependency SDKs for a particular build flavor, modify the build.gradle file and specify the dependencies for that flavor.
Open the build.gradle file for your project
Locate the section for the desired build flavor
Inside the dependencies block, add the necessary SDK dependencies
Sync the project to apply the changes
MVVM is a software architecture pattern that separates the user interface from the business logic.
MVVM stands for Model-View-ViewModel.
Model represents the data and business logic.
View represents the user interface.
ViewModel acts as a mediator between the View and Model.
Advantages include easier testing, separation of concerns, and improved maintainability.
Example: Xamarin.Forms uses MVVM architecture for cross-platfor...
RX Java and RXAndroid are reactive programming libraries for Java and Android respectively.
RX Java and RXAndroid allow for asynchronous and event-based programming.
They use Observables and Subscribers to handle data streams.
They simplify complex code and make it easier to handle concurrency.
Example use cases include network requests and UI updates.
RXJava is used in popular Android libraries like Retrofit and Room.
Coroutines are lightweight threads in Kotlin that allow for asynchronous programming without the overhead of traditional multithreading.
Coroutines are cooperative, meaning they can pause and resume execution at specific points in the code.
They are more efficient than multithreading because they don't require creating new threads for each task.
Coroutines can be used for both CPU-bound and IO-bound tasks.
They simplify er...
Top trending discussions
I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.
I applied via Referral and was interviewed in May 2021. There were 4 interview rounds.
I applied via Naukri.com
I applied via Recruitment Consulltant and was interviewed before Feb 2023. There were 3 interview rounds.
Coding test on Angular to test the basic concepts
Promises are used for a single async operation while observables are used for multiple async operations and can be cancelled.
Promises are eager, meaning they start immediately upon creation.
Observables are lazy, meaning they only start when subscribed to.
Promises can only handle a single value or error, while observables can handle multiple values over time.
Observables can be cancelled, while promises cannot.
Promises a...
Call stack is a data structure that stores function calls in JavaScript, while event loop manages asynchronous operations.
Call stack is a mechanism for managing function invocation in JavaScript.
Functions are added to the call stack when they are invoked and removed when they are completed.
Event loop is responsible for handling asynchronous operations in JavaScript.
Event loop continuously checks the call stack and the ...
I applied via LinkedIn and was interviewed in Jun 2023. There were 4 interview rounds.
Use lambda function to print greater number
Define a lambda function that takes two parameters
Use the max() function inside the lambda to compare the two numbers
Call the lambda function with two numbers to print the greater one
OOPs concepts refer to Object-Oriented Programming principles like inheritance, encapsulation, polymorphism, and abstraction.
Inheritance: Allows a class to inherit properties and behavior from another class.
Encapsulation: Bundling data and methods that operate on the data into a single unit.
Polymorphism: Ability to present the same interface for different data types.
Abstraction: Hiding the complex implementation detail...
Fibonacci series code in iterative and recursive methods
Iterative method: Use a loop to calculate Fibonacci numbers
Recursive method: Define a function that calls itself to calculate Fibonacci numbers
Example for iterative method: int fib(int n) { int a = 0, b = 1, c; for(int i = 2; i <= n; i++) { c = a + b; a = b; b = c; } return b; }
Example for recursive method: int fib(int n) { if(n <= 1) return n; return fib(n-1) + f...
Use two threads to print numbers 1-10 in correct order
Create two threads, one for printing odd numbers and one for printing even numbers
Use synchronization mechanisms like mutex or semaphore to ensure correct order
Example: Thread 1 prints 1, 3, 5, 7, 9 and Thread 2 prints 2, 4, 6, 8, 10
Unit testing in C++ involves writing test cases for individual units of code to ensure they work as expected.
Use a unit testing framework like Google Test or Catch2 to write and run test cases
Create separate test files for each unit of code being tested
Use assertions to check the expected behavior of the code under test
Mock dependencies or use dependency injection to isolate units for testing
Run tests regularly to catc...
I applied via Referral and was interviewed before Feb 2023. There were 2 interview rounds.
Transaction propagation in Hibernate allows the management of multiple database operations within a single transaction.
Hibernate supports different transaction propagation modes such as REQUIRED, REQUIRES_NEW, SUPPORTS, MANDATORY, NOT_SUPPORTED, and NEVER.
The propagation mode determines how the transaction should be handled when a method is called within an existing transaction.
REQUIRED is the default propagation mode,...
Spring MVC is a framework for building web applications in Java.
Spring MVC is a part of the Spring Framework, which provides a model-view-controller architecture for developing web applications.
It follows the MVC design pattern, where the model represents the data, the view represents the user interface, and the controller handles the requests and manages the flow of data.
It provides features like request mapping, data...
Some of the top questions asked at the GSPANN Technologies Technical Lead interview -
based on 5 interview experiences
Difficulty level
Duration
based on 68 reviews
Rating in categories
Senior Software Engineer
464
salaries
| ₹10 L/yr - ₹22 L/yr |
Technical Lead
390
salaries
| ₹17 L/yr - ₹31 L/yr |
Software Engineer
286
salaries
| ₹6.5 L/yr - ₹14 L/yr |
Senior Technical Lead
145
salaries
| ₹20 L/yr - ₹35.5 L/yr |
Associate Software Engineer
93
salaries
| ₹3.7 L/yr - ₹8.2 L/yr |
Xoriant
Photon Interactive
CitiusTech
Iris Software