Upload Button Icon Add office photos

Filter interviews by

Swaliya Softech ASP.NET Developer Interview Questions and Answers

Updated 28 Dec 2022

Swaliya Softech ASP.NET Developer Interview Experiences

1 interview found

I applied via Walk-in and was interviewed in Nov 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Related to asp.net , c# and questions depends on what kind of skill you have
  • Q2. Questions related to database
Round 3 - Assignment 

Given on form to connect with database and given database operations

Interview Preparation Tips

Interview preparation tips for other job seekers - Organization ask some basic questions so Keep practicing and look forward to yourself

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. ViewResult and ActionResult Difference, SOLID Principle
  • Q2. Difference between Enum and Constant
  • Ans. 

    Enum is a type that represents a set of named constants while constant is a fixed value that does not change.

    • Enum can have multiple named constants with unique values, while constant is a single fixed value.

    • Enums are used when a variable can only have a few possible values, while constants are used for values that do not change.

    • Enums can be used in switch statements, while constants cannot.

    • Example: enum Colors { Red, G

  • Answered by AI

Interview Preparation Tips

Topics to prepare for NeoSOFT ASP.NET Developer interview:
  • ASP.Net
  • SQL
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via LinkedIn and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. - Design patters - MVVM Questions - WPF Panel Questions
Round 2 - Technical 

(1 Question)

  • Q1. - Threading - Design patterns - C# questions
Round 3 - Technical 

(2 Questions)

  • Q1. Client Interview
  • Q2. -Project related questions - Use case and design a interface for that.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding test regarding the tools and technologies

Round 2 - Technical 

(2 Questions)

  • Q1. Asked about the connections
  • Q2. Questions on coding

Interview Preparation Tips

Interview preparation tips for other job seekers - It's some what Moderate question
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Coimbatore Institute of Technology, Coimbatore and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

There was Aptitude, Technical and Coding. Coding there were 4 sections for 4 languages (C, C++, java, Python) We had to do atleast 2. Technical MCQs were based on OS, CN, DSA, C, C++, Python (Numpy, Panda) and Java

Round 2 - Technical 

(1 Question)

  • Q1. Mainly asked OS, and since I'm from EEE dept, i wasnt well versed in CN, so no CN questions were asked to me. My primary coding language was Python, so some questions regarding the python was asked. I was ...

Interview Preparation Tips

Topics to prepare for Hewlett Packard Enterprise Software Developer interview:
  • Operating Systems
  • Computer Networking
  • Python
  • Object Oriented Programming
  • SQL
  • DSA
Interview preparation tips for other job seekers - Prepare OS, CN and basic interview question in your primary coding language. When preparing OS, try and implement that in code as and when you study.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in May 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Collection , logical

Round 2 - Technical 

(5 Questions)

  • Q1. Opps ,spring boot
  • Q2. Explain opps concept, what is spring boot
  • Ans. 

    OOPs concept is a programming paradigm based on the concept of objects, Spring Boot is a framework for building Java applications.

    • OOPs concept stands for Object-Oriented Programming, which focuses on creating objects that interact with each other to solve problems.

    • It involves concepts like inheritance, encapsulation, polymorphism, and abstraction.

    • Spring Boot is a framework that simplifies the development of Java applic...

  • Answered by AI
  • Q3. What is controller and rest controller
  • Ans. 

    Controller is a class that handles user requests and returns appropriate response. Rest controller is a specialized controller for RESTful web services.

    • Controller is a class in MVC architecture that handles user requests and interacts with the model and view.

    • Rest controller is a specialized controller in Spring framework for building RESTful web services.

    • Rest controller uses annotations like @RestController and @Reques...

  • Answered by AI
  • Q4. Internal working of hashmap
  • Ans. 

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

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to find the index in the array where it will be stored.

    • If multiple keys hash to the same index, a linked list is used to handle collisions.

    • HashMap allows null keys and values, but only one null ...

  • Answered by AI
  • Q5. Who is best jdbc or hibernate

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jan 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(4 Questions)

  • Q1. What is checked unchecked exceptions?
  • Ans. 

    Checked exceptions are exceptions that must be declared in a method's signature or handled using try-catch blocks.

    • Checked exceptions are checked at compile-time.

    • They are typically used for exceptional conditions that can be reasonably recovered from.

    • Examples of checked exceptions in Java include IOException, SQLException, and ClassNotFoundException.

  • Answered by AI
  • Q2. How to remove duplicated form from array list?
  • Ans. 

    To remove duplicates from an ArrayList of strings, use a HashSet to store unique elements.

    • Create a HashSet and add all elements from the ArrayList to it.

    • Create a new ArrayList and add all elements from the HashSet to it.

    • The new ArrayList will contain only unique elements.

  • Answered by AI
  • Q3. How hashset and hashmap work internally?
  • Ans. 

    HashSet and HashMap are both data structures in Java that use hashing to store and retrieve elements.

    • HashSet uses HashMap internally to store its elements as keys with a dummy value.

    • HashMap uses an array of linked lists called buckets to store key-value pairs.

    • Both HashSet and HashMap use the hashCode() method to calculate the hash value of keys.

    • HashSet uses the hash value to determine the bucket where an element should...

  • Answered by AI
  • Q4. Find sum of all odd numbers in a list using stream?
  • Ans. 

    Using Java stream, find the sum of all odd numbers in a list.

    • Use the filter() method to filter out the odd numbers from the list.

    • Use the mapToInt() method to convert the filtered numbers to integers.

    • Use the sum() method to calculate the sum of the filtered odd numbers.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for core java and java 8 questions and mysql

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic .net,oops,cloud experience any
Round 2 - Technical 

(1 Question)

  • Q1. Advanced level plus coding
Round 3 - HR 

(1 Question)

  • Q1. Basic hr Question,salary expectation

I applied via Recruitment Consulltant and was interviewed in Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Covered all java concepts
  • Q2. Basics of spring boot
Round 3 - Technical 

(1 Question)

  • Q1. Stream based questions, sql queries to find correct output
Round 4 - HR 

(1 Question)

  • Q1. Expected salary, basic hr questions, strength and weakness

Interview Preparation Tips

Interview preparation tips for other job seekers - Covers all core java concepts, microservices architecture. Advantages of spring boot over spring
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Test duration = 30 minutes, Topics = numbers, HCF, LCM, Time and distance, Ages, Average and reasoning

Round 3 - Coding Test 

Duration = 30 minutes, Topics = array, string, athematic operation, prime number etc.

Round 4 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself?
  • Q2. Are you team player?

Interview Preparation Tips

Interview preparation tips for other job seekers - Know yourself and what you want.
Pump yourself up and stay positive.

Swaliya Softech Interview FAQs

How many rounds are there in Swaliya Softech ASP.NET Developer interview?
Swaliya Softech interview process usually has 3 rounds. The most common rounds in the Swaliya Softech interview process are Resume Shortlist, Technical and Assignment.
What are the top questions asked in Swaliya Softech ASP.NET Developer interview?

Some of the top questions asked at the Swaliya Softech ASP.NET Developer interview -

  1. Related to asp.net , c# and questions depends on what kind of skill you h...read more
  2. Questions related to datab...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Swaliya Softech interview
WalkIn
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
Mphasis Interview Questions
3.4
 • 780 Interviews
Nagarro Interview Questions
4.0
 • 754 Interviews
View all
Android Developer
4 salaries
unlock blur

₹1 L/yr - ₹3.5 L/yr

Software Developer
3 salaries
unlock blur

₹2 L/yr - ₹3.6 L/yr

ASP.NET Developer
3 salaries
unlock blur

₹1.8 L/yr - ₹2 L/yr

DOT NET Developer
3 salaries
unlock blur

₹1 L/yr - ₹2.4 L/yr

Web Developer Intern
3 salaries
unlock blur

₹1.8 L/yr - ₹2.4 L/yr

Explore more salaries
Compare Swaliya Softech 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