Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Supremology Software Services Team. If you also belong to the team, you can get access from here

Supremology Software Services Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Supremology Software Services Software Engineer Interview Questions and Answers

Updated 7 Feb 2022

Supremology Software Services Software Engineer Interview Experiences

1 interview found

Software Engineer Interview Questions & Answers

user image Dhanasekhar Reddybabu Thammathu

posted on 7 Feb 2022

Round 1 - Technical 

(3 Questions)

  • Q1. Explain about memory management
  • Ans. 

    Memory management is the process of allocating and deallocating memory in a computer system.

    • Memory management is important for efficient use of memory resources.

    • It involves allocating memory to processes and deallocating memory when it is no longer needed.

    • Memory leaks can occur if memory is not properly managed.

    • Examples of memory management techniques include garbage collection and virtual memory.

    • Memory management is a...

  • Answered by AI
  • Q2. Explain a Storage classes
  • Ans. 

    Storage classes in software engineering determine the lifetime and visibility of variables.

    • Storage classes include auto, register, static, and extern.

    • Auto variables have local scope and are automatically initialized.

    • Register variables are stored in CPU registers for faster access.

    • Static variables retain their value between function calls.

    • Extern variables are declared in one file and can be accessed in other files.

  • Answered by AI
  • Q3. What is Array of pointer
  • Ans. 

    An array of pointers is a data structure that stores memory addresses of other variables or objects.

    • Array of pointers can be used to create dynamic data structures like linked lists or trees.

    • It allows efficient access and manipulation of data by storing references instead of actual data.

    • Example: char* names[] = {"John", "Jane", "Mike"};

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and attend with self confidence.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Supremology Software Services?
Ask anonymously on communities.

Interview questions from similar companies

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

Interview Questionnaire 

2 Questions

  • Q1. Which technology are you using, is this latest?
  • Ans. 

    We are using a variety of technologies, including some of the latest ones.

    • We are using React for our front-end development.

    • We are also using Node.js for our back-end development.

    • We are using Docker for containerization.

    • We are using Kubernetes for orchestration.

    • We are using AWS for cloud hosting.

    • We are constantly evaluating new technologies to see if they can improve our development process.

  • Answered by AI
  • Q2. If not then which technology can we use instead of this?
  • Ans. 

    It depends on the specific requirements and constraints of the project.

    • Consider the project's goals and objectives

    • Evaluate the available technologies and their capabilities

    • Assess the project's budget and timeline

    • Consult with stakeholders and experts in the field

    • Examples: React vs Angular, MySQL vs MongoDB, Java vs Python

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi,
Listen carefully and speak fluently.

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more

I applied via Company Website and was interviewed before Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Regarding OOPS, wordpress and laravel.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good and I am still working here.

I applied via Campus Placement

Round 1 - Aptitude Test 

In this round you have to clear Aptitude and Basic Coding

Round 2 - Coding Test 

It is pure coding test which is conduct on hacker rank platform. You have to complete 4 question(1 easy + 2 medium + 1 hard)

Round 3 - Technical 

(2 Questions)

  • Q1. Coding question base on Sorting and Array
  • Q2. Some of theory question base on your Project technology and DSA
Round 4 - HR 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Improve your basic concepts and coding skills.

Interview Questionnaire 

1 Question

  • Q1. Questions regards node js and java script concept, event loop, why node is single threaded, how event loop works in node js, database queries and previous work experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview experience was absolutely amazing and fantastic.
Advice:
Answer question with confidence.
Feel comfortable with interviewer.

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

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Questions on dsa, 2 medium and 1 easy level.
  • Q2. Questions related to the projects.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Coding Test 

Concentrate on identifying patterns and understanding time complexity.

Round 2 - Coding Test 

Concentrate on identifying patterns and understanding time complexity.

Round 3 - Coding Test 

Concentrate on addressing problems through various approaches and consider their time complexity.

Round 4 - HR 

(1 Question)

  • Q1. Regular HR questions
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. String related questions
  • Q2. ARRAY related questions

I appeared for an interview before Apr 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical interview round with questions on DSA and DBMS mainly.

  • Q1. 

    Maximum Sum Subarray Problem Statement

    Given an array ARR consisting of N integers, determine the sum of the subarray with the maximum sum, including the possibility of an empty subarray.

    A subarray is a...

  • Ans. 

    Find the sum of the subarray with the maximum sum in a given array.

    • Iterate through the array and keep track of the current sum and maximum sum.

    • Update the maximum sum if the current sum becomes greater.

    • Handle cases where the array has all negative numbers or empty subarray.

    • Example: For input [-2, 1, -3, 4, -1], the maximum sum subarray is [4] with sum 4.

  • Answered by AI
  • Q2. 

    Prime Numbers Identification

    Given a positive integer N, your task is to identify all prime numbers less than or equal to N.

    Explanation:

    A prime number is a natural number greater than 1 that has no po...

  • Ans. 

    Identify all prime numbers less than or equal to a given positive integer N.

    • Iterate from 2 to N and check if each number is prime

    • Use the Sieve of Eratosthenes algorithm for efficient prime number identification

    • Optimize by only checking numbers up to square root of N for divisibility

  • Answered by AI
  • Q3. What are Joins in the context of databases?
  • Ans. 

    Joins in databases are used to combine rows from two or more tables based on a related column between them.

    • Joins are used to retrieve data from multiple tables based on a related column.

    • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN returns rows when there is at least one match in both tables.

    • LEFT JOIN returns all rows from the left table and the matched rows from the right ta...

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical HR round with behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPABigStep Technologies interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, DBMS, SQL, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed before May 2021. There were 5 interview rounds.

Round 1 - Coding Test 

Hackerrank Test

Round 2 - Technical 

(1 Question)

  • Q1. Questions related to NodeJS and Javascript Basics
Round 3 - Technical 

(1 Question)

  • Q1. Technical questions based on past experience
Round 4 - HR 

(1 Question)

  • Q1. Company Culture related
Round 5 - Behavioral 

(1 Question)

  • Q1. Expectations and Processes

Interview Preparation Tips

Interview preparation tips for other job seekers - Read the basics. Medium level interview questions. All the best.

Supremology Software Services Interview FAQs

How many rounds are there in Supremology Software Services Software Engineer interview?
Supremology Software Services interview process usually has 1 rounds. The most common rounds in the Supremology Software Services interview process are Technical.
How to prepare for Supremology Software Services Software Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Supremology Software Services. The most common topics and skills that interviewers at Supremology Software Services expect are Canoe, Communication, Embedded C, Software Engineering and UART.
What are the top questions asked in Supremology Software Services Software Engineer interview?

Some of the top questions asked at the Supremology Software Services Software Engineer interview -

  1. What is Array of poin...read more
  2. Explain about memory managem...read more
  3. Explain a Storage clas...read more

Tell us how to improve this page.

Supremology Software Services Software Engineer Salary
based on 27 salaries
₹3 L/yr - ₹7.2 L/yr
56% less than the average Software Engineer Salary in India
View more details

Supremology Software Services Software Engineer Reviews and Ratings

based on 41 reviews

3.4/5

Rating in categories

3.6

Skill development

3.4

Work-life balance

3.4

Salary

3.4

Job security

3.4

Company culture

3.4

Promotions

3.4

Work satisfaction

Explore 41 Reviews and Ratings
Software Engineer
27 salaries
unlock blur

₹3 L/yr - ₹7.2 L/yr

Autosar Developer
13 salaries
unlock blur

₹3.6 L/yr - ₹7.3 L/yr

Software Developer
12 salaries
unlock blur

₹3.5 L/yr - ₹6.3 L/yr

Senior Software Engineer
8 salaries
unlock blur

₹4.5 L/yr - ₹8.1 L/yr

Embedded Software Developer
6 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Explore more salaries
Compare Supremology Software Services with

Northcorp Software

4.5
Compare

Zidio Development

4.5
Compare

Accel Frontline

3.9
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.7
Compare
write
Share an Interview