Upload Button Icon Add office photos
Engaged Employer

i

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

Fusioni Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Fusioni Technologies Interview Questions and Answers

Updated 23 May 2024
Popular Designations

7 Interview questions

An IOS Developer was asked
Q. Which design patterns have you used?
Ans. 

I follow the MVC (Model-View-Controller) design pattern in my iOS development.

  • Separates data (Model), user interface (View), and control logic (Controller)

  • Improves code organization and maintainability

  • Promotes reusability and scalability

  • Examples: UIKit framework in iOS uses MVC pattern

View all IOS Developer interview questions
An IOS Developer was asked
Q. Explain ARC, strong references, and weak references in iOS development.
Ans. 

ARC manages memory in iOS, using strong and weak references to prevent memory leaks and retain cycles.

  • ARC (Automatic Reference Counting) automatically manages memory in Swift and Objective-C.

  • Strong references increase the reference count of an object, keeping it in memory.

  • Weak references do not increase the reference count, allowing the object to be deallocated.

  • Example: A parent object holding a strong reference t...

View all IOS Developer interview questions
An Android App Developer was asked
Q. What is RxJava?
Ans. 

RxJava is a library for composing asynchronous and event-based programs using observable sequences.

  • RxJava is a Java implementation of ReactiveX, a library for composing asynchronous and event-based programs using observable sequences.

  • It provides a set of operators to transform, filter, and combine these sequences.

  • RxJava can be used for network calls, database operations, UI events, and more.

  • It simplifies concurren...

View all Android App Developer interview questions
An Android App Developer was asked
Q. What is the difference between val and var?
Ans. 

Val is immutable and var is mutable in Kotlin programming language.

  • Val is used to declare a variable whose value cannot be changed once assigned.

  • Var is used to declare a variable whose value can be changed.

  • Val is similar to final variable in Java.

  • Var is similar to non-final variable in Java.

  • Val is preferred over var as it ensures immutability and reduces the chances of bugs.

  • Example: val name = "John" // value cann...

View all Android App Developer interview questions
An Android App Developer was asked
Q. What is a Broadcast Receiver?
Ans. 

Broadcast Receiver is a component of Android system that listens to system-wide broadcast announcements.

  • It is used to respond to system-wide broadcast announcements.

  • It is implemented as a subclass of BroadcastReceiver class.

  • It can be registered either statically in AndroidManifest.xml or dynamically in code.

  • Examples of system-wide broadcasts are battery low, network connectivity changes, etc.

View all Android App Developer interview questions
An Android App Developer was asked
Q. Have you worked on MVVM?
Ans. 

Yes, I have worked on MVVM architecture pattern.

  • MVVM stands for Model-View-ViewModel.

  • It separates the UI logic from the business logic.

  • ViewModel acts as a mediator between Model and View.

  • Data binding is a key feature of MVVM.

  • I have implemented MVVM in my previous Android projects using Android Architecture Components such as LiveData and ViewModel.

View all Android App Developer interview questions
An IOS Developer was asked
Q. Closure and its types
Ans. 

Closures are self-contained blocks of functionality that can be passed around and used in your code.

  • Closures capture and store references to any constants and variables from the context in which they are defined.

  • There are three types of closures: Global functions, Nested functions, and Closure expressions.

  • Closure expressions are unnamed closures written in a lightweight syntax that can capture values from their su...

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

Fusioni Technologies Interview Experiences

2 interviews found

IOS Developer Interview Questions & Answers

user image Manoj Singh

posted on 23 May 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Tableview data source and delegate Closure Protocol Class and structure Arc Data pass
  • Q2. Closure and its types
  • Ans. 

    Closures are self-contained blocks of functionality that can be passed around and used in your code.

    • Closures capture and store references to any constants and variables from the context in which they are defined.

    • There are three types of closures: Global functions, Nested functions, and Closure expressions.

    • Closure expressions are unnamed closures written in a lightweight syntax that can capture values from their surroun...

  • Answered by AI
  • Q3. Protocol and delegate
  • Q4. ARC and strong and weak
  • Ans. 

    ARC manages memory in iOS, using strong and weak references to prevent memory leaks and retain cycles.

    • ARC (Automatic Reference Counting) automatically manages memory in Swift and Objective-C.

    • Strong references increase the reference count of an object, keeping it in memory.

    • Weak references do not increase the reference count, allowing the object to be deallocated.

    • Example: A parent object holding a strong reference to a c...

  • Answered by AI
  • Q5. Design patternwhich followed
  • Ans. 

    I follow the MVC (Model-View-Controller) design pattern in my iOS development.

    • Separates data (Model), user interface (View), and control logic (Controller)

    • Improves code organization and maintainability

    • Promotes reusability and scalability

    • Examples: UIKit framework in iOS uses MVC pattern

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic question

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jan 2022. There were 3 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 - Technical 

(4 Questions)

  • Q1. Have you worked on MVVM?
  • Ans. 

    Yes, I have worked on MVVM architecture pattern.

    • MVVM stands for Model-View-ViewModel.

    • It separates the UI logic from the business logic.

    • ViewModel acts as a mediator between Model and View.

    • Data binding is a key feature of MVVM.

    • I have implemented MVVM in my previous Android projects using Android Architecture Components such as LiveData and ViewModel.

  • Answered by AI
  • Q2. What is Broadcast Reciever?
  • Ans. 

    Broadcast Receiver is a component of Android system that listens to system-wide broadcast announcements.

    • It is used to respond to system-wide broadcast announcements.

    • It is implemented as a subclass of BroadcastReceiver class.

    • It can be registered either statically in AndroidManifest.xml or dynamically in code.

    • Examples of system-wide broadcasts are battery low, network connectivity changes, etc.

  • Answered by AI
  • Q3. What is difference in Val and var?
  • Ans. 

    Val is immutable and var is mutable in Kotlin programming language.

    • Val is used to declare a variable whose value cannot be changed once assigned.

    • Var is used to declare a variable whose value can be changed.

    • Val is similar to final variable in Java.

    • Var is similar to non-final variable in Java.

    • Val is preferred over var as it ensures immutability and reduces the chances of bugs.

    • Example: val name = "John" // value cannot be...

  • Answered by AI
  • Q4. What is Rx Java .?
  • Ans. 

    RxJava is a library for composing asynchronous and event-based programs using observable sequences.

    • RxJava is a Java implementation of ReactiveX, a library for composing asynchronous and event-based programs using observable sequences.

    • It provides a set of operators to transform, filter, and combine these sequences.

    • RxJava can be used for network calls, database operations, UI events, and more.

    • It simplifies concurrency an...

  • Answered by AI
Round 3 - Coding Test 

Then ask me to parse a json api in a recycler view

Interview Preparation Tips

Interview preparation tips for other job seekers - This is one of the best organization in noida

Smooth and polite work environment.

No office politics and toxicity at all

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Fusioni Technologies?
Ask anonymously on communities.

Interview questions from similar companies

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.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2022. There were 3 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 - Aptitude Test 

25 MCQ questions online with time limit

Round 3 - Assignment 

Create webapp . Frontend, Backend , data encryption

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

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions with some basic coding questions

Round 2 - Coding Test 

They have given 3 coding questions and some pseudo codings

Round 3 - Technical 

(2 Questions)

  • Q1. Tell about your self
  • Q2. Some coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Questions on dsa, 2 medium and 1 easy level.
  • Q2. Questions related to the projects.
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Oct 2022. There were 3 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 - Technical 

(1 Question)

  • Q1. Find the duplicate items in the array.
  • Ans. 

    Find duplicate items in array of strings.

    • Iterate through array and store each item in a hash set.

    • If item already exists in hash set, it is a duplicate.

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Javascript basics questions

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Questions regards node js and java script concept, event loop, why node is single threaded, how event loop works in node js, database queries and previous work experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview experience was absolutely amazing and fantastic.
Advice:
Answer question with confidence.
Feel comfortable with interviewer.

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

Interview Questionnaire 

4 Questions

  • Q1. To find if a number is Prime or not and optimise your written code.
  • Ans. 

    Check if a number is prime and optimize the code.

    • Start by checking if the number is less than 2, in which case it is not prime.

    • Iterate from 2 to the square root of the number and check if any of them divide the number evenly.

    • If a divisor is found, the number is not prime. Otherwise, it is prime.

  • Answered by AI
  • Q2. Css question related to flex box, Grid and cross browser compatibility
  • Q3. To call an API in react and optimise your written code.
  • Ans. 

    To optimise API calls in React, use asynchronous functions and caching techniques.

    • Use async/await to handle API calls

    • Implement caching to reduce network requests

    • Use memoization to avoid unnecessary re-renders

    • Consider using a state management library like Redux

    • Use performance profiling tools like React DevTools

  • Answered by AI
  • Q4. Questions on JS concepts like Objects and Prototype Inheritance.

Interview Preparation Tips

Interview preparation tips for other job seekers - Know your basic concepts and prepare well for the interview.

Skills evaluated in this interview

Fusioni Technologies Interview FAQs

How many rounds are there in Fusioni Technologies interview?
Fusioni Technologies interview process usually has 2 rounds. The most common rounds in the Fusioni Technologies interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for Fusioni Technologies 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 Fusioni Technologies. The most common topics and skills that interviewers at Fusioni Technologies expect are JSON, XML, RSS, Javascript and JQuery.
What are the top questions asked in Fusioni Technologies interview?

Some of the top questions asked at the Fusioni Technologies interview -

  1. What is difference in Val and v...read more
  2. What is Broadcast Reciev...read more
  3. Have you worked on MV...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 2 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

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
NexTurn Interview Questions
4.1
 • 34 Interviews
View all

Fusioni Technologies Reviews and Ratings

based on 11 reviews

4.0/5

Rating in categories

4.0

Skill development

3.9

Work-life balance

3.9

Salary

3.8

Job security

3.9

Company culture

3.7

Promotions

3.9

Work satisfaction

Explore 11 Reviews and Ratings
IOS Developer
10 salaries
unlock blur

₹2.9 L/yr - ₹9.5 L/yr

Web Developer
8 salaries
unlock blur

₹2.4 L/yr - ₹9 L/yr

Android Developer
7 salaries
unlock blur

₹2.5 L/yr - ₹8.6 L/yr

IOS Application Developer
6 salaries
unlock blur

₹5.3 L/yr - ₹10 L/yr

Android App Developer
5 salaries
unlock blur

₹3.6 L/yr - ₹6.5 L/yr

Explore more salaries
Compare Fusioni Technologies with

Zidio Development

4.5
Compare

Northcorp Software

4.5
Compare

Accel Frontline

3.9
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.7
Compare
write
Share an Interview