Upload Button Icon Add office photos

Filter interviews by

SNS System Software Developer Interview Questions and Answers

Updated 7 Jan 2025

SNS System Software Developer Interview Experiences

1 interview found

Software Developer Interview Questions & Answers

user image Nila chinnamani Murugaiyan

posted on 7 Jan 2025

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

I applied via LinkedIn and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Types of module in python
  • Ans. 

    Modules in Python are files containing Python code. They can define functions, classes, and variables.

    • Modules can be imported using the 'import' keyword

    • Modules can be built-in (like math) or user-defined

    • Modules can be packages, which are directories containing a special file called __init__.py

    • Modules can be used to organize code and make it reusable

  • Answered by AI

Interview Preparation Tips

Topics to prepare for SNS System Software Developer interview:
  • Angular
  • Python

Interview questions from similar companies

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

I applied via Company Website and was interviewed in Dec 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

An aptitude test is an assessment to measure a candidate mental aptitude/mental ability

Round 2 - Technical 

(3 Questions)

  • Q1. Can you briefly Tell us about yourself?
  • Q2. What do you consider to be your strongest points?
  • Q3. Which programming languages do you use regularly in your work
Round 3 - Group Discussion 

A group discussion is a structured conversation in which participants share their ideas, perspectives, and solutions on a specific topic.

Round 4 - HR 

(2 Questions)

  • Q1. What motivates you to seek employment at Wipro?
  • Q2. What are your long-term career goals?
Round 5 - Assignment 

Assignment details refer to the specifics of an assignment, including any documents and/or emails or subsequent correspondence between the company and the client.

Interview Preparation Tips

Topics to prepare for Wipro Software Developer interview:
  • Your academic achievement
  • Responsibility related to your p
  • The way you address mistakes at
Interview preparation tips for other job seekers - Reflect on the activities you enjoy and what brings you happiness, while also taking into account your skills and strengths.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Asked About current Projects
  • Q2. Asked to code 2 problems
Round 2 - Technical 

(2 Questions)

  • Q1. Asked core java and microservices questions
  • Q2. Current project and my role
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It included all aptitude

Round 2 - Assignment 

Contains all pseudo questions related to DSA

Round 3 - Technical 

(6 Questions)

  • Q1. What is a class?
  • Ans. 

    A class is a blueprint for creating objects in object-oriented programming.

    • Defines the properties and behaviors of objects

    • Can be used to create multiple instances of objects

    • Encapsulates data and methods within a single unit

  • Answered by AI
  • Q2. What is an object?
  • Ans. 

    An object is a self-contained entity that consists of data and methods to manipulate that data.

    • Objects are instances of classes in object-oriented programming.

    • They have attributes (data) and methods (functions) to operate on the data.

    • Objects can interact with each other through method calls.

    • Example: In a car simulation program, a 'Car' object may have attributes like 'color' and 'speed', and methods like 'accelerate' a

  • Answered by AI
  • Q3. How the login page comes when clicks on some webpage icon like facebook?
  • Ans. 

    The login page is displayed when a user clicks on a webpage icon like Facebook by redirecting to a separate login page.

    • Clicking on the webpage icon triggers a redirect to the login page

    • The login page prompts the user to enter their credentials

    • After successful login, the user is redirected back to the original webpage

  • Answered by AI
  • Q4. DDL and DML commands
  • Q5. Polymorphism and method overriding?
  • Q6. Entire opps in java
  • Ans. 

    Object-oriented programming in Java involves creating classes, objects, inheritance, polymorphism, and encapsulation.

    • Classes are blueprints for objects, defining attributes and behaviors.

    • Objects are instances of classes, representing real-world entities.

    • Inheritance allows a class to inherit attributes and methods from another class.

    • Polymorphism enables objects to be treated as instances of their parent class.

    • Encapsulat...

  • Answered by AI

Skills evaluated in this interview

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

I applied via campus placement at Indraprastha Institute of Information Technology (IIIT), Delhi and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

First round was Aptitude which was quite easy

Round 2 - Technical 

(2 Questions)

  • Q1. Resume bases Question
  • Q2. Question on OOPS
Round 3 - Technical 

(1 Question)

  • Q1. Resume and scenario based question
Round 4 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a software developer with 5 years of experience in Java and Python.

    • Experienced in Java and Python programming languages

    • Worked on developing web applications using Spring framework

    • Familiar with Agile development methodologies

  • Answered by AI
  • Q2. What challenges do you faced during your project and how you approached them
  • Ans. 

    I faced challenges with integrating third-party APIs and resolved them by thoroughly researching documentation and seeking help from colleagues.

    • Integrating third-party APIs required understanding complex documentation

    • Encountered issues with data formatting and authentication

    • Collaborated with team members to troubleshoot and find solutions

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Admin part and mainly LWC development
  • Q2. Case study on devlopment part
Round 2 - One-on-one 

(1 Question)

  • Q1. Last project details and more technical skills and real-time cases
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Aptitude Test 

20 min for 1 round of interview

Round 2 - One-on-one 

(2 Questions)

  • Q1. Opps concepts with uses
  • Ans. 

    OOPs concepts are fundamental principles in object-oriented programming that help in organizing and managing code efficiently.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementati...

  • Answered by AI
  • Q2. Multithreading and how to use it
  • Ans. 

    Multithreading allows multiple threads to run concurrently, improving performance and responsiveness.

    • Multithreading is used to execute multiple tasks simultaneously within a single process.

    • It can improve performance by utilizing multiple CPU cores efficiently.

    • Common multithreading libraries include Java's Thread class and C#'s Task Parallel Library.

    • Example: In a web server, multithreading can handle multiple client req...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • 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 using HTML, CSS, and JavaScript

    • Familiar with Agile development methodologies

  • Answered by AI
  • Q2. Dtrength and weaknesses

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
4-6 weeks
Result
No response

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

Round 1 - Technical 

(3 Questions)

  • Q1. P2P process with golden rules
  • Q2. Internal order types
  • Q3. Withholding tax types

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview process and questions completely depends on the interviewer experience.
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Every single oops concepts
  • Q2. Every sql questions possiible
Round 2 - HR 

(2 Questions)

  • Q1. I attended only technical not yet results announced
  • Q2. I attended only technical not yet result announced
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jul 2024.

Round 1 - Aptitude Test 

It was easy, had average difficulty . Basic english and aptitude was asked

Round 2 - Technical 

(2 Questions)

  • Q1. Basics of computer fundamentals were asked in this round . OOPS , DBMS , SQL query etc. And 2 coding questions.
  • Q2. Another part was pychometric which is very very easy.
Round 3 - communication round 

(2 Questions)

  • Q1. Had to listen to audio and gave answer of the questions accordingly.
  • Q2. It test your ability of writing , speaking and listening .
Round 4 - Technical 

(2 Questions)

  • Q1. Techincal interview was focussed on project .
  • Q2. A little bit of easy DSA and basics of CS fundamentals.
Round 5 - HR 

(1 Question)

  • Q1. Project and interst

SNS System Interview FAQs

How many rounds are there in SNS System Software Developer interview?
SNS System interview process usually has 1 rounds. The most common rounds in the SNS System interview process are Technical.
How to prepare for SNS System Software Developer 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 SNS System. The most common topics and skills that interviewers at SNS System expect are CSS, HTML, Javascript, Java and Cloud Computing.

Tell us how to improve this page.

People are getting interviews through

based on 1 SNS System interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
SNS System Software Developer Salary
based on 15 salaries
₹1.8 L/yr - ₹6 L/yr
61% less than the average Software Developer Salary in India
View more details

SNS System Software Developer Reviews and Ratings

based on 2 reviews

4.7/5

Rating in categories

5.0

Skill development

4.7

Work-Life balance

4.5

Salary & Benefits

5.0

Job Security

4.5

Company culture

4.5

Promotions/Appraisal

4.5

Work Satisfaction

Explore 2 Reviews and Ratings
Software Developer
15 salaries
unlock blur

₹1.8 L/yr - ₹6.1 L/yr

Softwaretest Engineer
5 salaries
unlock blur

₹2 L/yr - ₹2.2 L/yr

Web Developer
4 salaries
unlock blur

₹1.8 L/yr - ₹3 L/yr

UI Developer
4 salaries
unlock blur

₹3.2 L/yr - ₹3.4 L/yr

Team Lead
4 salaries
unlock blur

₹6 L/yr - ₹12.5 L/yr

Explore more salaries
Compare SNS System with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

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