Upload Button Icon Add office photos

Filter interviews by

Sourcefuse Technologies Software Developer Intern Interview Questions, Process, and Tips

Updated 14 Sep 2021

Sourcefuse Technologies Software Developer Intern Interview Experiences

1 interview found

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This round consisted of a coding test containing 2 questions purely based on Data Structures and Algorithms.
One was a Dynamic Programming Problem, and 
the other one was a linked list question

  • Q1. 

    Count Ways to Climb Stairs Problem

    Given a staircase with a certain number of steps, you start at the 0th step, and your goal is to reach the Nth step. At every step, you have the option to move either on...

  • Ans. 

    Count the number of distinct ways to climb stairs by moving either one step or two steps at a time.

    • Use dynamic programming to solve the problem efficiently.

    • Keep track of the number of ways to reach each step by considering the number of ways to reach the previous two steps.

    • Return the result modulo 10^9+7 to handle large outputs.

    • Example: For N=4, ways to climb are {0,1,2,3,4}, {0,1,3,4}, {0,2,4}. Total 3 ways.

  • Answered by AI
  • Q2. 

    Merge Sort Linked List Problem Statement

    You are given a singly linked list of integers. Your task is to sort the linked list using the merge sort algorithm.

    Explanation:

    Merge Sort is a divide and conq...

  • Ans. 

    Implement merge sort algorithm for singly linked list of integers.

    • Divide the linked list into two halves using slow and fast pointer technique.

    • Recursively sort the two halves.

    • Merge the sorted halves using a merge function.

    • Ensure to handle edge cases like empty list or single node list.

    • Example: Input: 3 1 2 -1, Output: 1 2 3 -1

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

Introduction first
Tell me about your projects. He said you have done quite a few projects in JavaScript so tell me
Akshat what is es6 in JavaScript. I was not able to answer that.
What is bootstrap?
What is the difference between div and span tags in HTML?
How many handshakes will take place if there are 6 persons? I told him the P & C approach and then he said no please explain in the normal way so I said sir it's 1+ 2 + 3 + 4 + 5 = 15.
Reverse a String in optimal way
What is a preprocessor and preprocessor directive?
What is typedef?
Have you done exception handling? Explain
Polymorphism and inheritance and explain all types of both.
There were no questions asked on OS and DBMS in this round

  • Q1. 

    Palindrome Substrings

    Given a string STR, your objective is to determine the total count of palindromic substrings within it.

    Input:

    The first line contains an integer 't', the number of test cases. Eac...
  • Ans. 

    Count the total number of palindromic substrings in a given string.

    • Iterate through each character in the string and expand around it to find palindromic substrings.

    • Use dynamic programming to optimize the solution by storing previously computed results.

    • Consider both odd and even length palindromes while counting.

    • Example: For input 'abbc', the output should be 5 (['a', 'b', 'b', 'c', 'bb']).

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

Your intro.
Bubble sort algorithm
Remove a specific character from all positions in a given string (3 test cases given)
Explain runtime polymorphism
Find minimum number of insertions required to make a string palindrome (he said No DP to be used)

I was able to code and explain all of them.
Make ER diagram of your 4th semester Project
He asked me if I know abt normalization
He asked me a ques on normalization, I was not able to answer it, then he asked me to write an SQL query based on the same table, I answered that
Query -> Find the maximum salary in each department, wherein the department and salary fields were in two different tables
Then he asked, tell me the different pillars of OOPs.
He asked about my projects
He saw my resume.
He asked about how the online coding test was, what were the difficulties you faced.

  • Q1. 

    Delete a Node from a Linked List

    You are provided with a linked list of integers. Your task is to implement a function that deletes a node located at a specified position 'POS'.

    Input:

    The first line co...
  • Ans. 

    Implement a function to delete a node from a linked list at a specified position.

    • Traverse the linked list to find the node at the specified position.

    • Update the pointers of the previous and next nodes to skip the node to be deleted.

    • Handle cases where the position is at the beginning or end of the linked list.

    • Ensure to free the memory of the deleted node to avoid memory leaks.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Punjab Engineering College(Deemed To be University). Eligibility criteriaAbove 6 CGPASourceFuse Technologies interview preparation:Topics to prepare for the interview - Data Structures, OOPS, OS, DBMS, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Keep eye contact
Tip 2 : Maintain fluctuating tone so that, the interviewer shows interest in you
Tip 3 : Do practice a lot of data structures from renowned websites like LeetCode and also from CodeZen

Application resume tips for other job seekers

Tip 1 : Add most recent and relevant projects only
Tip 2 : you should know each and everything written on your resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

6 Questions

  • Q1. Tell something about yourself
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java and JavaScript.

    • I have a Bachelor's degree in Computer Science.

    • I am proficient in Spring Framework and AngularJS.

    • I have worked on projects involving RESTful APIs and microservices architecture.

    • I am a quick learner and enjoy working in a team environment.

  • Answered by AI
  • Q2. Why do you want to join this company?
  • Ans. 

    I am impressed with the company's innovative approach and commitment to excellence.

    • I have researched the company and its products extensively and am excited about the potential for growth and development.

    • I am impressed with the company's reputation for innovation and cutting-edge technology.

    • I believe that the company's commitment to excellence aligns with my own values and goals.

    • I am excited about the opportunity to wo...

  • Answered by AI
  • Q3. What are your future plans?
  • Ans. 

    My future plans include continuous learning, honing my skills, and contributing to the growth of the company.

    • I plan to attend relevant conferences and workshops to stay updated with the latest technologies.

    • I want to work on challenging projects that will help me improve my skills.

    • I aim to become a valuable asset to the company by contributing to its growth and success.

    • I plan to mentor and guide junior developers to hel

  • Answered by AI
  • Q4. Mathematics
  • Q5. Programming
  • Q6. Logic

Interview Preparation Tips

Round: Test
Experience: It was a bit lengthy and I wasn't able to solve all the questions, but the rest was accurately completed by me.
Tips: One needs to know basic programming and logic. The rest is doable. Pay attention to time and the accuracy of your answers.
Duration: 120 minutes
Total Questions: 50

Round: Group Discussion
Experience: A few points were given to us and we had to proceed from there. I gave new ideas as well as new points of view on the already presented ideas. I also encouraged others to participate.
Tips: Don't be too quiet/passive or too loud/active. Let others also talk and don't talk about the same points again & again.
Duration: 15 minutes

Round: HR Interview
Experience: It was a good interview. I felt at ease and myself while talking about me. The CTO of the company was conducting it.
Tips: See the direction in which the interview is going and frame your answers accordingly. Tell them what they want to hear, but don't lie.

Round: Technical Interview
Experience: It was a telephonic interview, and the HR team present there was guiding me through it. The questions were easy.
Tips: Be confident while answering the questions. Don't think too much on it, and answer appropriately. Be clear and concise.

General Tips: As I said earlier as well, be yourself and be confident.
Skill Tips: Be adequately prepared on what you prepare for; know the ins and outs of the company you are sitting in for; be confident and clear on what you speak.
Skills: Programming, Logic Building, Common Aptitude, Personality
College Name: IIT Bombay
Motivation: I wanted to do programming which was also in the engineering domain. Hence Altair came as the perfect fit for me.
Funny Moments: I was not able to listen properly to the telephonic interview, but the CTO was impressed with me in the HR interview so he happily guided me through. I also found out that one of the seniors interviewing me was from the same place as that of mine, so we had a small discussion there as well. I felt at ease hence.

Interview Preparation Tips

Round: Resume Shortlist
Experience: My experience with IITB racing for more than 2 years helped me with this process. Additionally, my work as an electronic differential engineer which required development of a detailed vehicle model was more closer to the

College Name: IIT BOMBAY

Interview Preparation Tips

Round: Test
Tips: Screening test is done online and contains objective questions..
Total Questions: Online

Round: Group Discussion
Experience: Shortlisted candidates were divided in groups of 9-10 students for group discussion. GD lasted for about 40 min.
Duration: 40 minutes

Round: Interview
Experience: Technical interview was of about 35 min. There was no hr interview. Questions were related to the projects that the candidate performed during his stay at IIT Roorkee. Two puzzles were also asked. Other questions were based on the answers that the candidate gave to the previous questions.

General Tips: This company looks for people with strong technical aptitude. So do not shy from showing all your projects. In other companies too many projects may lead them to believe that you are more interested in pursuing research and will leave the company soon. This may have a negative effect on other companies. But at Altair it is good to show all your projects, your research publications, any additional courses taken. Along with your technical projects it will be good if you could show them your coding ability. They are looking for technical people with a stint for coding.
College Name: IIT ROORKEE
Motivation: Altair deals with engineering services, product design, and engineering finite element software development (eg. hypermesh, hypermath, etc). The profile for which it takes the new recruits is for engineering software code writer.

Interview Preparation Tips

Round: Test
Experience: Written Test – 50 ppl appeared 15 were shortlisted for interview, 3 were finally selected. Technical interview  mainly based on project and the basics of the subject HR – be pleasing If someone wants to appear for this company. .
Tips: Prepare some common topics such as globalization, reservation in IITs and IIMs, etc.

General Tips: Never let them ask you the points in which you are weak& Always lead the interviewer to the questions that you are expecting.
College Name: IIT BOMBAY

I applied via Naukri.com and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Problem solving and string processing

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice problem solving questions.

I applied via Company Website and was interviewed in Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Coding and solution architecture

Interview Preparation Tips

Interview preparation tips for other job seekers - It’s one good interview worth to attend

I applied via Naukri.com and was interviewed before May 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

It was mixed like aptitude and from technical.

Round 2 - Technical 

(1 Question)

  • Q1. It was F2F round. Where technical questions were asked.
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial round. It includes technical and managerial both
Round 4 - HR 

(1 Question)

  • Q1. HR round. It includes all the HR level questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be prepared with your resume content what you have mentioned

Interview Questionnaire 

1 Question

  • Q1. First-round is the technical round and aptitude which is an online test logical question is a more technical question related to C# coding one question and others are about OOPS and all SQL question like ...
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Case Study 

It was resume based, make sure to prepare your resume well.

Tell us how to improve this page.

Interview Questions from Similar Companies

Apisero Interview Questions
4.3
 • 65 Interviews
Zenoti Interview Questions
3.0
 • 42 Interviews
TestingXperts Interview Questions
3.9
 • 41 Interviews
Credera Interview Questions
3.8
 • 40 Interviews
Damco Solutions Interview Questions
3.9
 • 38 Interviews
Stefanini Interview Questions
3.0
 • 35 Interviews
View all

Fast track your campus placements

View all
Devops Engineer
50 salaries
unlock blur

₹4.6 L/yr - ₹12.3 L/yr

Software Engineer
49 salaries
unlock blur

₹6 L/yr - ₹18.8 L/yr

Senior Software Engineer
32 salaries
unlock blur

₹11 L/yr - ₹24.7 L/yr

Technical Support Executive
19 salaries
unlock blur

₹1.8 L/yr - ₹7 L/yr

Technical Lead
18 salaries
unlock blur

₹15.5 L/yr - ₹38.7 L/yr

Explore more salaries
Compare Sourcefuse Technologies with

Tekwissen

4.8
Compare

Damco Solutions

3.8
Compare

smartData Enterprises

3.3
Compare

In Time Tec Visionsoft

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview