Filter interviews by
posted on 7 Apr 2023
I applied via Company Website and was interviewed in Mar 2023. There were 4 interview rounds.
The .NET framework supports multiple languages including C#, VB.NET, F#, and C++.
C# is the most commonly used language for .NET development
VB.NET is a popular choice for legacy applications
F# is used for functional programming
C++ is used for performance-critical applications
Other languages like IronPython and IronRuby can also be used with .NET
OOPs is a programming paradigm that uses objects to represent real-world entities. .NET framework supports OOPs concepts.
OOPs stands for Object-Oriented Programming.
.NET framework supports OOPs concepts like encapsulation, inheritance, and polymorphism.
In OOPs, objects are created from classes, which act as blueprints for the objects.
Example: In .NET, a class can be created to represent a customer with properties like ...
JIT stands for Just-In-Time compilation. It is a technique used by programming languages to improve performance.
JIT compiles code at runtime instead of ahead of time
It converts bytecode into machine code
There are two types of JIT: Pre-JIT and Normal JIT
Pre-JIT compiles the entire codebase ahead of time
Normal JIT compiles code as it is needed during runtime
Catching in .NET is a mechanism to handle exceptions that occur during program execution.
Catching is done using try-catch blocks.
Types of catching include specific exception catching, general exception catching, and re-throwing exceptions.
Specific exception catching is done using catch blocks that specify the type of exception to catch.
General exception catching is done using catch blocks that catch all exceptions.
Re-t...
I am a Dot Net Fullstack Developer with experience in developing web applications using .NET technologies.
Experienced in developing web applications using ASP.NET, C#, and SQL Server
Proficient in front-end technologies like HTML, CSS, and JavaScript
Familiar with frameworks like Angular and React
Strong problem-solving and debugging skills
Good understanding of software development principles and best practices
My strength lies in my strong technical skills and ability to adapt quickly. My weakness is that I can be overly critical of my own work.
Strength: Strong technical skills
Strength: Quick adaptability
Weakness: Overly critical of my own work
I applied via Company Website and was interviewed in Mar 2023. There were 6 interview rounds.
25 questions are given
Basics and advanced programing codings
I applied via Walk-in and was interviewed in Oct 2022. There were 3 interview rounds.
The intention behind facilitating a group discussion is to evaluate every candidate, check their persuasive skills, knowledge of the related subject, communication skills and most importantly their capability to structure arguments through logic, reason and factual information.
Aptitude test is a pre-employment assessment used to determine an individual's propensity or skill to excel or succeed in IT. The test will help IT/software companies find and hire top talent by accurately assessing the cognitive ability required of IT professionals
I applied via Company Website and was interviewed before Apr 2022. There were 3 interview rounds.
Simple problem solving exercises
SQL is a programming language used to manage and manipulate relational databases. Queries are commands used to retrieve data from databases.
SQL stands for Structured Query Language
Queries are used to retrieve specific data from a database
SQL can be used to create, modify, and delete databases and tables
Examples of SQL commands include SELECT, INSERT, UPDATE, and DELETE
Stored procedures are precompiled SQL statements that can be stored and executed on a database server.
Stored procedures improve performance by reducing network traffic and optimizing query execution.
They can be used to enforce business rules and security measures.
They can also be used to encapsulate complex logic and make it easier to maintain.
Examples include procedures for inserting, updating, and deleting data, as w...
KaaShiv InfoTech Company interview questions for designations
Top trending discussions
I applied via Referral and was interviewed before Oct 2023. There were 3 interview rounds.
Use a hash set to find duplicates in an array of strings.
Create a hash set to store unique elements.
Iterate through the array and check if the element is already in the hash set.
If it is, then it is a duplicate. If not, add it to the hash set.
Find the single duplicate element in an array of strings with length n-1.
Iterate through the array and use a HashSet to keep track of elements seen so far.
If an element is already in the HashSet, that is the duplicate element.
Return the duplicate element once found.
Create a student support system
Design an order and payments system for an EdTech company
Allow users to browse and select courses
Implement a shopping cart for users to add courses
Integrate payment gateways for secure transactions
Provide order confirmation and receipt to users
Allow users to track their order status
I appeared for an interview in Nov 2020.
Round duration - 60 minutes
Round difficulty - Easy
Consider a weighted, undirected graph with 'V' vertices numbered from 1 to 'V' and 'E' bidirectional edges. You are tasked with handling 'Q' queries. For each query, you are...
Implement a function to find the shortest distance between two vertices in a weighted, undirected graph.
Use Dijkstra's algorithm to find the shortest path between the given vertices.
Create a graph data structure to represent the weighted, undirected graph.
Handle cases where no path exists between the given vertices by returning -1.
Optimize the algorithm to handle multiple queries efficiently.
Consider edge cases such as...
Your task is to sort a sequence of numbers stored in the array ‘ARR’ in non-descending order using the Merge Sort algorithm.
Merge Sort is a divide-an...
Implement Merge Sort algorithm to sort a sequence of numbers in non-descending order.
Divide the input array into two halves recursively
Sort the two halves separately
Merge the sorted halves to produce a fully sorted array
Time complexity of Merge Sort is O(n log n)
Example: Input - [5, 2, 9, 1, 5], Output - [1, 2, 5, 5, 9]
You are provided with an N * N
maze where a rat is positioned at starting cell MAZE[0][0]
. The goal is to determine and print all possible paths that the rat can take to r...
Given an N * N maze with binary values, find and print all possible paths for a rat to reach the destination cell.
Use backtracking to explore all possible paths from the starting cell to the destination cell.
At each cell, check if it is a valid move (within bounds and not blocked), then recursively explore all four directions.
Keep track of the path taken so far and mark the cells accordingly.
Once the destination cell i...
Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do atleast 2 projects
Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.
I applied via Naukri.com and was interviewed in Sep 2022. There were 3 interview rounds.
Basic coding maths aptitude java python communication skills test
Java coding c plus python SQL oracle dbmsos
I applied via Referral and was interviewed in Jul 2024. There were 3 interview rounds.
SQL- 1 departments with no users
2 dept_id and their respective no. of users
DSA1: Most frequent no. in an array
DSA2: Zero Sum subarray exists
I applied via Company Website and was interviewed in Aug 2021. There was 1 interview round.
I can promote Coding Ninjas courses by organizing coding events, sharing course details on social media, and collaborating with college clubs.
Organize coding events in college and invite Coding Ninjas as a sponsor or guest speaker
Share course details on social media platforms like Facebook, LinkedIn, and Twitter
Collaborate with college clubs like coding clubs, tech clubs, and entrepreneurship clubs to promote the cours...
I applied via Walk-in and was interviewed before Jun 2022. There were 3 interview rounds.
Coding test of your skills and how well can you cope up with a problem given.
LAC stands for Location Area Code, a unique identifier for a group of cells in a mobile network.
LAC helps in identifying the location of a mobile device within a cellular network.
It is used for handover procedures when a device moves between different cells.
In a network with 3 nodes, each node would have a unique LAC assigned to it.
Reverse the order of strings in an array
Use the reverse() method to reverse the array
Example: ['apple', 'banana', 'cherry'] -> ['cherry', 'banana', 'apple']
based on 6 interviews
1 Interview rounds
based on 25 reviews
Rating in categories
full stack .net developer
20
salaries
| ₹1 L/yr - ₹2.4 L/yr |
Software Trainee
20
salaries
| ₹1 L/yr - ₹2 L/yr |
DOT NET Developer
18
salaries
| ₹0.9 L/yr - ₹3 L/yr |
Dot Net Fullstack Developer
6
salaries
| ₹1 L/yr - ₹2.4 L/yr |
Dot Net Developer Trainee
6
salaries
| ₹1.2 L/yr - ₹2 L/yr |
Lido Learning
Acadecraft
Coding Ninjas
Doubtnut