Upload Button Icon Add office photos

Filter interviews by

Sgn Software Associate Consultant Interview Questions and Answers

Updated 27 Sep 2023

Sgn Software Associate Consultant Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Sep 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. All about the module
Round 2 - Assignment 

All configurations in interviewer PC

Round 3 - HR 

(1 Question)

  • Q1. Salary negotiations and at the time of join they again reduce the salary, as in offer letter they didn't mentioned Salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't every think for SGN to join,

Interview questions from similar companies

I applied via LinkedIn and was interviewed in Sep 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Nvl and nvl2 difference Some practical queries on SQL Performance tunning Trigger
  • Q2. Abstract class vs interface Internal working of hashmap Java 8 fearures
  • Ans. 

    Questions on abstract class vs interface, internal working of hashmap, and Java 8 features.

    • Abstract class is a class that cannot be instantiated and can have both abstract and non-abstract methods.

    • Interface is a collection of abstract methods and constants that can be implemented by a class.

    • HashMap is a data structure that stores key-value pairs and uses hashing to retrieve values.

    • Java 8 introduced features like lambda...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basics of java and SQL
Smile in the entire interview

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions related to NODEJS , PHP, Past projects, Resume
  • Q2. Why Mongodb over Sql
  • Ans. 

    MongoDB is preferred over SQL for its flexibility, scalability, and ease of use in handling unstructured data.

    • MongoDB is a NoSQL database, making it easier to work with unstructured data compared to SQL.

    • MongoDB is schema-less, allowing for more flexibility in data modeling and changes.

    • MongoDB is horizontally scalable, making it easier to handle large amounts of data and high traffic loads.

    • MongoDB's document-based data ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ResMed Associate Software Engineer interview:
  • Nodejs
  • MongoDB
  • PHP
  • SQL
Interview preparation tips for other job seekers - They asked related to resume only.

I didn't got selected because I couldn't justify what was written on my resume.

Skills evaluated in this interview

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

3 dsa questions were asked

Round 2 - HR 

(5 Questions)

  • Q1. Dsa questinsxare asked
  • Q2. Coding in live anlong project explanation
  • Ans. 

    Coding in live project involves writing and implementing code in a real-world software development project.

    • Understand the project requirements and scope before writing any code.

    • Collaborate with team members to ensure code integration and compatibility.

    • Test and debug code to ensure it meets project specifications.

    • Document code changes and updates for future reference.

    • Follow coding best practices and guidelines to mainta...

  • Answered by AI
  • Q3. Nothing is asked in my 3rd question
  • Q4. What does the following C++ code snippet do? int x = 5; while (x > 0) { cout << x << " "; x--; } Results in a compilation error Prints "54321" Prints "545454" Prints "12345"
  • Ans. 

    Prints numbers from 5 to 1 separated by a space

    • The code initializes x to 5, then enters a while loop that prints the value of x and decrements it until x is no longer greater than 0

    • The output will be '54321'

  • Answered by AI
  • Q5. What will be the value printed to the console? #include void function(int arr[], int size) { for (int 10; 1 size; 1++) { arr[1] = 2; } int main() { int arr[] {1, 2, 3, 4, 5); function(arr, 5);...
  • Ans. 

    The value printed to the console will be 246810.

    • The function modifies the array elements to be 2.

    • The main function calls the function to modify the array.

    • The loop in main function prints the modified array elements.

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

It is not a aptitude just like a game

Round 2 - One-on-one 

(1 Question)

  • Q1. Here Director will take
  • Ans. Asking out of box Questions,He also dont know the answers😂😂😂
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Guys, Dont go for interview for this company,Who is doing interview they dont know what to ask and mostly last round director will he is uneducated person mostly he will ask unwanted questions if we didn't answer he will be angry and suppose we ask answer he didn't reply because he doesn't know the answer simply staying in long years in company for time pass.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Tax related questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Personal questions
  • Q2. Tax related questions

I applied via Campus Placement and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Coding Test 

Its was fully coding test using METTL platform in that there is only 1 session we need to attend having 6 questions all are Coding only. We don't need to complete all we can complete any of the question the time given was 1hr 30min in this i try to complete atleast 3 questions

Round 2 - Technical 

(1 Question)

  • Q1. In Technical interview they ask about Any programming language u prefer they will ask on that but most of java and paython is mandatory and more questions on java itself and about your project and all
Round 3 - HR 

(1 Question)

  • Q1. In HR round self introduction and about project discussion and they ask what they want to know about u and u r way of thinking about job

Interview Preparation Tips

Interview preparation tips for other job seekers - Its an good offer for Freshers. They are offering 7LPA and intership too with 10k stpnied
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Sep 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a Prime number function using C
  • Ans. 

    A function in C to check if a number is prime or not

    • Create a function that takes an integer as input

    • Check if the input number is divisible by any number from 2 to its square root

    • If it is not divisible by any number, return true (prime), else return false (not prime)

  • Answered by AI
  • Q2. Write some basic codes for Manipulation in array
  • Ans. 

    Basic codes for array manipulation including sorting, searching, and filtering.

    • Use built-in functions like sort() for sorting arrays.

    • Implement algorithms like binary search for searching in arrays.

    • Utilize filter() method for filtering arrays based on specific criteria.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, Keep calm and make sure you mentally prepared.

Skills evaluated in this interview

I applied via Referral

Round 1 - Aptitude Test 

Easy to medium level Aptitude test of Math,Indian Accounts

Round 2 - One-on-one 

(1 Question)

  • Q1. Hr Basic interview, Tell me about youself,what do you do etc
Round 3 - Technical 

(1 Question)

  • Q1. Question asked regarding indian accounts and taxation

Interview Preparation Tips

Interview preparation tips for other job seekers - Okay for fresher jobs and want to pursue in US taxation

I applied via LinkedIn and was interviewed in Sep 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Nvl and nvl2 difference Some practical queries on SQL Performance tunning Trigger
  • Q2. Abstract class vs interface Internal working of hashmap Java 8 fearures
  • Ans. 

    Questions on abstract class vs interface, internal working of hashmap, and Java 8 features.

    • Abstract class is a class that cannot be instantiated and can have both abstract and non-abstract methods.

    • Interface is a collection of abstract methods and constants that can be implemented by a class.

    • HashMap is a data structure that stores key-value pairs and uses hashing to retrieve values.

    • Java 8 introduced features like lambda...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basics of java and SQL
Smile in the entire interview

Skills evaluated in this interview

Sgn Software Interview FAQs

How many rounds are there in Sgn Software Associate Consultant interview?
Sgn Software interview process usually has 4 rounds. The most common rounds in the Sgn Software interview process are Assignment, HR and Resume Shortlist.

Tell us how to improve this page.

People are getting interviews through

based on 1 Sgn Software interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Sgn Software Associate Consultant Salary
based on 6 salaries
₹1.8 L/yr - ₹4.8 L/yr
68% less than the average Associate Consultant Salary in India
View more details

Sgn Software Associate Consultant Reviews and Ratings

based on 3 reviews

3.4/5

Rating in categories

3.3

Skill development

2.5

Work-Life balance

2.5

Salary & Benefits

4.4

Job Security

2.6

Company culture

2.6

Promotions/Appraisal

2.5

Work Satisfaction

Explore 3 Reviews and Ratings
SAP MM Consultant
33 salaries
unlock blur

₹2.2 L/yr - ₹8.6 L/yr

SAP Abap Consultant
26 salaries
unlock blur

₹2.5 L/yr - ₹7.2 L/yr

SAP Fico Consultant
25 salaries
unlock blur

₹3.2 L/yr - ₹10.7 L/yr

SAP SD Consultant
23 salaries
unlock blur

₹2.2 L/yr - ₹7.2 L/yr

SAP PP QM Consultant
11 salaries
unlock blur

₹2.2 L/yr - ₹7.1 L/yr

Explore more salaries
Compare Sgn Software 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