Upload Button Icon Add office photos

Filter interviews by

SphereGen Software Developer 1 Interview Questions and Answers

Updated 5 Sep 2022

SphereGen Software Developer 1 Interview Experiences

1 interview found

I applied via Approached by Company

Round 1 - One-on-one 

(1 Question)

  • Q1. On first round basic questions related to your fields and projects
Round 2 - One-on-one 

(1 Question)

  • Q1. You to deep knowledge about your related field

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep ready with advance concept and your mention projects

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Mar 2022.

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 

It was easy to clear this round

Round 3 - Coding Test 

This is basic level of coding round where we have 4 questions to solve

Round 4 - Group Discussion 

Easy to clear .my gd was like fish market

Round 5 - Coding Test 

Advance coding round
Need to solve one coding questions
We can solve easily if we have some basic knowledge on dsa

Round 6 - Technical 

(1 Question)

  • Q1. They will will give two coding questions to solve
Round 7 - Technical 

(1 Question)

  • Q1. Logical questions and coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Best not to prefer this company
Work culture is not good
Won't give respect to the employees
The way they treat is worst
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. How would you utilize AWS or Azure services to create scalable web applications
  • Ans. 

    Utilize AWS or Azure services for scalable web applications

    • Use AWS Elastic Beanstalk or Azure App Service for easy deployment and scaling

    • Leverage AWS Lambda or Azure Functions for serverless computing

    • Utilize AWS Auto Scaling or Azure Autoscale to automatically adjust resources based on traffic

    • Store data in AWS RDS or Azure SQL Database for scalable database solutions

    • Use AWS CloudFront or Azure CDN for content delivery

  • Answered by AI
  • Q2. How would you tackle memory leaks if the system your working on was experiencing this issue?
  • Ans. 

    I would use memory profiling tools to identify the source of the leaks and then fix them by properly managing memory allocation and deallocation.

    • Use memory profiling tools like Valgrind or Instruments to identify the source of the leaks

    • Review the code to ensure proper memory allocation and deallocation practices are being followed

    • Implement smart pointers or garbage collection to automatically manage memory

    • Use static co...

  • Answered by AI
  • Q3. Have you worked on legacy systems?
  • Ans. 

    Yes, I have experience working on legacy systems.

    • I have successfully maintained and upgraded legacy systems to meet current business needs.

    • I have refactored legacy code to improve performance and scalability.

    • I have integrated new technologies with legacy systems to enhance functionality.

    • I have experience troubleshooting and debugging issues in legacy systems.

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Are you capable to work with cross functional teams and handle disputes effectively
  • Ans. 

    Yes, I have experience working with cross functional teams and resolving disputes effectively.

    • I have successfully collaborated with team members from different departments to achieve project goals.

    • I am skilled at mediating conflicts and finding mutually beneficial solutions.

    • I prioritize open communication and actively listen to all team members' perspectives.

    • I have experience using conflict resolution techniques such a

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and on to point without deviations, they respect straight forwardness
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Aptitude Test 

Mintu Babu lives in a smaller house than her brother and in a larger house than her parents. Her children reside with her, and she has no other relatives. If Mintu Babu's relative U lives in a larger house than her relative S, then all the following may be true except: \n\n1) S is U's father \n\n2) S is U's mother \n\n3) U is younger than S \n\n4) S is younger than U

Round 2 - Technical 

(2 Questions)

  • Q1. 1. merge two linked list
  • Ans. 

    Merge two sorted linked lists without creating new nodes by rearranging existing nodes.

    • Traverse both linked lists simultaneously

    • Compare the values of nodes and rearrange pointers accordingly

    • Continue until one of the lists is fully traversed

  • Answered by AI
  • Q2. 2. reverse a linked list.
  • Ans. 

    Reverse a linked list by changing the direction of pointers.

    • Start with three pointers: current, previous, and next.

    • Iterate through the linked list, updating pointers to reverse the direction.

    • Update the head of the linked list to be the previous node once iteration is complete.

  • Answered by AI

Skills evaluated in this interview

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

I applied via campus placement at Manjara Charitable Trust's Rajiv Gandhi Institute of Technology, Mumbai and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Test was of 1.5 hrs and it was online. It was completely based on technical questions.

Round 2 - Coding Test 

This test was offline and it was a pen paper test wherein 10 questions will be given you have to write code or spot the error and correct them.

Round 3 - Technical 

(2 Questions)

  • Q1. Asked questions about React
  • Q2. Question based on project

Interview Preparation Tips

Interview preparation tips for other job seekers - For interview focus more on Resume. Prepare about project, skills, tech stack mentioned in resume. For coding prepare basic data structures and SQL
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between an abstract class and an interface in object-oriented programming?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have method implementations, while interface cannot.

    • A class can implement multiple interfaces, but can only inherit from one abstract class.

    • Interfaces are used to define contracts for classes to implement, while abstract classes are used to provide a common base for subclasses.

    • Example: Abstr...

  • Answered by AI
  • Q2. Abstract classes can have implemented methods; interfaces can only have declarations (before JAVA 8).

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay updated with the latest tools and technologies in your field to remain competitive.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. How to rotate a matrix?
  • Ans. 

    To rotate a matrix, transpose it and then reverse each row or column depending on the direction of rotation.

    • Transpose the matrix by swapping elements across the diagonal

    • For clockwise rotation, reverse each row of the transposed matrix

    • For anti-clockwise rotation, reverse each column of the transposed matrix

  • Answered by AI
  • Q2. How to find a particular element in a sorted array?
  • Ans. 

    Use binary search to efficiently find a particular element in a sorted array.

    • Start by comparing the target element with the middle element of the array.

    • If the target element is less than the middle element, search the left half of the array.

    • If the target element is greater than the middle element, search the right half of the array.

    • Repeat the process until the target element is found or the search space is empty.

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

I applied via Walk-in and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Assignment 

Give 10 questions from node js backend

Round 2 - One-on-one 

(6 Questions)

  • Q1. Ask about angular and node js
  • Q2. What is package.json
  • Ans. 

    package.json is a file used in Node.js projects to manage dependencies, scripts, and metadata.

    • It is a JSON file that contains information about the project, such as name, version, dependencies, and scripts.

    • It is used to manage project dependencies by listing them in the 'dependencies' and 'devDependencies' fields.

    • It allows developers to define scripts for tasks like building, testing, and running the project.

    • Example: {...

  • Answered by AI
  • Q3. What is components in angular,how share data to component
  • Ans. 

    Components in Angular are building blocks of an application. Data can be shared between components using input properties and output events.

    • Components in Angular are reusable, self-contained units of code that define a part of the user interface.

    • Data can be shared to a component using input properties, where data is passed from the parent component to the child component.

    • Data can also be shared from a child component t...

  • Answered by AI
  • Q4. What is === and == ,and wher use === is real time projects
  • Ans. 

    === is strict equality operator, while == is loose equality operator. === is commonly used in real-time projects for accurate comparisons.

    • === is a strict equality operator that checks both value and type of operands

    • == is a loose equality operator that only checks the value of operands

    • === is commonly used in real-time projects to ensure accurate comparisons and prevent unexpected type coercion issues

  • Answered by AI
  • Q5. Write arrow function syntax
  • Ans. 

    Arrow function syntax in JavaScript

    • Arrow functions are concise syntax for writing function expressions in JavaScript

    • They have a shorter syntax compared to traditional function expressions

    • They do not have their own 'this', 'arguments', 'super', or 'new.target' keywords

  • Answered by AI
  • Q6. What is difference between arrow function and anonymous function
  • Ans. 

    Arrow functions are concise syntax for writing function expressions, while anonymous functions do not have a name.

    • Arrow functions have a shorter syntax compared to anonymous functions.

    • Arrow functions do not have their own 'this' keyword, while anonymous functions do.

    • Arrow functions do not have 'arguments' object, while anonymous functions do.

    • Arrow functions are not hoisted, while anonymous functions are hoisted.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare about ur role

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Data structure and aptitude

Round 2 - Coding Test 

10 mins given for prepare for the problem and after completing the problem (program ) they asked to explain and asked to upgrade the program by reduce time complexity

Round 3 - Technical 

(2 Questions)

  • Q1. Topic given and want to explain
  • Q2. Reverse string without buildin funtion and for loop
  • Ans. 

    Reverse a string without using built-in functions or for loops

    • Use recursion to reverse the string

    • Pass the substring excluding the first character to the recursive function

    • Base case: return the character itself if the length of the string is 1

    • Concatenate the last character of the string with the result of the recursive call

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Introduce your self
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java and Python programming languages

    • Skilled in web development technologies like HTML, CSS, and JavaScript

    • Worked on projects involving database management with SQL

  • Answered by AI
  • Q2. Are you ok with agreement
  • Ans. 

    Yes, I am okay with agreement.

    • I am comfortable with signing agreements related to software development projects.

    • I understand the importance of agreements in protecting both parties involved in a project.

    • I am willing to review and negotiate agreements to ensure they are fair and reasonable.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be confidence
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Questions on arrays and strings.

Round 2 - Technical 

(2 Questions)

  • Q1. Program to solve a sudoku puzzle
  • Ans. 

    A program to solve a sudoku puzzle using backtracking algorithm

    • Implement a function to check if a number can be placed in a specific cell

    • Use backtracking to try different numbers in empty cells until the puzzle is solved

    • Ensure the solution follows sudoku rules (no repeated numbers in rows, columns, or subgrids)

  • Answered by AI
  • Q2. Questions on DP
Round 3 - HR 

(1 Question)

  • Q1. Basic questions

Skills evaluated in this interview

SphereGen Interview FAQs

How many rounds are there in SphereGen Software Developer 1 interview?
SphereGen interview process usually has 2 rounds. The most common rounds in the SphereGen interview process are One-on-one Round.

Tell us how to improve this page.

Interview Questions from Similar Companies

Zeus Learning Interview Questions
3.4
 • 34 Interviews
ENH iSecure Interview Questions
4.0
 • 29 Interviews
XenonStack Interview Questions
3.3
 • 25 Interviews
MulticoreWare Interview Questions
4.2
 • 23 Interviews
Moris Media Interview Questions
4.5
 • 23 Interviews
Big Oh Notation Interview Questions
3.0
 • 22 Interviews
View all

SphereGen Software Developer 1 Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-Life balance

4.0

Salary & Benefits

3.0

Job Security

4.0

Company culture

3.0

Promotions/Appraisal

3.0

Work Satisfaction

Explore 1 Review and Rating
Software Developer
9 salaries
unlock blur

₹5.8 L/yr - ₹10 L/yr

Senior Software Developer
5 salaries
unlock blur

₹9.4 L/yr - ₹13.8 L/yr

DOT NET Developer
4 salaries
unlock blur

₹3.8 L/yr - ₹11 L/yr

HR & Administration Executive
3 salaries
unlock blur

₹4 L/yr - ₹4.8 L/yr

Explore more salaries
Compare SphereGen with

Northcorp Software

4.4
Compare

XenonStack

3.3
Compare

Zebra Technologies

4.0
Compare

Navigators Software

3.8
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