Upload Button Icon Add office photos

Filter interviews by

Response Informatics Interview Questions and Answers

Updated 18 May 2024

Response Informatics Interview Experiences

Popular Designations

3 interviews found

HR Recruiter Interview Questions & Answers

user image Anonymous

posted on 18 May 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about your self

HR Recruiter Interview Questions asked at other Companies

Q1. You have huge target. And evil mseb wants loadsheeding,power cut. How you can convince your mentor to help you to finish mails and calls
View answer (1)

I applied via Referral and was interviewed before Nov 2021. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - HR 

(3 Questions)

  • Q1. Could you walk me through your work experience?
  • Ans. Be confident and clear about your experience and internships. Clearly explain your previous job experiences and tell the interviewer why you need in the organization.
  • Answered Anonymously
  • Q2. What is your understanding of HR?
  • Ans. This differs from one person to other. Be confident while answering about yourself.
  • Answered Anonymously
  • Q3. What are functions in HR?
  • Ans. 

    Functions in HR include recruitment, training and development, performance management, employee relations, and compensation and benefits.

    • Recruitment: Attracting and selecting qualified candidates for job openings.

    • Training and Development: Providing employees with the necessary skills and knowledge to perform their jobs effectively.

    • Performance Management: Evaluating and improving employee performance through goal settin...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and know the basics of HR & Recruitment cycle

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (8)

I applied via Referral and was interviewed in Nov 2021. There was 0 interview round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared and groomed with formal attire. be receptive to feedback from interview panel. Answer promptly, straightforward and do let the interviewer if you don't know the answer instead of being vague.

Manager Talent Acquisition Interview Questions asked at other Companies

Q1. How do you address employees who are dissatisfied with their appraisals?
View answer (1)

Jobs at Response Informatics

View all

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(37 Questions)

  • Q1. What are widgets in Flutter?
  • Ans. 

    Widgets in Flutter are the building blocks of the user interface, ranging from simple components like buttons to complex layouts.

    • Widgets are classes used to construct the user interface in Flutter.

    • There are two types of widgets: StatelessWidgets, which are immutable, and StatefulWidgets, which can change over time.

    • Widgets can be combined to create complex UI elements, such as rows, columns, grids, and more.

    • Examples of ...

  • Answered by AI
  • Q2. How Flutter is different from native?
  • Ans. 

    Flutter is a cross-platform framework that allows developers to build apps for both Android and iOS using a single codebase.

    • Flutter uses a single codebase for both Android and iOS apps, reducing development time and effort.

    • Flutter has a hot reload feature that allows developers to see changes instantly without restarting the app.

    • Flutter provides a rich set of customizable widgets that can be used to create beautiful an...

  • Answered by AI
  • Q3. Are you familiar with the patch method?
  • Ans. 

    Yes, the patch method is used in RESTful APIs to update a resource with partial data.

    • The patch method is used in RESTful APIs to make partial updates to a resource.

    • It is commonly used when you only want to update specific fields of a resource without sending the entire object.

    • For example, in a Flutter app, you can use the patch method to update only the user's email address without changing other details.

  • Answered by AI
  • Q4. What is the process for uploading images in Flutter?
  • Ans. 

    The process for uploading images in Flutter involves selecting an image from device storage, converting it to bytes, and sending it to a server.

    • Use plugins like image_picker to select an image from device storage

    • Convert the selected image to bytes using dart:io library

    • Send the image bytes to a server using http package

  • Answered by AI
  • Q5. Which client do you use to access the REST API?
  • Ans. 

    I use the http package in Flutter to access REST APIs.

    • I use the http package in Flutter to make HTTP requests to REST APIs.

    • I create instances of the http.Client class to send HTTP requests.

    • I handle responses using the http.Response class.

    • I can use the http package to perform GET, POST, PUT, DELETE, and other HTTP methods.

  • Answered by AI
  • Q6. What is a StreamBuilder in the context of Dart and Flutter?
  • Ans. 

    StreamBuilder is a widget in Flutter that listens to a stream and rebuilds itself when new data is emitted.

    • StreamBuilder is used to build UI components that depend on a stream of data.

    • It takes a stream and a builder function as parameters.

    • The builder function is called whenever new data is emitted by the stream, allowing the UI to update dynamically.

    • Example: StreamBuilder( stream: myStream, buil...

  • Answered by AI
  • Q7. How do you secure your Flutter application?
  • Ans. 

    Securing a Flutter application involves implementing encryption, authentication, authorization, and secure coding practices.

    • Implement encryption for sensitive data storage and transmission

    • Use secure authentication methods like OAuth or JWT for user login

    • Implement authorization to control access to different parts of the app

    • Follow secure coding practices to prevent common vulnerabilities like SQL injection or XSS attack

  • Answered by AI
  • Q8. What is FormData?
  • Ans. 

    FormData is a class in Flutter used to encode data to be sent in HTTP requests.

    • Used to encode data for HTTP requests

    • Can be used to send form data like text fields, files, etc.

    • Example: FormData formData = FormData.fromMap({'name': 'John', 'age': 30});

  • Answered by AI
  • Q9. Do you know about flutter architecture and how it is connected with native ?
  • Ans. 

    Flutter architecture is based on widgets and is connected with native code through platform channels.

    • Flutter architecture is based on widgets, which are the building blocks of the UI.

    • Flutter uses a reactive framework to update the UI based on changes in the app state.

    • Flutter communicates with native code through platform channels to access device-specific features or APIs.

    • Examples of platform channels include method ch...

  • Answered by AI
  • Q10. What is state?
  • Ans. 

    State is the current condition or situation of an application at a specific point in time.

    • State in Flutter represents the data that can change over time within a widget.

    • It is used to store information that affects the appearance of the UI.

    • State can be local to a single widget or shared across multiple widgets using state management techniques.

    • Examples include a counter value that increments when a button is pressed or

  • Answered by AI
  • Q11. What is state management?
  • Ans. 

    State management is the process of managing and updating the state of an application to ensure data consistency and UI synchronization.

    • State management involves handling the data that an application needs to keep track of, such as user input, network requests, and local data.

    • It helps in updating the UI based on changes in the data, ensuring a seamless user experience.

    • There are various state management solutions in Flut...

  • Answered by AI
  • Q12. What architecture you use in flutter?
  • Ans. 

    I primarily use the BLoC (Business Logic Component) architecture in Flutter.

    • BLoC architecture separates the business logic from the UI, making the code more organized and easier to maintain.

    • It involves creating streams of data to manage the state of the application.

    • BLoC pattern is widely used in Flutter for its scalability and testability.

    • Other popular architectures in Flutter include Provider, Redux, and MVC.

  • Answered by AI
  • Q13. Do you know about clean architecture?
  • Ans. 

    Clean architecture is a software design approach that separates concerns and enforces a clear separation of layers.

    • Clean architecture focuses on separating the business logic from the UI, data storage, and external dependencies.

    • It promotes testability, maintainability, and scalability by defining clear boundaries between layers.

    • Examples of clean architecture patterns include Domain-Driven Design (DDD), Model-View-Prese

  • Answered by AI
  • Q14. Do you know about bloc and name few keywords in bloc ?
  • Ans. 

    bloc is a state management library for Flutter applications.

    • State management library

    • Helps in managing the state of the application

    • Keywords: BlocProvider, BlocBuilder, BlocListener

  • Answered by AI
  • Q15. What is inheritance widget
  • Ans. 

    Inheritance widget is a way to create a new widget by extending an existing widget.

    • Inheritance widget allows a new widget to inherit properties and methods from an existing widget.

    • It helps in reusing code and creating a hierarchy of widgets.

    • Example: Creating a custom button widget by extending the existing RaisedButton widget.

  • Answered by AI
  • Q16. What is gateway
  • Ans. 

    A gateway is a node in a network that serves as an entry point to another network.

    • Gateway acts as a bridge between different networks

    • It can be a hardware device or software program

    • Examples include routers, switches, and firewalls

  • Answered by AI
  • Q17. Did you used any payment integration?
  • Ans. 

    Yes, I have used payment integration in multiple projects.

    • Integrated Stripe payment gateway for processing credit card payments.

    • Implemented PayPal integration for handling online transactions.

    • Utilized Google Pay API for enabling in-app purchases.

    • Worked with Flutter packages like flutter_inapp_purchase for subscription services.

  • Answered by AI
  • Q18. What is material design ?
  • Ans. 

    Material Design is a design language developed by Google that combines principles of good design with innovation and technology.

    • Developed by Google for Android apps and web applications

    • Focuses on clean, minimalistic design with depth and motion

    • Uses grid-based layouts, responsive animations, and transitions

    • Encourages consistent use of color, typography, and iconography

  • Answered by AI
  • Q19. What is dependency injection?
  • Ans. 

    Dependency injection is a design pattern used to remove hard-coded dependencies and make components more modular and testable.

    • Dependency injection involves providing a dependent object with the objects it depends on, rather than creating them itself.

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

    • Example: In Flutter, dependency injection can be achieved us

  • Answered by AI
  • Q20. What is abstraction?
  • Ans. 

    Abstraction is the concept of hiding complex implementation details and showing only the necessary information to the user.

    • Abstraction allows developers to focus on the essential aspects of an object or system without getting bogged down in unnecessary details.

    • It helps in reducing complexity and improving efficiency by providing a simplified view of the system.

    • For example, in Flutter development, abstraction can be ach...

  • Answered by AI
  • Q21. What is polymorphism?
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: In Flutter, the build method in a Widget class can be overridden in subclasses to customize the UI.

  • Answered by AI
  • Q22. What is a mixin, and which keyword is utilized to implement a mixin?
  • Ans. 

    A mixin is a way to reuse code in multiple classes without inheritance. 'with' keyword is used to implement a mixin in Dart.

    • Mixins are a way to share code between classes in Dart.

    • They are used to add functionality to a class without using inheritance.

    • The 'with' keyword is used to implement a mixin in Dart.

    • Mixins can be used to add features like animations, logging, etc. to multiple classes.

  • Answered by AI
  • Q23. How do you handle app responsiveness?
  • Ans. 

    I ensure app responsiveness by optimizing code, using efficient layouts, and testing on various devices.

    • Optimize code by reducing unnecessary computations and using efficient algorithms

    • Use responsive layouts like Flexbox and MediaQuery to adapt to different screen sizes

    • Test app performance on various devices to ensure smooth user experience

  • Answered by AI
  • Q24. What testing tools are available for Flutter?
  • Ans. 

    Some testing tools available for Flutter are Flutter Driver, Mockito, and Flutter Test.

    • Flutter Driver is used for UI testing and integration testing

    • Mockito is used for mocking dependencies in unit tests

    • Flutter Test is the official testing package for writing unit tests

  • Answered by AI
  • Q25. Did you used firebase ?
  • Ans. 

    Yes, I have used Firebase for real-time database, authentication, and cloud messaging in Flutter projects.

    • Utilized Firebase real-time database for storing and syncing data in real-time

    • Implemented Firebase authentication for user sign-in and sign-up processes

    • Integrated Firebase cloud messaging for push notifications

  • Answered by AI
  • Q26. Do you know about firebase firestore?
  • Ans. 

    Yes, Firebase Firestore is a flexible, scalable database for mobile, web, and server development.

    • Firebase Firestore is a NoSQL document database that stores data in collections and documents.

    • It allows for real-time data synchronization and offline support for web and mobile applications.

    • Firestore offers powerful querying capabilities and integrates seamlessly with other Firebase services.

    • Example: Firestore can be used ...

  • Answered by AI
  • Q27. Did you build any sdk?
  • Ans. 

    Yes, I have built an SDK for a Flutter project.

    • I have experience building custom SDKs for Flutter projects to provide specific functionalities or integrations.

    • I have created SDKs for handling API calls, data storage, authentication, and other common tasks.

    • One example is a custom SDK I built for integrating a payment gateway into a Flutter app.

  • Answered by AI
  • Q28. What is method channels?
  • Ans. 

    Method channels are a way for Flutter code to communicate with platform-specific code in Android and iOS.

    • Method channels allow Flutter code to call platform-specific code written in Java/Kotlin for Android or Objective-C/Swift for iOS.

    • They enable bi-directional communication between Flutter and platform code.

    • Method channels are used for tasks like accessing device sensors, making network requests, or interacting with p

  • Answered by AI
  • Q29. What is isolates?
  • Ans. 

    Isolates are independent workers that run in their own memory space, allowing for parallel execution in Flutter.

    • Isolates are Dart's solution for concurrent programming.

    • They are independent workers that run in their own memory space.

    • Isolates communicate with each other using message passing.

    • They are useful for running expensive computations in parallel without blocking the main UI thread.

  • Answered by AI
  • Q30. What is flutter compute?
  • Ans. 

    Flutter compute is a function that runs heavy computations in a separate isolate to avoid blocking the main UI thread.

    • Flutter compute is used to offload heavy computations from the main UI thread to prevent UI lag.

    • It runs the computation in a separate isolate, which is a separate memory space with its own event loop.

    • The result of the computation is sent back to the main UI thread using Future or async/await.

    • Example: co...

  • Answered by AI
  • Q31. Do you know what is signing in android?
  • Ans. 

    Signing in Android refers to the process of digitally signing an Android application package file (APK) to ensure its authenticity and integrity.

    • Signing involves using a private key to generate a digital signature for the APK file.

    • The digital signature is verified by Android devices to confirm that the app has not been tampered with.

    • Signing is important for app distribution through Google Play Store and for security pu...

  • Answered by AI
  • Q32. Do you know about any local storage?
  • Ans. 

    Local storage refers to storing data on a user's device, typically for offline access or faster loading times.

    • Local storage is used to store data on a user's device, such as preferences, settings, or cached data.

    • It is commonly used in mobile app development to provide offline access to content or improve performance.

    • Examples of local storage include SharedPreferences in Android, UserDefaults in iOS, and localStorage in

  • Answered by AI
  • Q33. Do you know about hive storage ?
  • Ans. 

    Hive is a lightweight and fast key-value database for Flutter and Dart.

    • Hive is a NoSQL database that stores data in key-value pairs.

    • It is designed to be fast, efficient, and easy to use in Flutter applications.

    • Hive uses type adapters to serialize and deserialize custom objects for storage.

    • Example: Storing user settings or cached data in a Flutter app.

  • Answered by AI
  • Q34. What measures can be implemented to secure applications from reverse engineering?
  • Ans. 

    Measures to secure applications from reverse engineering include code obfuscation, using encryption, implementing anti-tampering techniques, and utilizing secure APIs.

    • Implement code obfuscation to make the code harder to understand and reverse engineer.

    • Use encryption to protect sensitive data and prevent unauthorized access.

    • Implement anti-tampering techniques to detect and prevent modifications to the application.

    • Utili...

  • Answered by AI
  • Q35. What is callback url ?
  • Ans. 

    A callback URL is a URL provided by the developer to receive notifications or data from an external service or API.

    • It is used in web development to specify where a server should send data after completing a request.

    • Callback URLs are commonly used in OAuth authentication flows to redirect users back to the application after authentication.

    • They can also be used in webhooks to notify a server about events or updates.

  • Answered by AI
  • Q36. Reverse a string
  • Ans. 

    A function to reverse a given string.

    • Create an empty string to store the reversed string.

    • Iterate through the original string in reverse order and append each character to the new string.

    • Return the reversed string.

  • Answered by AI
  • Q37. Remove duplicates from a given list
  • Ans. 

    Remove duplicates from a list of strings

    • Create a Set to store unique elements

    • Iterate through the list and add each element to the Set

    • Convert the Set back to a list to get the unique elements

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Asking regarding self introduction.
  • Q2. Asking somthing as wish of interviewer.
  • Q3. So wonderful ,Iready for interview
  • Q4. Asking regarding my company.
  • Q5. Asking regarding my job roll.
Round 2 - Group Discussion 

Asking regarding electrical designing.

Round 3 - Technical 

(2 Questions)

  • Q1. Asking regarding cable try modelling.
  • Q2. Asking regarding equipment modelling.

Interview Preparation Tips

Topics to prepare for Acer India Electrical Designer interview:
  • Cable try modelling, equipment m
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Can you please introduce yourself?
  • Ans. 

    I am a Software Development Engineer with 5 years of experience in developing web applications using Java, Spring, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring, and Angular

    • Strong problem-solving skills

    • Experience in developing web applications

    • Good team player

  • Answered by AI
  • Q2. What type of questions are being asked?

Interview Preparation Tips

Interview preparation tips for other job seekers - I am Anjali Singh from Prayagraj in Uttar Pradesh, and I have completed a Postgraduate Diploma in Computer Applications.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. What is SDLC ?
  • Ans. 

    SDLC stands for Software Development Life Cycle, which is a process used by software developers to design, develop, and test software applications.

    • SDLC is a structured process that divides software development into distinct phases.

    • The phases typically include planning, analysis, design, implementation, testing, and maintenance.

    • Each phase has its own set of activities and deliverables to ensure the successful completion...

  • Answered by AI
  • Q2. What are oops concept ?
  • Ans. 

    Object-oriented programming concepts that focus on classes and objects for better code organization and reusability.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Ability of a class to inherit properties and behavior from another class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation det...

  • Answered by AI
  • Q3. This is enough to crack interview with Chandni ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Feel confident because interview taker is not knowledgeable at all. You will get salary if you are attractive boy.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
No response

I applied via Naukri.com and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Assignment 

They share an assignment I do it which is very large and they don't give respective time intervals but I clear that round

Round 2 - Technical 

(5 Questions)

  • Q1. Basic questions
  • Q2. What's is redux
  • Ans. 

    Redux is a predictable state container for JavaScript apps.

    • Redux is a state management tool commonly used with React.

    • It helps manage the state of an application in a predictable way.

    • Redux stores the entire state of an application in a single immutable object.

  • Answered by AI
  • Q3. What is react how it is different from html and angular
  • Ans. 

    React is a JavaScript library for building user interfaces, while HTML is a markup language and Angular is a framework.

    • React is a JavaScript library for building interactive user interfaces.

    • HTML is a markup language used for structuring content on web pages.

    • Angular is a full-fledged framework for building web applications.

    • React uses a virtual DOM for efficient rendering, while Angular uses two-way data binding.

    • React co...

  • Answered by AI
  • Q4. What is contex api in react js
  • Ans. 

    Context API is a feature in React that allows sharing data between components without having to pass props through every level of the component tree.

    • Context API provides a way to pass data through the component tree without having to pass props down manually at every level.

    • It is useful for sharing global data such as themes, user authentication, or language preferences.

    • Context API consists of three main parts: Provider...

  • Answered by AI
  • Q5. What are hooks in react and how to use
  • Ans. 

    Hooks in React are functions that let you use state and other React features without writing a class.

    • Hooks were introduced in React 16.8 to allow functional components to have state and lifecycle methods.

    • useState() is a hook that allows you to add state to functional components.

    • useEffect() is a hook that allows you to perform side effects in functional components.

    • Custom hooks are reusable functions that can contain log

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I clear all the rounds in interview but in last they tell me we will not go further with you without any reason.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Aug 2024. There were 5 interview rounds.

Round 1 - Assignment 

I need to designe a dashboard of 2-3 pages

Round 2 - Technical 

(2 Questions)

  • Q1. What is your design process?
  • Ans. 

    My design process involves research, ideation, prototyping, testing, and iteration to create user-centered solutions.

    • Research: Understand user needs, goals, and pain points.

    • Ideation: Brainstorm and generate design concepts.

    • Prototyping: Create interactive prototypes to visualize the design.

    • Testing: Gather feedback from users through usability testing.

    • Iteration: Refine and improve the design based on feedback.

    • Collaborati...

  • Answered by AI
  • Q2. What motivate you to design?
  • Ans. 

    I am motivated to design by the opportunity to solve problems creatively and make a positive impact on users' experiences.

    • I am driven by the challenge of finding innovative solutions to user needs

    • I am inspired by the potential to create intuitive and user-friendly interfaces

    • I am motivated by the ability to improve people's lives through design

    • I find joy in the process of creating visually appealing and functional desig

  • Answered by AI
Round 3 - Assignment 

I need to 2-3 screens of mobile app

Round 4 - HR 

(2 Questions)

  • Q1. Why do you want to change?
  • Ans. 

    I am seeking new challenges and opportunities for growth in the UI UX field.

    • Seeking new challenges to expand my skills

    • Opportunities for growth and advancement

    • Passion for UI UX design and desire to excel in the field

  • Answered by AI
  • Q2. What your salary expectation?
  • Ans. 

    My salary expectation is in line with industry standards for UI UX Designers with my level of experience.

    • Research industry standards for UI UX Designer salaries

    • Consider my level of experience and skills

    • Factor in the location and size of the company

    • Negotiate based on benefits and perks offered

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Please confirm your salary before an interview.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. General questions with respect to market research and people management

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview process was a sham. Probably, it was just for the sake of showing off and they had an internal candidate in mind. Go for interview for this organization only if you do not have a job at the moment. They have 0 respect for anybody's time. I went for the interview, waited or an hour and was then moved to a meeting room. Waited there again and was then asked to move to some other floor (manager could not come downstairs). Manager had 0 interest in asking questions and behaved as if she was doing a favor. She asked very few questions. I took a leave to attend the interview.
Note to Monotype: How you treat candidates actually reflects on your management and work culture. Very sorry to say it is poor in your organization.

Response Informatics Interview FAQs

How many rounds are there in Response Informatics interview?
Response Informatics interview process usually has 1-2 rounds. The most common rounds in the Response Informatics interview process are Resume Shortlist, HR and One-on-one Round.
How to prepare for Response Informatics interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Response Informatics. The most common topics and skills that interviewers at Response Informatics expect are SQL, Python, Troubleshooting, Javascript and Software Configuration Management.

Tell us how to improve this page.

People are getting interviews through

based on 2 Response Informatics interviews
Referral
100%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 787 Interviews
HCL Infosystems Interview Questions
3.9
 • 141 Interviews
View all

Response Informatics Reviews and Ratings

based on 24 reviews

4.0/5

Rating in categories

3.8

Skill development

3.8

Work-Life balance

3.6

Salary & Benefits

3.4

Job Security

3.7

Company culture

3.4

Promotions/Appraisal

3.6

Work Satisfaction

Explore 24 Reviews and Ratings
Back end engineer

Kolkata,

Mumbai

+5

1-4 Yrs

Not Disclosed

Full stack

Kolkata,

Mumbai

+5

2-5 Yrs

Not Disclosed

Streaming Data engineer

Kolkata,

Mumbai

+5

2-6 Yrs

Not Disclosed

Explore more jobs
Salesforce Developer
23 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Information Technology Recruiter
16 salaries
unlock blur

₹3 L/yr - ₹4.1 L/yr

Senior IT Recruiter
9 salaries
unlock blur

₹3.6 L/yr - ₹6.5 L/yr

Team Lead
7 salaries
unlock blur

₹6 L/yr - ₹7.2 L/yr

Domestic IT Recruiter
6 salaries
unlock blur

₹3 L/yr - ₹3.6 L/yr

Explore more salaries
Compare Response Informatics with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview