Upload Button Icon Add office photos

ASENTECH

Compare button icon Compare button icon Compare

Filter interviews by

ASENTECH Senior Software Developer Interview Questions and Answers

Updated 2 May 2024

ASENTECH Senior Software Developer Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via LinkedIn and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Normal question about c#,SQL,Juqery,Javascript,OOPS,Design pattern,Data injection,SQL profiler
  • Q2. What is SQL ?
  • Ans. 

    SQL is a domain-specific language used for managing and manipulating relational databases.

    • SQL stands for Structured Query Language.

    • It is used to communicate with databases to perform tasks such as querying data, updating data, and creating tables.

    • Common SQL commands include SELECT, INSERT, UPDATE, DELETE, and JOIN.

    • Example: SELECT * FROM customers WHERE city = 'New York';

  • Answered by AI
  • Q3. What isover loading and overriding method ?
  • Ans. 

    Overloading is when multiple methods have the same name but different parameters. Overriding is when a subclass provides a specific implementation of a method that is already provided by its superclass.

    • Overloading allows a class to have multiple methods with the same name but different parameters.

    • Overriding occurs when a subclass provides a specific implementation of a method that is already provided by its superclass.

    • ...

  • Answered by AI
  • Q4. What is virtual method ?
  • Ans. 

    A virtual method is a method in a base class that can be overridden in a derived class.

    • Virtual methods allow for polymorphism in object-oriented programming.

    • They are declared using the 'virtual' keyword in the base class and can be overridden using the 'override' keyword in the derived class.

    • Virtual methods enable dynamic binding, where the method to be called is determined at runtime based on the actual type of the ob...

  • Answered by AI
  • Q5. What static class in c# ?
  • Ans. 

    A static class in C# is a class that cannot be instantiated and is used to group related methods and properties.

    • Static classes are declared using the 'static' keyword.

    • Static classes cannot be instantiated or inherited.

    • Static classes are commonly used for utility classes that contain helper methods.

    • Example: 'Math' class in C# is a static class that contains mathematical functions like 'Math.Max()' and 'Math.Min()'.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Ask deep knowledge about c# and mvc

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about ASENTECH?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Company Website and was interviewed before Feb 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. .Net support related questions for example 1. What to do when applicable is down. 2. how to check IIS error logs.
  • Q2. Explain Projects you worked and your role in those.
  • Q3. Explain scenario when you handled high pressure from client.
  • Ans. 

    Handled high pressure from client by prioritizing tasks and communicating effectively.

    • Identified critical issues and addressed them first

    • Communicated regularly with the client to provide updates and manage expectations

    • Collaborated with team members to delegate tasks and ensure timely delivery

    • Maintained a calm and professional demeanor to avoid escalating the situation

  • Answered by AI
  • Q4. Explain release management.
  • Ans. 

    Release management is the process of planning, scheduling, coordinating, and deploying software releases.

    • It involves identifying the scope of the release and the features to be included

    • Creating a release plan and schedule

    • Coordinating with different teams involved in the release process

    • Testing the release to ensure it meets quality standards

    • Deploying the release to production

    • Monitoring the release to ensure it is stable...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For .Net support related projects, you need to be aware about first identifying the problem and then you need to think best optimised solution for that. You need to know how to check error logs, should be well versed with basic SQL queries and debugging.

Skills evaluated in this interview

Senior Software Developer Interview Questions Asked at Other Companies

asked in Freshworks
Q1. Intersection of Linked List Problem You are provided with two sin ... read more
asked in Freshworks
Q2. Overlapping Intervals Problem Statement You are given the start a ... read more
asked in Freshworks
Q3. Middle of Linked List Problem Statement Given the head node of a ... read more
asked in SAP
Q4. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Freshworks
Q5. Cube Sum Pairs Problem Statement Given a positive integer N, find ... read more

I appeared for an interview before Jun 2021.

Round 1 - Coding Test 

Had DSA and aptitude questions

Round 2 - Technical 

(1 Question)

  • Q1. DSA a questions, Database Questions
Round 3 - HR 

(1 Question)

  • Q1. 5 min question and answers about company

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA and database management

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java 8, J2EE, Spring, SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - There were four rounds. Technical written, two technical f2f rounds, coding test.

All the best

I applied via Campus Placement and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Data srructures

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident revise data structures ,

I appeared for an interview in Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 2 hours
Round difficulty - Medium

In the 1st round 
Aptitude
Reasoning
English
Automata fix( code debug) 
Timing in morning
Environment is good
Interviewer was very cool and interactive

  • Q1. 

    Encode the Message Problem Statement

    Given a text message, your task is to return the Run-length Encoding of the given message.

    Run-length encoding is a fast and simple method of encoding strings, repres...

  • Ans. 

    Implement a function to encode a text message using run-length encoding.

    • Iterate through the message and count consecutive characters

    • Append the character and its count to the encoded message

    • Handle edge cases like single characters or empty message

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

This is interview round 
Ques from basic electronics
C language

  • Q1. 

    Print Name and Age Problem Statement

    Create a class named Person with a string variable 'name' and an integer variable 'age', such that these variables are not accessible outside the class. Implement a me...

  • Ans. 

    Create a class Person with private variables name and age, and methods to set and get their values.

    • Create a class Person with private variables 'name' and 'age'.

    • Implement a method setValue to set the variables' values.

    • Implement a method getValue to print the variables' values.

    • Ensure the name is a non-empty string and the age is a non-negative integer.

    • Encapsulate the data and provide a clear interface for setting and ge...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 6 cgpaCognizant interview preparation:Topics to prepare for the interview - Electronics basics, C language , Data structure, OOPS, ProjectsTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do aptitude from indiabix. Go through your basics. At least one language u know. Learn about your branch basics. Know concept of data structure and oops. 
Tip 2 : prepare your final project well. 

Application resume tips for other job seekers

Tip 1 : the skills you know very well mention in resume
Tip 2 : mention project in resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Round 1 - Aptitude Test 

HTML

Round 2 - Aptitude Test 

Aptitude and resume shortlist and HTML

Round 3 - 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

Interview Preparation Tips

Interview preparation tips for other job seekers - No tips
Are these interview questions helpful?

I applied via Campus Placement and was interviewed in Sep 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Java, python
  • Q2. Basics of java

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience with just basic knowledge is enough to get through

I applied via Naukri.com and was interviewed before May 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Java Collection, OOPS, Seralization
Round 2 - Technical 

(1 Question)

  • Q1. Java OOPS, Collection, threading, SQL
Round 3 - HR 

(1 Question)

  • Q1. Nothing specific, Salary Negotiations.

Interview Preparation Tips

Interview preparation tips for other job seekers - overall good experience and process was quick

Interview Questionnaire 

2 Questions

  • Q1. Difference between++I and I++
  • Ans. 

    ++I is a pre-increment operator that increments the value of I before using it, while I++ is a post-increment operator that increments the value of I after using it.

    • ++I increments the value of I and then uses the updated value in the expression.

    • I++ uses the current value of I in the expression and then increments it.

    • Both operators can be used with variables, arrays, or pointers.

  • Answered by AI
  • Q2. Local static variable

Skills evaluated in this interview

ASENTECH Interview FAQs

How many rounds are there in ASENTECH Senior Software Developer interview?
ASENTECH interview process usually has 1 rounds. The most common rounds in the ASENTECH interview process are Technical.
What are the top questions asked in ASENTECH Senior Software Developer interview?

Some of the top questions asked at the ASENTECH Senior Software Developer interview -

  1. What isover loading and overriding metho...read more
  2. What static class in c...read more
  3. What is virtual metho...read more

Tell us how to improve this page.

Overall Interview Experience Rating

2/5

based on 1 interview experience

Difficulty level

Moderate 100%
View more
ASENTECH Senior Software Developer Salary
based on 4 salaries
₹13 L/yr - ₹15.5 L/yr
At par with the average Senior Software Developer Salary in India
View more details
Quality Analyst
20 salaries
unlock blur

₹3.2 L/yr - ₹9.1 L/yr

Business Analyst
19 salaries
unlock blur

₹3.2 L/yr - ₹12.2 L/yr

Senior Software Engineer
19 salaries
unlock blur

₹6.2 L/yr - ₹14.4 L/yr

Software Engineer
13 salaries
unlock blur

₹4 L/yr - ₹10.5 L/yr

Technical Lead
12 salaries
unlock blur

₹9.9 L/yr - ₹19.3 L/yr

Explore more salaries
Compare ASENTECH with

Cognizant

3.7
Compare

EXL Service

3.7
Compare

Sutherland Global Services

3.5
Compare

Optum Global Solutions

4.0
Compare
write
Share an Interview