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

Filter interviews by

Clear (1)

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

I applied via Campus Placement and was interviewed before Feb 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. 1. Explain your project and the technologies used by you in it.
  • Q2. 2. Describe data structures and type of it.
  • Ans. 

    Data structures are ways to organize and store data efficiently.

    • Data structures are used to store and manipulate data in a structured manner.

    • They can be classified into linear and non-linear data structures.

    • Examples of data structures include arrays, linked lists, stacks, queues, trees, and graphs.

  • Answered by AI
  • Q3. 3. Difference between various kind of data structure. (Array and linked )
  • Ans. 

    Array and linked list are two different data structures used for storing and accessing data.

    • Array is a collection of elements of the same data type stored in contiguous memory locations.

    • Linked list is a collection of nodes where each node contains data and a reference to the next node.

    • Arrays have fixed size, while linked lists can grow or shrink dynamically.

    • Accessing elements in an array is faster than in a linked list...

  • Answered by AI
  • Q4. 4. Tell about the various services provided by AWS and how have ypu used them.
  • Ans. 

    AWS provides various services including compute, storage, database, networking, analytics, machine learning, and more.

    • Compute: EC2, Lambda

    • Storage: S3, EBS

    • Database: RDS, DynamoDB

    • Networking: VPC, Route 53

    • Analytics: Athena, EMR

    • Machine Learning: SageMaker, Rekognition

    • Example: I have used EC2 to host a web application and S3 to store static files.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep you basics clear and be confident.
Be sure to put only those things in your resume which are really in your knowledge area.
Revise your project work.
Dont act oversmart.

Skills evaluated in this interview

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

Interview Questionnaire 

2 Questions

  • Q1. Java : mainly conceptual knowledge of basics, OOPs, exceptional handling,constructors.
  • Q2. Questions like " what is you do not get selected today ?"

Interview Preparation Tips

Interview preparation tips for other job seekers - This would be long paragraph but i hope it will help people.
Many candidates prepare very well for technical interviews, but do not take any preparation for HR or Managerial round. It is very important to prepare yourself for all the three. I could not answer 3 out of 8 or 10 technical questions (others were very confidently answered). HR and MR rounds are not just communication rounds but they are the rounds where you will be kind of judged and will be evaluated as a human being. Questions like " what would you do as a team leader if two of your team members are arguing over a technical decision " judges your way of approach as a leader in an environment and what kind of person you are. These all are my personal opinion it may differ from other people. Its ok to handle some answers but you have to be honest and express the real you because thats what will make you stand out of the crowd. I am an average CSE student, of-course I knew there will be candidates who would be better, so what could I do to stand out of the crowd ? Very simple : I smiled !! As soon as the interview started i greeted everyone with a positive smile and also kept it through out the interview ..!! That was my first impression to all the three interviewers. This showed that I was confident. Avoiding answers which are available on the internet and answering something which you feel and being right for the environment shows matters. Be confident, and be the original you, its probable that they may notice your originality which would obviously create a good impression.

Technical Advice : Try to give an example to support your answer. Do not give wrong answer. If you do not know an answer simply say that you do not remember it right now.

I applied via Campus Placement and was interviewed before Jul 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

Aptitude test on CS subjects like C programming, DBMS, CN, and OS.

Round 2 - Coding Test 

There were 2 input-output based questions of easy to moderate level

Round 3 - Group Discussion 

Every candidate was given an individual topic and was asked to speak on it

Round 4 - HR 

(1 Question)

  • Q1. Some typical HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with basic CS subjects you will be able to clear all rounds with ease.

I applied via Referral and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Java questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic questions

I applied via Company Website and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude, reasoning, English, cloud sections

Round 2 - Coding Test 

2 questions in which , one has to complete within an 50 minutes

Round 3 - Communication assessment 

(2 Questions)

  • Q1. Tell me about t Yourself
  • Q2. What are the previous experiences

Interview Preparation Tips

Topics to prepare for Accenture Associate Software Engineer interview:
  • Java
  • SQL
  • Agile Methodology
  • SDLC
Interview preparation tips for other job seekers - Be confident
Keep it just and short
Explain more about your experiences

I applied via Company Website and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

TNQT: TCS National Qualifier Test

Round 2 - Technical 

(1 Question)

  • Q1. All technical questions related to your project and basic understanding of any programming language. Basically questions from your resume will be asked.
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. What is your family background?

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best, TCS is not tough to get into. But getting good project is a main cookie to be cracked.

I was interviewed in Nov 2016.

Interview Questionnaire 

6 Questions

  • Q1. Explain Btech Project
  • Ans. 

    Developed a Btech project on automated attendance system using facial recognition.

    • Developed a software application to automate the attendance process in educational institutions.

    • Implemented facial recognition technology to identify and mark attendance of students.

    • Used machine learning algorithms to train the system for accurate recognition.

    • Integrated the application with a database to store attendance records.

    • Provided ...

  • Answered by AI
  • Q2. Code Pascal's Traingle
  • Ans. 

    Code Pascal's Triangle

    • Pascal's Triangle is a triangular array of binomial coefficients

    • Each number is the sum of the two numbers above it

    • The first and last numbers in each row are 1

    • Can be implemented using nested loops or recursion

  • Answered by AI
  • Q3. What is abstract function
  • Ans. 

    An abstract function is a function that has no implementation and must be implemented by its subclasses.

    • An abstract function is declared with the 'abstract' keyword.

    • It is used to define a template for its subclasses to follow.

    • It cannot be instantiated and must be implemented by its subclasses.

    • It can have abstract and non-abstract methods.

    • Example: abstract class Animal { abstract void makeSound(); }

    • Example: class Dog ex...

  • Answered by AI
  • Q4. Difference between abstract and normal function
  • Ans. 

    Abstract functions cannot be instantiated and must be implemented by child classes, while normal functions can be directly called.

    • Abstract functions have no implementation in the parent class, while normal functions do.

    • Abstract functions are declared with the 'abstract' keyword, while normal functions are not.

    • Normal functions can be called directly, while abstract functions must be implemented by child classes.

    • An examp...

  • Answered by AI
  • Q5. Your 2 weakness
  • Ans. 

    Perfectionism and public speaking anxiety

    • I tend to be a perfectionist, which can sometimes lead to spending too much time on a task

    • I struggle with public speaking anxiety, but I have been working on improving my communication skills through practice and training

  • Answered by AI
  • Q6. Why Capgemini
  • Ans. 

    Capgemini is a global leader in consulting, technology services, and digital transformation.

    • Capgemini has a strong reputation in the industry for delivering high-quality software solutions.

    • The company offers a wide range of opportunities for career growth and development.

    • Capgemini has a collaborative and inclusive work culture that fosters innovation and teamwork.

    • The company has a global presence, providing exposure to...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: General Aptitude and English

Round: Technical Interview
Experience: 10 minutes approx. Questions were repetitive for candidates. i.e. for 13 candidates interviewed most of those were similar.

Round: HR Interview
Experience: Other normal stuff about family.
Tips: HR might try to get under your skin so prepare for general hr questions.

College Name: IIT Patna

Skills evaluated in this interview

Interview Questionnaire 

10 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for software development.

    • Recent graduate with a degree in Computer Science

    • Passionate about software development

    • Experience with programming languages like Java and Python

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

    Developed a web-based inventory management system for a retail company

    • Used React for front-end development

    • Implemented RESTful APIs using Node.js and Express for back-end

    • Utilized MongoDB for database management

  • Answered by AI
  • Q3. Difference between primary key and unique key
  • Ans. 

    Primary key uniquely identifies a record in a table, while unique key ensures uniqueness of a column.

    • Primary key cannot have null values, while unique key can have one null value.

    • A table can have only one primary key, but multiple unique keys.

    • Primary key is automatically indexed, while unique key may or may not be indexed.

    • Example: Primary key - employee ID, Unique key - email address

  • Answered by AI
  • Q4. A basic C program to find the frequency of an alphabet in a string
  • Ans. 

    This program calculates the frequency of a given alphabet in a string using a basic C program.

    • Declare an array of size 26 to store the frequency of each alphabet

    • Iterate through the string character by character

    • For each character, check if it is an alphabet

    • If yes, increment the corresponding frequency count in the array

    • Print the frequency of the desired alphabet

  • Answered by AI
  • Q5. 2 trick questions
  • Q6. How you started your day?
  • Ans. 

    I start my day by waking up early, exercising, having a healthy breakfast, and planning my tasks for the day.

    • Wake up early

    • Exercise

    • Have a healthy breakfast

    • Plan tasks for the day

  • Answered by AI
  • Q7. Tell me about your hobbies
  • Ans. 

    I enjoy hiking, reading, and playing the guitar in my free time.

    • Hiking: I love exploring new trails and being in nature.

    • Reading: I enjoy diving into different genres and expanding my knowledge.

    • Playing the guitar: I find it relaxing and love learning new songs.

  • Answered by AI
  • Q8. Do you have any problem in relocation?
  • Ans. 

    No, I am open to relocation for the right opportunity.

    • I am open to relocating for the right job opportunity

    • I have relocated in the past for career advancement

    • I am flexible and adaptable to new environments

  • Answered by AI
  • Q9. What if you are sent to Coimbatore? How will you manage there?
  • Ans. 

    I am adaptable and resourceful, so I will manage well in Coimbatore.

    • Research about the city's culture, language, and local amenities.

    • Connect with local professionals or expats for guidance and support.

    • Explore transportation options and create a budget for living expenses.

    • Stay open-minded and embrace the new experience with enthusiasm.

  • Answered by AI
  • Q10. Questions on modern day technology

Interview Preparation Tips

Round: Test
Experience: This round is the most common round in a general campus recruitment procedure. I have been practising for this round for quite some time, like for 4-5 months. And finally the day came. It was on 1st of September 2016. So it is still fresh in my mind. The test started at somewhere around 2 p.m (as because the number of computers were less than the number of applicants, so we were divided into batches). I was confident enough with the paper as i practised many of them at the time of preparation. We have been told that the paper will be adaptive type. But those who gave the test denied this fact. There were three rounds, aptitude, followed by verbal and logical reasoning. I was tensed at the time of the test as i was fresher and many had expectations from me. Verbal round was easy ( many questions were common with the previous years questions), logical round was easy too, but the aptitude round was a bit tricky. I did some grave mistakes in the aptitude round. So after the test was completed, i was surely not confident with the aptitude portion,(If you are unable to clear one of them, no matter how well you score in the others, you will be rejected). In the evening the results came and luckily i was selected for the second round i.e the technical round.
Tips: KEEP PRACTISING THE QUESTIONS..!! Solve questions online as the final test will be machine based and not written. try to solve the question quickly. If possible, buy an aptitude book and solve questions from there. In the final test, If you can't solve a question, SIMPLY LEAVE it and go for the next question. NEVER EVER TRY TO SEE WHAT OTHERS ARE DOING. Its a grave mistake and can cost you your career. Do your best. Believe in yourself and let your hard work speak..!!
Good luck.!!
Duration: 55 minutes
Total Questions: 55

Round: Technical Interview
Experience: The technical round started at around 10-11 a.m. The interviewer was young and neutral at expression. It wasn't easy to judge how the interviewer was. He started with the default question which was "TELL ME ABOUT YOURSELF". I practised that question for about 1000 times and as expected i nailed it. Then he went through my resume. I had included C,JAVA and DBMS as my skill sets. So the questions were from that portions only. i some how managed to answer them all. But i answered wrong in many of them. Seeing the body language of the recruiter. i was sure that i failed to impress him and i'll get rejected. But at last he asked 2 trick questions and i answered it LIKE A BOSS.!! That was the turning point of my interview and he was impressed with that. My interview was over there and shortly after, i was told that i was selected for the HR round. I was too excited as i was selected for the HR round.
Tips: PRESENCE OF MIND IS THE KEY..!!! No matter how many wrong answers you give. One impressive right answer can get you your job. Recruiter is no machine or God. He is also a man. Be confident, speak well and to the point. If you don't know the answer, at least try once. Don't be overconfident and over smart. Be yourself. Practise Tell me about yourself thoroughly.

Round: HR Interview
Experience: This round is simple conversation round. The HR will ask you question to see what you are. Your behaviour, your body language, your temper, etc, There is no rocket science to crack this round. If you manage to qualify for this round, Consider 90% job done. Be frank, jolly, answer questions to the point. Try to mix up with him. and always KEEP A SMILE ON YOUR FACE. You will definitely qualify..!!
Tips: BE CONFIDENT & BE YOURSELF..!!

General Tips: Start practising for the aptitude round from 4-5 months before the actual test. Practise from various enlisted websites. It helps a lot..!! Believe me. Strengthen your basic concepts. Give only those subjects in your resume with whom you are confident with. Do add your extra curricular activities. It helps.
Skills: Proficiency In English, Basic Concepts Of Launguages, Basic Coding, Presence Of Mind, Confidence
College Name: st.thomas college of engineering and technology
Motivation: Infosys is a big company with a very good reputation in the market. loads and loads of people are orking in the company which itself says how the company is.
Funny Moments: There were many. I am a bit humorous. So it was easy for me to make the environment light. Though i didn't cracked any joke, but my body language made it so..!!! I was asked that how will i manage with the transport system of the new place where i will go to work. As i am from Kolkata (one of the most busiest public transport system is here), i said that "Sir i have managed with the public transport here in Kolkata, transport in other city is a piece of cake for me..!!", and we both laughed. :-P

Skills evaluated in this interview

Interview Preparation Tips

Round: Technical Interview
Experience: Lots of C questions and also questions from ur branch
Tips: Be confident..give smart answers

Round: Group Discussion
Experience: Your voice should be clear. u have to stand out from others
Tips: Be confident and rock

General Tips: Just be your best. Dont imitate anyone. Be yourself
Skill Tips: be well dressed and speak clearlly
Skills: smartness, communication
College Name: KIIT
Motivation: The welcoming attitude for core branch students
Contribute & help others!
anonymous
You can choose to be anonymous

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.

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

INTERVIEWS

Solugenix India Private Limited

No Interviews

INTERVIEWS

THE GUARDIANS Real Estate Advisory

No Interviews

INTERVIEWS

Solugenix India Private Limited

No Interviews

INTERVIEWS

Jindal Aluminium

No Interviews

INTERVIEWS

Kotak Mahindra Bank

No Interviews

Tell us how to improve this page.

Solugenix India Private Limited Associate Software Engineer Trainee Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
Apisero Interview Questions
4.3
 • 64 Interviews
View all
Software Engineer
73 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior System Analyst
62 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

System Analyst
54 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
47 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead System Analyst
46 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Solugenix India Private Limited with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent