Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Aurigo Team. If you also belong to the team, you can get access from here

Aurigo Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Aurigo DOT NET Developer Interview Questions and Answers

Updated 5 Aug 2024

Aurigo DOT NET Developer Interview Experiences

2 interviews found

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

(1 Question)

  • Q1. OOPS concepts, ArrayList, LINQ, collections, HTML basics, .NET MVC
Round 2 - HR 

(1 Question)

  • Q1. Basic HR questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Oct 2023. There were 4 interview rounds.

Round 1 - Coding Test 

It involved
2 coding questions
Some pseudo code output prediction

Round 2 - Technical 

(3 Questions)

  • Q1. Finding minimum element in sorted and rotated array. (Binary search)
  • Ans. 

    Binary search to find minimum element in sorted and rotated array.

    • Perform binary search to find the pivot element where the array is rotated.

    • Compare the pivot element with the first element to determine which half to search in.

    • Continue binary search in the appropriate half to find the minimum element.

  • Answered by AI
  • Q2. Tricky oops questions and SQL queries.
  • Q3. Minimum jumps to reach end of an array.
  • Ans. 

    Minimum jumps to reach end of an array can be calculated using dynamic programming approach.

    • Use dynamic programming to keep track of minimum jumps needed to reach each index.

    • Iterate through the array and update the minimum jumps for each index based on previous jumps.

    • Return the minimum jumps needed to reach the end of the array.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Tricky SQL queries.
  • Q2. Basic oops, DSA, Projects related questions.
Round 4 - HR 

(1 Question)

  • Q1. How can you survive in corporate world?

Skills evaluated in this interview

DOT NET Developer Interview Questions Asked at Other Companies

asked in Infosys
Q1. What is the difference between windows application development an ... read more
Q2. What is Trigger,Store procedure, join in sql query and their synt ... read more
asked in Infosys
Q3. What kind of database you used in projects
Q4. How many ways are there to send data to controller from View?
asked in Nagarro
Q5. Can Two Primary keys can be made possible in Sql Table ?

Interview questions from similar companies

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

I applied via Referral and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions related to my project ,OOPS,then questions related to every skills in my resume (C# ,SQL , entity framework core)
Round 2 - Technical 

(1 Question)

  • Q1. Linq query , SQL questions,challenge faced in project
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Authentication,Authorization,Dependency Injection,
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Almost asked the basics of .net, c#, ADO. NET, SQL
  • Q2. Difference between ref and out keywords?
  • Ans. 

    The ref and out keywords are used in C# to pass arguments by reference instead of by value.

    • The ref keyword is used to pass a variable by reference, allowing the called method to modify the value of the variable.

    • The out keyword is similar to ref, but it is used when the called method needs to assign a value to the variable being passed.

    • The ref keyword requires the variable to be initialized before passing it to the meth...

  • Answered by AI
  • Q3. Overloading and overriding concept and explanation ?
  • Ans. 

    Overloading is having multiple methods with the same name but different parameters. Overriding is implementing a method in a derived class with the same name and signature as in the base class.

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

    • Overriding allows a derived class to provide a different implementation of a method that is already defined in the base class.

    • Overloa...

  • Answered by AI
  • Q4. SQL join queries with one example ?
  • Ans. 

    SQL join queries are used to combine rows from two or more tables based on a related column between them.

    • Join queries are used to retrieve data from multiple tables in a single query.

    • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • Join conditions are specified using the ON keyword, which defines the column(s) to join on.

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = ta

  • Answered by AI
  • Q5. ADO .NET database calling steps ?
  • Ans. 

    ADO .NET database calling steps involve establishing a connection, creating a command object, executing the command, and handling the results.

    • Establish a connection to the database using a connection string

    • Create a command object to specify the SQL query or stored procedure to be executed

    • Execute the command to retrieve or modify data in the database

    • Handle the results by reading data from a DataReader or updating data u

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Coding Test 

Reverse a string without using liberary function

I appeared for an interview before Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

The second round is also written but you need to write programming based on their concept.

  • Q1. 

    Prime Numbers Identification

    Given a positive integer N, your task is to identify all prime numbers less than or equal to N.

    Explanation:

    A prime number is a natural number greater than 1 that has no po...

  • Ans. 

    Identify all prime numbers less than or equal to a given positive integer N.

    • Iterate from 2 to N and check if each number is prime

    • Use the Sieve of Eratosthenes algorithm for better efficiency

    • Optimize by only checking up to the square root of N for divisors

  • Answered by AI
  • Q2. 

    Palindrome String Validation

    Determine if a given string 'S' is a palindrome, considering only alphanumeric characters and ignoring spaces and symbols.

    Note:
    The string 'S' should be evaluated in a case...
  • Ans. 

    Check if a given string is a palindrome after removing special characters, spaces, and converting to lowercase.

    • Remove special characters and spaces from the string

    • Convert the string to lowercase

    • Check if the modified string is a palindrome by comparing characters from start and end

  • Answered by AI
Round 2 - Face to Face 

(6 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical round with questions mainly on Java and OOPS concepts.

  • Q1. What is the difference between static methods and instance methods in Java?
  • Ans. 

    Static methods belong to the class itself, while instance methods belong to individual objects of the class.

    • Static methods are called using the class name, while instance methods are called using object references.

    • Static methods cannot access instance variables directly, while instance methods can access both static and instance variables.

    • Static methods are shared among all instances of the class, while instance method...

  • Answered by AI
  • Q2. What is the difference between an abstract class and an interface in Java?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, member variables, and methods with implementation.

    • Interface can only have abstract methods and constants.

    • A class can implement multiple interfaces but can only extend one abstract class.

    • Example: Abstract class - Animal with abstract method 'eat', Interface - Flyable with m

  • Answered by AI
  • Q3. What is the difference between ClassNotFoundException and NoClassDefFoundError in Java?
  • Ans. 

    ClassNotFoundException occurs when a class is not found during runtime, while NoClassDefFoundError occurs when a class was found during compilation but not during runtime.

    • ClassNotFoundException is a checked exception, while NoClassDefFoundError is an Error.

    • ClassNotFoundException occurs when a class is not found at runtime, usually due to a missing classpath or incorrect class name.

    • NoClassDefFoundError occurs when a cla...

  • Answered by AI
  • Q4. What is the difference between an Error and an Exception in Java?
  • Ans. 

    Error is a serious issue that cannot be handled at runtime, while Exception is a recoverable issue that can be caught and handled.

    • Error is a subclass of Throwable and is usually caused by the environment or system, such as running out of memory or stack overflow.

    • Exception is also a subclass of Throwable but is caused by the application code, such as invalid input or file not found.

    • Errors are unchecked and are not meant...

  • Answered by AI
  • Q5. What is SerialVersionUID in Java?
  • Ans. 

    SerialVersionUID is a unique identifier used by Java to ensure the compatibility of serialized objects.

    • SerialVersionUID is a static final long variable in a class that implements Serializable interface.

    • It is used to ensure that the serialized object can be deserialized correctly even if the class definition has changed.

    • If the SerialVersionUID of the serialized object does not match the one in the class, an InvalidClass...

  • Answered by AI
  • Q6. What are the requirements for creating an immutable class in Java?
  • Ans. 

    Requirements for creating an immutable class in Java

    • Make the class final so it cannot be extended

    • Make all fields private and final

    • Do not provide setter methods, only getter methods

    • Ensure that mutable objects are not returned in getter methods

    • Override equals() and hashCode() methods for proper comparison

    • Consider making defensive copies of mutable fields in constructor or getter methods

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAYodlee interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Company Website and was interviewed before May 2018. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Questions about Oops, data structures based on the projects I had done, and my resume
  • Q2. Questions about classes and abstraction

Interview Preparation Tips

Interview preparation tips for other job seekers - 2 parts; part 1 is a coding test and part 2 is discussion.

I applied via Naukri.com and was interviewed before Jul 2019. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Questions about the projects you worked with. About how specific coding challenges were solved. How it could have been done other ways. etc.
  • Q2. About Python versions and differences. Impact on frameworks.
  • Q3. About module design, apis.

Interview Preparation Tips

Interview preparation tips for other job seekers - It is a relaxed interview, like a discussion. The questions are tough in that they make you think. Review your previous projects and be honest.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Oops? .net core features

Aurigo Interview FAQs

How many rounds are there in Aurigo DOT NET Developer interview?
Aurigo interview process usually has 3-4 rounds. The most common rounds in the Aurigo interview process are Technical, HR and Resume Shortlist.
What are the top questions asked in Aurigo DOT NET Developer interview?

Some of the top questions asked at the Aurigo DOT NET Developer interview -

  1. Finding minimum element in sorted and rotated array. (Binary sear...read more
  2. Minimum jumps to reach end of an arr...read more
  3. Basic oops, DSA, Projects related questio...read more

Tell us how to improve this page.

Aurigo DOT NET Developer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

ZIGRAM Interview Questions
3.2
 • 26 Interviews
RGBSI Interview Questions
3.4
 • 24 Interviews
Fingent Interview Questions
4.4
 • 22 Interviews
ThoughtSpot Interview Questions
3.8
 • 18 Interviews
Fourkites Interview Questions
3.8
 • 17 Interviews
Yodlee Interview Questions
3.8
 • 17 Interviews
Bottomline Interview Questions
3.3
 • 17 Interviews
ValGenesis Interview Questions
3.2
 • 17 Interviews
CleverTap Interview Questions
3.5
 • 16 Interviews
View all
Aurigo DOT NET Developer Salary
based on 6 salaries
₹8 L/yr - ₹10 L/yr
63% more than the average DOT NET Developer Salary in India
View more details
Senior Software Engineer
64 salaries
unlock blur

₹9.5 L/yr - ₹28.6 L/yr

Software Engineer2
35 salaries
unlock blur

₹8.5 L/yr - ₹22 L/yr

Software Engineer
29 salaries
unlock blur

₹5 L/yr - ₹14.5 L/yr

Lead Engineer
29 salaries
unlock blur

₹17 L/yr - ₹31 L/yr

Business Analyst
19 salaries
unlock blur

₹12.5 L/yr - ₹23 L/yr

Explore more salaries
Compare Aurigo with

Prime Focus Technologies

3.3
Compare

Yodlee

3.8
Compare

Algonomy

4.0
Compare

Fingent

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