Upload Button Icon Add office photos
Engaged Employer

i

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

DataTracks Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

DataTracks DOT NET Developer Interview Questions and Answers

Updated 7 Mar 2023

DataTracks DOT NET Developer Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed in Sep 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 - Telephonic Call 

(3 Questions)

  • Q1. This Is first Round, In this round they asked me Questions on my experience and Project information then asked questions 1. Explain MVC architecture 2. Registration Form Flow step by step 3. session mana...
  • Q2. Registration form Flow example of MVC
  • Ans. 

    Registration form flow in MVC involves creating a view for the form, handling user input in the controller, and storing data in the model.

    • Create a view for the registration form using HTML and Razor syntax

    • Handle user input in the controller using HttpPost attribute and model binding

    • Validate user input using data annotations and ModelState

    • Store data in the model using Entity Framework or other data access technology

  • Answered by AI
  • Q3. Session management Techniciques
Round 3 - Technical 

(2 Questions)

  • Q1. This is a Virtual interview via Zoom call. Interviewer completely focused On c# programming Skills and SQL queries. 1. Given a string of countries seperated by coma Write program to convert that string int...
  • Q2. HR is the worst she don't even have 2 years Experience and she is showing Attitude to a Developer who has more experience than her. If your Expected CTC is High and if by chance they got a candidate lower...

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Basics Well and C# for Programming round practice Basic Programs well

Skills evaluated in this interview

Interview questions from similar companies

I applied via Company Website and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Messaging communication (RabbitMQ, ActiveMQ)
  • Q2. Spring boot
  • Q3. Core Java (Oops, JVM, Memory types, Collections)
  • Q4. Spring security, Hibernate cache
  • Q5. Scenario based questions
  • Q6. Design patterns,SAGA Pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - Scenario based questions on real time examples like ticket reservation, data processing. SAGA pattern

I applied via LinkedIn and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. String manipulation code

Interview Preparation Tips

Interview preparation tips for other job seekers - Be careful to answer to the point

Senior Engineer Interview Questions & Answers

Axis Mutual Fund user image Shruti Mahavarthayajula

posted on 6 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Referral

Round 1 - One-on-one 

(2 Questions)

  • Q1. General market direction
  • Q2. Mutual fund industry size
  • Ans. 

    The mutual fund industry size refers to the total value of assets under management by mutual funds.

    • The size of the mutual fund industry can be measured by the total assets under management (AUM) of all mutual funds.

    • It includes both equity and debt mutual funds, as well as other types like money market funds.

    • The industry size can vary greatly depending on market conditions and investor sentiment.

    • As of 2021, the global m...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Salary negotiation
  • Q2. Location negotiations
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain OOPS Concept ?
  • Ans. 

    OOPS (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on creating objects that interact with each other to solve problems.

    • It involves concepts like classes, objects, inheritance, polymorphism, and encapsulation.

    • For example, a class 'Car' can have objects like 'Toyota', 'Honda', etc., each with their own properties and methods.

    • Inheritan...

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

I applied via Campus Placement and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a skilled DOT NET Developer with 5 years of experience in developing web applications and software solutions.

    • 5 years of experience in DOT NET development

    • Proficient in developing web applications and software solutions

    • Strong knowledge of C#, ASP.NET, MVC, and SQL Server

    • Experience with front-end technologies like HTML, CSS, and JavaScript

    • Familiar with Agile development methodologies

  • Answered by AI
  • Q2. Explain your projects
  • Ans. 

    I have worked on various projects including e-commerce websites, inventory management systems, and data analysis tools.

    • Developed e-commerce website using ASP.NET MVC and SQL Server for backend

    • Implemented inventory management system using C# and Entity Framework

    • Created data analysis tool using LINQ and JavaScript for frontend

  • Answered by AI
  • Q3. Brief the OOPS concepts used in your projects
  • Ans. 

    OOPS concepts used in projects include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Reusing code by creating a new class based on an existing class.

    • Encapsulation: Restricting access to certain components of an object.

    • Polymorphism: Objects of different classes can be treated as objects of a common superclass.

    • Abstraction: Hiding the implementation details and showing only the necessary features.

  • Answered by AI
  • Q4. What do you know about SQL
  • Ans. 

    SQL is a programming language used for managing and manipulating databases.

    • SQL stands for Structured Query Language

    • It is used to communicate with databases to perform tasks like querying data, updating data, and creating databases

    • Common SQL commands include SELECT, INSERT, UPDATE, DELETE

    • SQL is used in various database management systems like MySQL, SQL Server, Oracle

  • Answered by AI
  • Q5. Logical question

Interview Preparation Tips

Topics to prepare for 5paisa Capital Ltd. DOT NET Developer interview:
  • MERN
  • C#
  • Dot net

Skills evaluated in this interview

I appeared for an interview in Feb 2021.

Round 1 - Coding Test 

Round duration - 120 minutes
Round difficulty - Medium

Round 2 - Coding Test 

(2 Questions)

Round duration - 120 minutes
Round difficulty - Medium

  • Q1. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

  • Ans. 

    Find all possible paths for a rat in a maze from source to destination.

    • Use backtracking to explore all possible paths in the maze.

    • Keep track of visited cells to avoid revisiting them.

    • Explore all possible directions ('U', 'D', 'L', 'R') from each cell.

    • Return the list of valid paths sorted in alphabetical order.

  • Answered by AI
  • Q2. 

    Word Presence in Sentence

    Determine if a given word 'W' is present in the sentence 'S' as a complete word. The word should not merely be a substring of another word.

    Input:

    The first line contains an in...
  • Ans. 

    Check if a given word is present in a sentence as a complete word.

    • Split the sentence into words using spaces as delimiter.

    • Check if the given word matches any of the words in the sentence.

    • Ensure the word is not a substring of another word in the sentence.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 6 cgpaBajaj Finserv Ltd. interview preparation:Topics to prepare for the interview - Data Structure, OOPS, Algorithms, JavaScript, Html , CssTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Knowledge of api
Tip 2 : Practice Data Structure based questions.
Tip 3 : Do at least 1 project.

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not mention participation certificates.

Final outcome of the interviewRejected

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Jan 2023. There were 3 interview rounds.

Round 1 - Coding Test 

This round consisted of multiple choice questions based on angular and java. I was asked to design a 3X3 grid that should listen to the click event and the selected grid should change the color to green.

Round 2 - Technical 

(2 Questions)

  • Q1. Longest common subsequence of two string
  • Ans. 

    The longest common subsequence of two strings is the longest sequence of characters that appear in the same order in both strings.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 2D array to store the lengths of the longest common subsequences.

    • Iterate through the characters of both strings and update the array based on the matching characters.

    • Trace back the array to find the longest common subsequence

  • Answered by AI
  • Q2. Logical questions, questions about my project
Round 3 - HR 

(1 Question)

  • Q1. Why this company, will you be able to relocate to given city

Interview Preparation Tips

Interview preparation tips for other job seekers - Medium Interview and had positive experience

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Round of 3 phases : Vocabulary, Business analytics and Coding

Round 2 - Technical 

(1 Question)

  • Q1. Convert number to ruman numeral
  • Ans. 

    Convert a number to Roman numeral representation.

    • Create a mapping of numbers to Roman numerals (e.g. 1 -> 'I', 5 -> 'V', 10 -> 'X', etc.)

    • Iterate through the mapping in descending order and subtract the largest possible numeral from the number until it reaches 0.

    • Build the Roman numeral representation by appending the corresponding numeral for each subtraction.

    • Handle special cases like 4, 9, 40, 90, etc. by including the

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

(1 Question)

  • Q1. Resume questions

I appeared for an interview in Dec 2020.

Round 1 - Technical 
Round 2 - Assignment 
Round 3 - Personal Interview 

(4 Questions)

  • Q1. 

    Alien Dictionary Problem Statement

    You are provided with a sorted dictionary (by lexical order) in an alien language. Your task is to determine the character order of the alien language from this dictiona...

  • Q2. 

    The Skyline Problem

    Compute the skyline of given rectangular buildings in a 2D city, eliminating hidden lines and forming the outer contour of the silhouette when viewed from a distance. Each building is ...

  • Q3. 

    Reverse Words In A String Problem Statement

    Given a string of length N, reverse the string word by word. Ensure that the output reversed string has a single space between two words and does not contain le...

  • Q4. 

    Flood Fill Algorithm Task

    Assist Ninja in altering the color of a specific region in his photo. Given the image as a 2D array where each pixel is a positive integer, update the color of a specified pixel ...

Interview Preparation Tips

Professional and academic backgroundI completed Civil Engineering from Indian Institute of Technology Kanpur. I applied for the job as SDE - 1 in PuneEligibility criteria7 cgpa
Bajaj Finserv Ltd. interview Rounds:Round 1
Round type - Online Coding Interview
Round duration - 90 mintues
Round difficulty - Medium
Round description -

Silent environment


Round 2
Round type - Face to Face
Round duration - 50 minutes
Round difficulty - Medium
Round description -

Evening
One on one interview
Interviewer was friendly by nature

Bajaj Finserv Ltd. interview preparation:Topics to prepare for the interview - Data structures, Sorting, Recursion, Pointers, OOPS, Algorithms, Greedy algorithms, Dynamic ProgrammingTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Be well versed with all the coding projects on your resume.
Tip 2 : Practice questions on the above mentioned topics from popular coding websites, like geegsforgeeks, interviewbit, etc, whichever suits you.
Tip 3 : Be familiar with the job profile you are applying for, go through the requirements of that profile and focus more on the skills it requires.
Tip 4 : Some courses like data structures and algorithms, if done, would be given more preference by interviewer over other candidates.

Application resume tips for other job seekers

Tip 1 : Mention high points during your life till now relevant to job profile.
Tip 2 : Mention internships, job experience, academics projects, coding projects precisely relevant to job profile.
Tip 3 : Review you resume by as many people as you can.
Tip 4 : Follow a proper syntax while preparing your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

DataTracks Interview FAQs

How many rounds are there in DataTracks DOT NET Developer interview?
DataTracks interview process usually has 3 rounds. The most common rounds in the DataTracks interview process are Resume Shortlist, Telephonic Call and Technical.
How to prepare for DataTracks DOT NET 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 DataTracks. The most common topics and skills that interviewers at DataTracks expect are Javascript, JQuery, SQL Server, ASP.Net MVC and C#.
What are the top questions asked in DataTracks DOT NET Developer interview?

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

  1. Registration form Flow example of ...read more
  2. HR is the worst she don't even have 2 years Experience and she is showing Attit...read more
  3. This Is first Round, In this round they asked me Questions on my experience and...read more

Tell us how to improve this page.

DataTracks DOT NET Developer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 586 Interviews
Bajaj Finserv Interview Questions
4.0
 • 539 Interviews
BOBCARD Ltd. Interview Questions
4.3
 • 24 Interviews
ICRA Interview Questions
3.4
 • 19 Interviews
View all

Fast track your campus placements

View all
Financial Analyst
133 salaries
unlock blur

₹1.8 L/yr - ₹3.4 L/yr

Reviewer
64 salaries
unlock blur

₹2.8 L/yr - ₹4.1 L/yr

Financial Reviewer
52 salaries
unlock blur

₹2.8 L/yr - ₹3.6 L/yr

Analyst
45 salaries
unlock blur

₹1.5 L/yr - ₹2.8 L/yr

Senior Associate
40 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Explore more salaries
Compare DataTracks with

Bajaj Finserv

4.0
Compare

Wells Fargo

3.8
Compare

JPMorgan Chase & Co.

3.9
Compare

Stock Holding Corporation of India

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