Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Fusion Informatics Team. If you also belong to the team, you can get access from here

Fusion Informatics Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Fusion Informatics Interview Questions and Answers

Updated 13 Jul 2024
Popular Designations

7 Interview questions

An Android Developer was asked 11mo ago
Q. Explain how to perform CRUD operations using Room database.
Ans. 

Room Database in Android allows for efficient CRUD operations using annotations and DAO interfaces.

  • 1. Create Entity: Define a data class with @Entity annotation. Example: @Entity(tableName = 'users') data class User(val id: Int, val name: String)

  • 2. Create DAO: Define an interface with CRUD methods. Example: @Dao interface UserDao { @Insert fun insert(user: User) }

  • 3. Database Class: Extend RoomDatabase and define a...

View all Android Developer interview questions
A Qa Developer was asked
Q. What is the difference between smoke testing and sanity testing?
Ans. 

Smoke testing is a quick and shallow test to check if the basic functionalities of the application are working. Sanity testing is a more thorough test to check if the major functionalities of the application are working after changes have been made.

  • Smoke testing is done to check if the application is stable enough for further testing.

  • Sanity testing is done to check if the changes made to the application have not a...

View all Qa Developer interview questions
A Qa Developer was asked
Q. What is the difference between HTTP and HTTPS?
Ans. 

HTTP is unsecured while HTTPS is secured with SSL/TLS encryption.

  • HTTP stands for Hypertext Transfer Protocol while HTTPS stands for Hypertext Transfer Protocol Secure.

  • HTTP operates on port 80 while HTTPS operates on port 443.

  • HTTP is vulnerable to attacks while HTTPS is secure due to SSL/TLS encryption.

  • HTTPS is used for secure online transactions such as online banking, e-commerce, etc.

View all Qa Developer interview questions
A Qa Developer was asked
Q. What is the difference between retesting and regression testing?
Ans. 

Retesting is testing the same functionality again after fixing the defects while regression testing is testing the entire system after making changes to ensure that the changes did not affect the existing functionality.

  • Retesting is done to ensure that the defects reported earlier have been fixed.

  • Regression testing is done to ensure that the changes made to the system did not affect the existing functionality.

  • Retes...

View all Qa Developer interview questions
A Qa Developer was asked
Q. Write test cases.
Ans. 

Test cases ensure software quality. They should be comprehensive, clear, and repeatable.

  • Identify test scenarios and objectives

  • Create test cases with clear steps and expected results

  • Ensure test cases cover all functional and non-functional requirements

  • Execute test cases and report any defects found

  • Update test cases as needed based on changes to the software

View all Qa Developer interview questions
An Android Developer was asked 11mo ago
Q. Mvvm architecture and Life cycle of the activity
Ans. 

MVVM architecture separates the UI, business logic, and data layers, while the activity lifecycle manages the state of an Android app.

  • MVVM stands for Model-View-ViewModel, where the View is the UI, ViewModel contains business logic, and Model represents data.

  • Activity lifecycle includes methods like onCreate, onStart, onResume, onPause, onStop, onDestroy, etc.

  • MVVM architecture helps in separating concerns, making c...

View all Android Developer interview questions
A Qa Developer was asked
Q. What is Integration testing, Black box testing, Regression testing?
Ans. 

Integration testing checks if different modules work together, Black box testing checks functionality without knowing code, Regression testing checks if changes affect existing functionality.

  • Integration testing verifies if different modules work together as expected

  • Black box testing checks functionality without knowing the code

  • Regression testing checks if changes affect existing functionality

  • Integration testing is...

View all Qa Developer interview questions
Are these interview questions helpful?

Fusion Informatics Interview Experiences

3 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Room db crud operation
  • Ans. 

    Room Database in Android allows for efficient CRUD operations using annotations and DAO interfaces.

    • 1. Create Entity: Define a data class with @Entity annotation. Example: @Entity(tableName = 'users') data class User(val id: Int, val name: String)

    • 2. Create DAO: Define an interface with CRUD methods. Example: @Dao interface UserDao { @Insert fun insert(user: User) }

    • 3. Database Class: Extend RoomDatabase and define abstra...

  • Answered by AI
  • Q2. Mvvm architecture and Life cycle of the activity
  • Ans. 

    MVVM architecture separates the UI, business logic, and data layers, while the activity lifecycle manages the state of an Android app.

    • MVVM stands for Model-View-ViewModel, where the View is the UI, ViewModel contains business logic, and Model represents data.

    • Activity lifecycle includes methods like onCreate, onStart, onResume, onPause, onStop, onDestroy, etc.

    • MVVM architecture helps in separating concerns, making code m...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Communication is must

Skills evaluated in this interview

I applied via Company Website and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. They asked me some technical questions and also they asked me i have any skill in any language
  • Q2. I answer him i am learning react js at my home and i have some knowledge about react js

Interview Preparation Tips

Interview preparation tips for other job seekers - Alway be confident and smile take some pation and answer the questions

Qa Developer Interview Questions & Answers

user image Anonymous

posted on 11 Jan 2021

Interview Questionnaire 

6 Questions

  • Q1. Basics of Manual Testing, SQL
  • Q2. Write test cases
  • Ans. 

    Test cases ensure software quality. They should be comprehensive, clear, and repeatable.

    • Identify test scenarios and objectives

    • Create test cases with clear steps and expected results

    • Ensure test cases cover all functional and non-functional requirements

    • Execute test cases and report any defects found

    • Update test cases as needed based on changes to the software

  • Answered by AI
  • Q3. Difference between http & https
  • Ans. 

    HTTP is unsecured while HTTPS is secured with SSL/TLS encryption.

    • HTTP stands for Hypertext Transfer Protocol while HTTPS stands for Hypertext Transfer Protocol Secure.

    • HTTP operates on port 80 while HTTPS operates on port 443.

    • HTTP is vulnerable to attacks while HTTPS is secure due to SSL/TLS encryption.

    • HTTPS is used for secure online transactions such as online banking, e-commerce, etc.

  • Answered by AI
  • Q4. Difference between smoke and sanity testing
  • Ans. 

    Smoke testing is a quick and shallow test to check if the basic functionalities of the application are working. Sanity testing is a more thorough test to check if the major functionalities of the application are working after changes have been made.

    • Smoke testing is done to check if the application is stable enough for further testing.

    • Sanity testing is done to check if the changes made to the application have not affect...

  • Answered by AI
  • Q5. What is Integration testing, Black box testing, Regression testing?
  • Ans. 

    Integration testing checks if different modules work together, Black box testing checks functionality without knowing code, Regression testing checks if changes affect existing functionality.

    • Integration testing verifies if different modules work together as expected

    • Black box testing checks functionality without knowing the code

    • Regression testing checks if changes affect existing functionality

    • Integration testing is done...

  • Answered by AI
  • Q6. Difference between retesting and regression testing
  • Ans. 

    Retesting is testing the same functionality again after fixing the defects while regression testing is testing the entire system after making changes to ensure that the changes did not affect the existing functionality.

    • Retesting is done to ensure that the defects reported earlier have been fixed.

    • Regression testing is done to ensure that the changes made to the system did not affect the existing functionality.

    • Retesting ...

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Fusion Informatics?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview before Jun 2016.

Interview Questionnaire 

1 Question

  • Q1. Java related questions on Oops concept and Multithreading

Interview Preparation Tips

Round: Test
Experience: Simple aptitude and reasoning questions little java based programming
Tips: Basic programming knowledge and good aptitude
Duration: 1 hour
Total Questions: 60

Round: Technical Interview
Experience: Normal questions on Java, basic programming questions like reverse no. , String related and logical coding
Tips: What u mentioned on your resume go through that only, they will not ask apart from your resume

Skills: How Well You Are Able To Communicate What You Wanted To Tell, Programming
College Name: SRCEM

I appeared for an interview before Aug 2016.

Interview Preparation Tips

Round: Resume Shortlist
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments

Round: Test
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments
Total Questions: 15

Round: Test
Experience: See my mentality
Tips: No comments
Duration: 45 minutes

Round: Group Discussion
Experience: Communication
Tips: No comments

Skills: Communication And Confidence

I applied via Referral and was interviewed before Jan 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Which technology are you using, is this latest?
  • Ans. 

    We are using a variety of technologies, including some of the latest ones.

    • We are using React for our front-end development.

    • We are also using Node.js for our back-end development.

    • We are using Docker for containerization.

    • We are using Kubernetes for orchestration.

    • We are using AWS for cloud hosting.

    • We are constantly evaluating new technologies to see if they can improve our development process.

  • Answered by AI
  • Q2. If not then which technology can we use instead of this?
  • Ans. 

    It depends on the specific requirements and constraints of the project.

    • Consider the project's goals and objectives

    • Evaluate the available technologies and their capabilities

    • Assess the project's budget and timeline

    • Consult with stakeholders and experts in the field

    • Examples: React vs Angular, MySQL vs MongoDB, Java vs Python

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi,
Listen carefully and speak fluently.

I applied via Company Website and was interviewed before Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Regarding OOPS, wordpress and laravel.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good and I am still working here.
Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. Situation based question on experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for what is in CV

Interview Questionnaire 

2 Questions

  • Q1. Yell me about yourself
  • Q2. How uh celebrated ur last birthday
  • Ans. 

    I celebrated my last birthday with a cozy gathering of friends, delicious food, and heartfelt moments that made it truly special.

    • Hosted a small gathering at my home with close friends.

    • Prepared a homemade dinner featuring my favorite dishes, like pasta and garlic bread.

    • Decorated the space with balloons and fairy lights to create a festive atmosphere.

    • Played games and shared stories, which brought back fond memories.

    • Ended...

  • Answered by AI

I applied via Naukri.com and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. About your self,expectedly salary
  • Q2. How many months to you work in the company

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi good morning ,my interview advice is no tention to the to properly speak,eye contact ,skills these are trip help to interview panal

Fusion Informatics Interview FAQs

How many rounds are there in Fusion Informatics interview?
Fusion Informatics interview process usually has 1 rounds. The most common rounds in the Fusion Informatics interview process are One-on-one Round.
How to prepare for Fusion 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 Fusion Informatics. The most common topics and skills that interviewers at Fusion Informatics expect are Business Development, CRM, Cold Calling, Lead Generation and Relationship Building.
What are the top questions asked in Fusion Informatics interview?

Some of the top questions asked at the Fusion Informatics interview -

  1. What is Integration testing, Black box testing, Regression testi...read more
  2. Difference between retesting and regression test...read more
  3. Difference between smoke and sanity test...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 144 Interviews
Webdew Interview Questions
4.5
 • 108 Interviews
HyScaler Interview Questions
4.5
 • 104 Interviews
Snovasys Interview Questions
4.0
 • 38 Interviews
Quantsapp Interview Questions
2.9
 • 36 Interviews
View all

Fusion Informatics Reviews and Ratings

based on 17 reviews

2.6/5

Rating in categories

2.8

Skill development

2.9

Work-life balance

2.4

Salary

2.4

Job security

2.4

Company culture

2.7

Promotions

2.3

Work satisfaction

Explore 17 Reviews and Ratings
Desktop Support Engineer
5 salaries
unlock blur

₹1.4 L/yr - ₹2.4 L/yr

Content Writer
4 salaries
unlock blur

₹2.1 L/yr - ₹6.2 L/yr

Digital Marketing Executive
4 salaries
unlock blur

₹3 L/yr - ₹5.1 L/yr

Softwaretest Engineer
4 salaries
unlock blur

₹2.9 L/yr - ₹4.9 L/yr

Quality Analyst
3 salaries
unlock blur

₹5.1 L/yr - ₹5.1 L/yr

Explore more salaries
Compare Fusion Informatics with

HCL Infosystems

3.9
Compare

Zidio Development

4.5
Compare

Northcorp Software

4.5
Compare

Accel Frontline

4.1
Compare
write
Share an Interview