Upload Button Icon Add office photos

Filter interviews by

Sourcefuse Technologies Software Engineer Interview Questions and Answers

Updated 19 Feb 2020

Sourcefuse Technologies Software Engineer Interview Experiences

1 interview found

Interview Questionnaire 

2 Questions

  • Q1. I was asked core cs questions and also basic questions about my skills.
  • Q2. Be confident and strong in your technical skills and always be polite to the interviewers.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and strong in your technical skills and always be polite to the interviewers.

Interview questions from similar companies

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

I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Starts with a introduction, Core Java concepts, OOPS concepts, Singleton design pattern, Spring boot annotations like service, restcontroller.
  • Q2. DSA logical questions like 2nd highest number. How to find missing number from an array.
Round 2 - Behavioral 

(4 Questions)

  • Q1. Tell me about yourself.
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java, Spring Boot, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring Boot, and Angular

    • Strong problem-solving skills

    • Experience working in Agile development environment

    • Bachelor's degree in Computer Science from XYZ University

  • Answered by AI
  • Q2. Tell me about your family.
  • Ans. 

    I come from a close-knit family of five, including my parents, older sister, and younger brother.

    • Close-knit family of five

    • Parents, older sister, and younger brother

    • We enjoy spending time together traveling and trying new restaurants

  • Answered by AI
  • Q3. Why do you want to change the company
  • Ans. 

    Seeking new challenges and opportunities for growth in a different environment.

    • Desire for new challenges and learning opportunities

    • Seeking a better work-life balance

    • Interested in working with new technologies or industries

    • Looking for a more collaborative team environment

  • Answered by AI
  • Q4. After that interviewer describes my work and position in the company.

Interview Preparation Tips

Interview preparation tips for other job seekers - I have applied for Java position through the referral. I have received a call on Thursday that we want to schedule your interview on Saturday. And on Saturday both the rounds happened with positive feedback.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

Nothing it went well

Round 2 - Coding Test 

Same here , asked basics of java and C#

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well and go! don't stammer
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

60 MCQ questions are there

Round 2 - Technical 

(2 Questions)

  • Q1. Simple java questions are there
  • Q2. Array list vs Linked List
  • Ans. 

    Array list is faster for accessing elements by index, while Linked List is better for frequent insertions and deletions.

    • Array list has constant time access to elements by index, while Linked List requires traversing the list to find an element.

    • Linked List is better for frequent insertions and deletions as it only requires changing pointers, while Array list may require shifting elements.

    • Array list uses contiguous memor...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Job Fair and was interviewed in May 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

About front end , html, css, reasoning,

Round 2 - Technical 

(1 Question)

  • Q1. What.is let , var, const
  • Ans. 

    let, var, and const are keywords used in JavaScript to declare variables with different scopes and mutability.

    • let is used to declare variables with block scope and allows reassignment

    • var is used to declare variables with function scope and allows redeclaration

    • const is used to declare variables with block scope and does not allow reassignment, but the value can still be mutable

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. What is angular
  • Ans. 

    Angular is a popular open-source front-end web application framework developed by Google.

    • Angular is used for building dynamic web applications.

    • It allows for the creation of single-page applications.

    • Angular uses TypeScript for building applications.

    • It provides features like data binding, dependency injection, and routing.

    • Angular has a large community and ecosystem of libraries and tools.

    • Examples: AngularJS, Angular 2, A...

  • Answered by AI
  • Q2. Services in angular
  • Ans. 

    Services in Angular are singleton objects that can be used to share data and functionality across components.

    • Services are used to encapsulate reusable functionality, such as data fetching, logging, or authentication.

    • Services can be injected into components, directives, or other services using Angular's dependency injection system.

    • Services are typically defined using the @Injectable decorator.

    • Example: A DataService serv...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Communication skills.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good for freshers

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Python memory management
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is angular
  • Ans. 

    Angular is a popular open-source front-end web application framework developed by Google.

    • Angular is used for building dynamic web applications.

    • It allows for the creation of single-page applications.

    • Angular uses TypeScript for building applications.

    • It provides features like data binding, dependency injection, and routing.

    • Angular has a large community and ecosystem with many libraries and tools available.

  • Answered by AI
  • Q2. What is an angular
  • Ans. 

    Angular is a popular open-source web application framework developed by Google.

    • Angular is used for building dynamic web applications.

    • It allows for the creation of single-page applications.

    • Angular uses TypeScript for building applications.

    • It provides features like data binding, dependency injection, and routing.

    • Angular has a large community and ecosystem with many libraries and tools available.

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Sorting program without using any in built functions
  • Ans. 

    Implement a sorting program without using any built-in functions

    • Iterate through the array and compare each element with the rest to sort

    • Use a sorting algorithm like bubble sort, selection sort, or insertion sort

    • Implement the sorting logic using loops and conditional statements

  • Answered by AI
  • Q2. Writing a sort program

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well in coding challenges

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Technical 

(5 Questions)

  • Q1. Write a program Binary Search?
  • Ans. 

    Binary search is a divide and conquer algorithm that efficiently finds the target value within a sorted array.

    • Start by defining the low and high indices of the array.

    • Calculate the middle index and compare the target value with the middle element.

    • If the target value is less than the middle element, search the left subarray. If greater, search the right subarray.

    • Repeat the process until the target value is found or the s

  • Answered by AI
  • Q2. What isCICD flow?
  • Ans. 

    CI/CD flow stands for Continuous Integration/Continuous Deployment flow, which is a software development practice where code changes are automatically built, tested, and deployed.

    • CI/CD flow involves automating the process of integrating code changes into a shared repository, running automated tests, and deploying the changes to production.

    • Continuous Integration (CI) focuses on automating the build and testing of code c...

  • Answered by AI
  • Q3. How to handle Enum feature?
  • Ans. 

    Enums are a feature in programming languages that allow you to define a set of named constants.

    • Enums can be used to improve code readability by giving meaningful names to values

    • Enums can be used in switch statements to handle different cases

    • Enums can have associated values or raw values for more flexibility

  • Answered by AI
  • Q4. Singleton handles the Syncronized ?
  • Ans. 

    Yes, Singleton handles synchronization by ensuring only one instance of a class is created and providing global access to that instance.

    • Singleton pattern restricts the instantiation of a class to one object.

    • It provides a global point of access to the instance.

    • Synchronization can be implemented in the Singleton pattern to ensure thread safety.

    • Example: Singleton pattern is commonly used in database connections to ensure

  • Answered by AI
  • Q5. What are external Libraries are used in project?
  • Ans. 

    External libraries are pre-written code that can be imported and used in a project to provide additional functionality.

    • External libraries help in reducing development time by providing ready-made solutions for common tasks.

    • Examples include React for front-end development, NumPy for scientific computing in Python, and Retrofit for making network calls in Android apps.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Find repeated nos in arrays
  • Ans. 

    Find repeated numbers in arrays of strings

    • Iterate through each string in the array

    • Convert each string to an array of numbers

    • Use a hash map to track the frequency of each number

    • Identify and return the repeated numbers

  • Answered by AI
Round 2 - Behavioral 

(1 Question)

  • Q1. Current company work, reason for change, etc.

Skills evaluated in this interview

Sourcefuse Technologies Interview FAQs

What are the top questions asked in Sourcefuse Technologies Software Engineer interview?

Some of the top questions asked at the Sourcefuse Technologies Software Engineer interview -

  1. I was asked core cs questions and also basic questions about my skil...read more
  2. Be confident and strong in your technical skills and always be polite to the in...read more

Tell us how to improve this page.

Fast track your campus placements

View all
Sourcefuse Technologies Software Engineer Salary
based on 47 salaries
₹6 L/yr - ₹18.8 L/yr
65% more than the average Software Engineer Salary in India
View more details

Sourcefuse Technologies Software Engineer Reviews and Ratings

based on 6 reviews

3.9/5

Rating in categories

3.8

Skill development

3.8

Work-Life balance

4.2

Salary & Benefits

3.0

Job Security

3.3

Company culture

4.0

Promotions/Appraisal

3.0

Work Satisfaction

Explore 6 Reviews and Ratings
Devops Engineer
55 salaries
unlock blur

₹5 L/yr - ₹16 L/yr

Software Engineer
47 salaries
unlock blur

₹6 L/yr - ₹18.8 L/yr

Senior Software Engineer
30 salaries
unlock blur

₹9 L/yr - ₹28 L/yr

Technical Support Executive
19 salaries
unlock blur

₹1.8 L/yr - ₹7 L/yr

QA Engineer
18 salaries
unlock blur

₹5.5 L/yr - ₹14 L/yr

Explore more salaries
Compare Sourcefuse Technologies with

TO THE NEW

3.8
Compare

Srijan Technologies

3.6
Compare

Net Solutions

4.3
Compare

Publicis Sapient

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