i
Futurense Technologies
Filter interviews by
I applied via Approached by Company and was interviewed in Jan 2023. There were 4 interview rounds.
3 coding questions any programming language
Answering questions related to string permutations, removing numbers, and checking for anagrams without using map data structure.
To find permutations of a string, use recursion to swap characters at each position.
To remove a specific character (e.g. '3') from a string, iterate through the string and build a new string without the character.
To check for anagrams without using a map data structure, sort both strings and
I applied via Naukri.com and was interviewed before Nov 2022. There were 4 interview rounds.
Both Aptitude and coding
Top trending discussions
I applied via Referral and was interviewed before Dec 2023. There were 2 interview rounds.
I applied via Naukri.com and was interviewed before Oct 2022. There were 4 interview rounds.
Implement login with Google SSO, show emails in a single place
JWT can be implemented by generating a token with user information and a secret key, then verifying the token using the same secret key.
Generate a JWT token with user information and a secret key
Include necessary claims like expiration time, issuer, etc.
Verify the JWT token using the same secret key
Handle token expiration and refresh if needed
Middleware in Express is a function that has access to the request and response objects.
Create a middleware function using app.use() method in Express.
Middleware functions have access to the request object (req), the response object (res), and the next middleware function in the application's request-response cycle.
Example: app.use((req, res, next) => { console.log('This is a middleware function'); next(); });
Lazy loading in Angular delays loading of modules until they are needed
Lazy loading helps improve performance by only loading modules when they are required
It is achieved by using the loadChildren property in the route configuration
Lazy loaded modules are loaded asynchronously when the user navigates to the corresponding route
Server-side rendering (SSR) in Angular can be enabled by using Angular Universal.
Install Angular Universal using Angular CLI
Create a new Angular Universal project
Update app.module.ts to include server-side rendering
Build and run the Angular Universal project
I applied via Referral and was interviewed in Nov 2021. There were 2 interview rounds.
I have worked on React Native for mobile app development.
Developed a mobile app for a client using React Native
Used Redux for state management
Integrated with Firebase for real-time database and authentication
Implemented push notifications using Firebase Cloud Messaging
posted on 16 Sep 2021
I was interviewed in Feb 2021.
Round duration - 70 Minutes
Round difficulty - Medium
Timing was 9:15AM. Platform was not very good. Questions were not well explained.
Approach: We can start the traversal of the paths from the rat’s starting position, i.e. (0,0) keeping track of the visited cells during the traversal. We will recursively go through all the paths possible until the last index of the grid (destination) is reached, and add the path information using which the rat successfully reached the end.
Algorithm is as follows:
The idea is to fix a character at a position and then find the permutations for rest of the characters.
Make a list ‘ans’ which will contain the permutations of the given string.
Let’s define a function generatePermutaionsHelper(Str, l, r). This function generates the permutations of the substring which starts from index ‘l’ and ends at index ‘r’.
Tip 1 : Prepare maximum algorithms.
Tip 2 : Deep knowledge of data structure.
Tip 3 : OOPS is must.
Tip 1 : Keep it short.
Tip 2 : Mention only your own projects.
I was interviewed in Jul 2020.
No, calling finish() in onCreate() will not call onResume() or other lifecycle functions before onDestroy().
Calling finish() in onCreate() will immediately destroy the activity without calling any other lifecycle methods.
If you want to finish an activity after it has been created and resumed, you should call finish() in onPause() or onStop().
It is generally not recommended to call finish() in onCreate() as it can lead
RecyclerView is a flexible view for providing a limited window into a large data set.
RecyclerView is used to display large sets of data efficiently
It uses a ViewHolder pattern to recycle views
Corner cases include handling empty data sets and updating data dynamically
Communication between activity and fragment is done through interfaces.
Activity implements an interface and passes it to the fragment
Fragment can then call methods of the interface to communicate with the activity
This allows for communication between the two components without tight coupling
Find the second largest element in an array of strings.
Sort the array in descending order and return the second element.
Iterate through the array and keep track of the largest and second largest elements.
Use a priority queue to find the second largest element.
based on 4 reviews
Rating in categories
Data Engineer
152
salaries
| ₹3.9 L/yr - ₹13.5 L/yr |
Data Specialist
92
salaries
| ₹3.5 L/yr - ₹9 L/yr |
Associate Data Engineer
40
salaries
| ₹6 L/yr - ₹11 L/yr |
HR Associate
24
salaries
| ₹2.6 L/yr - ₹4 L/yr |
Senior HR Associate
12
salaries
| ₹3.6 L/yr - ₹5 L/yr |
TCS
Infosys
Wipro
HCLTech