Upload Button Icon Add office photos

Filter interviews by

ASENTECH Senior Software Developer Interview Questions, Process, and Tips

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

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

One question related to string manipulation which is of medium level difficulty.

Round 2 - Technical 

(2 Questions)

  • Q1. Asked questions related to Java and Spring Boot.
  • Q2. They also asked questions related to previous projects.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Mvc arch & life cycle and basic oops & experianced based
  • Q2. All sql practical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - dont attend cts very bad experiance
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. React questions
  • Q2. JavaScript questions
Round 2 - Technical 

(2 Questions)

  • Q1. React questions
  • Q2. JavaScript questions
Round 3 - HR 

(2 Questions)

  • Q1. Company related questions
  • Q2. Questions based on previous experience
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Microservice Architecture
  • Q2. Rest api vs soap api
  • Ans. 

    REST API is lightweight, flexible, and widely used, while SOAP API is more rigid and heavy.

    • REST API uses standard HTTP methods like GET, POST, PUT, DELETE, while SOAP API uses XML for communication.

    • REST API is stateless and can be cached, making it faster, while SOAP API is stateful and requires more bandwidth.

    • REST API is easier to implement and understand, while SOAP API has more built-in security features.

    • Examples: R

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(6 Questions)

  • Q1. Http1.1 vs 2.0 vs 3.0
  • Ans. 

    HTTP/1.1 is the older version with persistent connections, HTTP/2.0 introduces multiplexing and server push, and HTTP/3.0 uses QUIC protocol for faster performance.

    • HTTP/1.1 uses persistent connections for each request/response, leading to potential performance issues.

    • HTTP/2.0 introduces multiplexing, allowing multiple requests/responses to be sent over a single connection simultaneously.

    • HTTP/2.0 also supports server pu...

  • Answered by AI
  • Q2. Print all the possible subsets from a given slice of integers
  • Ans. 

    Print all possible subsets from a given slice of integers

    • Use recursion to generate all possible subsets

    • For each element in the slice, include or exclude it in the subset

    • Keep track of the current subset being generated

  • Answered by AI
  • Q3. Questions on GRPC implementation
  • Q4. About code profiling
  • Q5. What is context package in golanguage
  • Ans. 

    Context package in Go language provides a way to pass around deadlines, cancellation signals, and other request-scoped values.

    • Context package is used to manage deadlines, cancellation signals, and request-scoped values in Go programs.

    • It allows passing data between function calls without having to pass them explicitly as arguments.

    • Context package is commonly used in web servers to manage request-specific data and timeou...

  • Answered by AI
  • Q6. RestApi vs GRPC
  • Ans. 

    REST API is a standard protocol for web services using HTTP, while gRPC is a high-performance, open-source RPC framework.

    • REST API uses HTTP for communication, making it easy to implement and widely supported.

    • gRPC is a modern, high-performance RPC framework that uses HTTP/2 for transport and Protocol Buffers for serialization.

    • gRPC is more efficient in terms of performance and supports features like bidirectional streami...

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. How to copy slice element and reflect the new changes done in original slice to new slice
  • Ans. 

    Use copy() function to create a new slice and reflect changes in original slice to the new slice.

    • Use the copy() function to create a new slice with the same length as the original slice.

    • Make changes to the original slice.

    • The changes made to the original slice will automatically reflect in the new slice as well.

  • Answered by AI
  • Q2. How do you handle panic in golang
  • Q3. Why golang is best compared to other languages
  • Ans. 

    GoLang is best for its simplicity, efficiency, concurrency support, and strong community backing.

    • Efficient performance due to compiled nature and garbage collection

    • Concurrency support with goroutines and channels

    • Strong standard library with built-in support for networking, encoding, and more

    • Simple and clean syntax that promotes readability and maintainability

    • Growing community and ecosystem with popular frameworks like

  • Answered by AI
  • Q4. Explain Kubertnetes Architecture
  • Ans. 

    Kubernetes is an open-source container orchestration platform for automating deployment, scaling, and management of containerized applications.

    • Kubernetes follows a master-slave architecture with a master node controlling multiple worker nodes.

    • Master node components include API server, scheduler, controller manager, and etcd.

    • Worker node components include kubelet, kube-proxy, and container runtime (e.g. Docker).

    • Kubernet...

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Project related questions, database basic questions, python basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover all basic concepts and coding
Interview experience
4
Good
Difficulty level
-
Process Duration
2-4 weeks
Result
No response

I applied via Job Portal and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Regarding SQL i Cleared my Test
  • Q2. What is CTE ? And Write a Sample Query ?
  • Ans. 

    CTE stands for Common Table Expressions, used to create temporary result sets within a SQL query.

    • CTE is defined using the WITH keyword in SQL.

    • It helps in simplifying complex queries by breaking them into smaller, more manageable parts.

    • CTEs can reference themselves recursively, making them useful for hierarchical data.

    • Example: WITH cte AS (SELECT * FROM table_name) SELECT * FROM cte;

  • Answered by AI
  • Q3. Print Numbers between 1 to 20 , even/odd numbers
  • Ans. 

    Print even and odd numbers between 1 to 20.

    • Iterate from 1 to 20 and check if the number is even or odd.

    • Use a conditional statement to determine if the number is even or odd.

    • Print the number along with its type (even or odd).

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Max of the Questions which interviewer was asked i answered well

Interview Preparation Tips

Topics to prepare for GlobalLogic Senior Software Developer interview:
  • SQL Server
  • Performance Tuning

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between map and flat map
  • Ans. 

    Map transforms each element of a collection, while flatMap transforms each element into a new collection and flattens the result.

    • Map applies a function to each element of a collection and returns a new collection with the results

    • FlatMap applies a function that returns a collection to each element of a collection, then flattens the result into a single collection

    • Example: map([1, 2, 3], x => [x, x+1]) returns [[1, 2], [2...

  • Answered by AI
  • Q2. What is the difference between comparable and comparator
  • Ans. 

    Comparable is an interface used for comparing objects, while Comparator is a separate class used for custom sorting.

    • Comparable is implemented by the class whose objects need to be compared, while Comparator is a separate class used for custom sorting.

    • Comparable has a single method, compareTo(), which is used to compare objects, while Comparator has a method, compare(), for custom sorting logic.

    • Comparable is used for na...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. Java and spring boot questions
  • Q2. Sort the array in ascending order
  • Ans. 

    Sorts an array of strings in ascending order.

    • Use a sorting algorithm like bubble sort, insertion sort, or quicksort.

    • Compare adjacent elements and swap them if they are in the wrong order.

    • Repeat the process until the array is sorted.

  • Answered by AI
  • Q3. Java collections questions
  • Q4. Project agile , cicdpipeline
Round 2 - Technical 

(1 Question)

  • Q1. Brush up java and spring and sorting questions

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.

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
Business Analyst
21 salaries
unlock blur

₹3.2 L/yr - ₹11 L/yr

Software Engineer
20 salaries
unlock blur

₹3.4 L/yr - ₹10 L/yr

Senior Software Engineer
20 salaries
unlock blur

₹6.2 L/yr - ₹14.4 L/yr

Quality Analyst
18 salaries
unlock blur

₹3.2 L/yr - ₹9 L/yr

Technical Lead
14 salaries
unlock blur

₹9.9 L/yr - ₹19.3 L/yr

Explore more salaries
Compare ASENTECH with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview