Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Solugenix India Private Limited Team. If you also belong to the team, you can get access from here

Solugenix India Private Limited Verified Tick

Compare button icon Compare button icon Compare
4.0

based on 163 Reviews

Filter interviews by

Solugenix India Private Limited Associate Software Engineer Trainee Interview Questions and Answers

Updated 5 Dec 2024

Solugenix India Private Limited Associate Software Engineer Trainee Interview Experiences

1 interview found

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

1.5 hrs basics of dsa, html and sql

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

90 min MCQ +coding test on hackerrank.

Round 2 - Technical 

(2 Questions)

  • Q1. Sort colors DSA question
  • Q2. Detect cycle in a linked list
  • Ans. 

    Use Floyd's Tortoise and Hare algorithm to detect cycle in a linked list.

    • Initialize two pointers, slow and fast, at the head of the linked list.

    • Move slow pointer by one step and fast pointer by two steps.

    • If they meet at some point, there is a cycle in the linked list.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Was asked about why you want to join the company,my experience etc.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. Tell us about your experience.
  • Q2. In english, give me a feedback you received lately.
Round 2 - Technical 

(2 Questions)

  • Q1. Brief explanation of SOLID principles
  • Q2. Ref vs out arguments
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Do you have working experience of SwiftUI
  • Q2. Have you ever implemented or worked with server driven UIs
  • Ans. 

    Yes, I have experience implementing server driven UIs.

    • Implemented server driven UIs using JSON responses to dynamically update UI elements

    • Worked with frameworks like React and Angular to handle server driven UI updates

    • Used server driven UIs to efficiently manage and display large amounts of data

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

(2 Questions)

  • Q1. What is closure and types?
  • Ans. 

    Closure is a function that captures variables from its surrounding scope, allowing it to access those variables even after the scope has closed.

    • Closure allows a function to access variables from its lexical scope even after the function has finished executing.

    • Types of closures include lexical closures, which capture variables from the surrounding lexical scope, and function closures, which capture variables from the fu...

  • Answered by AI
  • Q2. What is Core data and all operations with example/scenarios
  • Ans. 

    Core Data is a framework provided by Apple for managing the model layer objects in an iOS application.

    • Core Data is used for storing, retrieving, and managing data in an iOS app.

    • It provides an object-oriented interface to work with data.

    • Operations include creating, reading, updating, and deleting data.

    • Example: Creating a new record in Core Data for a user profile.

    • Example: Fetching a list of items from Core Data to displ

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why you want to join the company?
  • Q2. Why should we hire you

Interview Preparation Tips

Topics to prepare for Collabera Technologies Senior Software Engineer interview:
  • Core Data
  • SwiftUI
  • GCD
  • Memory Management
Interview preparation tips for other job seekers - Good inteview

Skills evaluated in this interview

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

I was interviewed in Sep 2024.

Round 1 - Coding Test 

I was given a test which was not that difficult

Round 2 - Behavioral 

(2 Questions)

  • Q1. Why are you leaving the current job
  • Ans. 

    Seeking new challenges and growth opportunities in a more innovative environment.

    • Looking for new challenges and opportunities for growth

    • Interested in working in a more innovative environment

    • Seeking a change in company culture or work-life balance

  • Answered by AI
  • Q2. What's the driving factor for you to join Altair
  • Ans. 

    The innovative projects and collaborative work environment at Altair are the driving factors for me to join.

    • Innovative projects: I am excited about the opportunity to work on cutting-edge projects that push the boundaries of technology.

    • Collaborative work environment: I value teamwork and believe that working with talented individuals at Altair will help me grow professionally.

    • Company culture: I have heard great things ...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Nov 2024.

Round 1 - Aptitude Test 

Ge general attitude and HTML CSS JavaScript Java questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Am site for experience is needed
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Normal apti reasoning test checking normal intelligence with some basic technical questions.

Round 2 - Group Discussion 

Topic was physical cash V/s Digital cash.

Round 3 - Technical 

(1 Question)

  • Q1. About project in detail
Round 4 - Technical 

(1 Question)

  • Q1. About project in detail
Round 5 - HR 

(1 Question)

  • Q1. Intro,family background,ready to locate
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude and reasoning questions. But have to complete 40 questions in 20 mins.

Round 2 - Technical 

(1 Question)

  • Q1. 1. Introduce yourself 2. Coding question on simple string manipulation. 3. Question regarding the code i wrote. Like why I used certain datastructure. If I have used different datastructure then what err...

Interview Preparation Tips

Interview preparation tips for other job seekers - After completing aptitude and behavioural test I was called for technical round. Interview went for around 1 hour and everything was going well. I answered most of the questions and he sounded satisfied with my answers. But at the end he said- "I like your confidence and you speak with such confidence; it shows you have knowledge on these concepts but unfortunately we can't move further with your profile because you have never worked on live projects, and we strictly need someone who has previously worked on live projects."
Funny part was that I had already informed this to the recruiter when he called for the job offer. I mentioned the same on my resume and even informed it to the interviewer at the start of interview. If that was the mandatory criteria, then why they wasted so much of time.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How pagination work in jpa
  • Ans. 

    Pagination in JPA allows for retrieving a subset of results from a query by specifying a limit and offset.

    • Use the setFirstResult() method to specify the starting index of the results to retrieve

    • Use the setMaxResults() method to specify the maximum number of results to retrieve

    • Combine setFirstResult() and setMaxResults() to implement pagination in JPA queries

  • Answered by AI
  • Q2. How to create restful api
  • Ans. 

    To create a RESTful API, define endpoints, use HTTP methods, handle requests and responses, and follow REST principles.

    • Define endpoints for different resources (e.g. /users, /products)

    • Use HTTP methods like GET, POST, PUT, DELETE for CRUD operations

    • Handle requests and responses in JSON format

    • Follow REST principles like statelessness, uniform interface, and client-server architecture

  • Answered by AI

Skills evaluated in this interview

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

Aptitude,reasoning,verbal,C language,Java,C++

Round 2 - Technical 

(2 Questions)

  • Q1. What is interface in JAVA
  • Q2. Explain OOPS in JAVA

Interview Preparation Tips

Interview preparation tips for other job seekers - NA

Solugenix India Private Limited Interview FAQs

How many rounds are there in Solugenix India Private Limited Associate Software Engineer Trainee interview?
Solugenix India Private Limited interview process usually has 1 rounds. The most common rounds in the Solugenix India Private Limited interview process are Aptitude Test.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
NTT Data Interview Questions
3.9
 • 596 Interviews
View all
Software Engineer
64 salaries
unlock blur

₹3.5 L/yr - ₹12.2 L/yr

Senior System Analyst
60 salaries
unlock blur

₹8.4 L/yr - ₹18 L/yr

Senior Software Engineer
56 salaries
unlock blur

₹7.5 L/yr - ₹26 L/yr

System Analyst
50 salaries
unlock blur

₹4.7 L/yr - ₹17 L/yr

Lead System Analyst
47 salaries
unlock blur

₹11.5 L/yr - ₹24 L/yr

Explore more salaries
Compare Solugenix India Private Limited with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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