Upload Button Icon Add office photos

Filter interviews by

Ishttaa TechCraft DOT NET Developer Interview Questions and Answers

Updated 5 Mar 2023

Ishttaa TechCraft DOT NET Developer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Feb 2023. There were 6 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 - HR 

(2 Questions)

  • Q1. Tech stack,Role and Responsibilities
  • Q2. Current Company and Projects Information
Round 3 - Telephonic Call 

(3 Questions)

  • Q1. Oops concepts How did you applied to previous project explain with previous Project where did You used.
  • Q2. Int i default value ?
  • Ans. 

    The default value of int is 0.

    • int is a value type in C#

    • If a variable of type int is not initialized, it will have a default value of 0

    • This default value is assigned by the compiler

  • Answered by AI
  • Q3. How to improve SQL Query Performance
  • Ans. 

    To improve SQL query performance, optimize indexes, use proper data types, and avoid using SELECT *.

    • Optimize indexes by creating indexes on columns used in WHERE, JOIN, and ORDER BY clauses.

    • Use proper data types to reduce storage space and improve query execution time.

    • Avoid using SELECT * and instead specify only the necessary columns to reduce data retrieval time.

    • Use stored procedures and parameterized queries to redu...

  • Answered by AI
Round 4 - Technical 

(7 Questions)

  • Q1. Questions on Oops Realated Topics
  • Q2. Question on How MVC works
  • Q3. Questions on Middleware .use,.Map differences
  • Q4. Action methods and Their types
  • Ans. 

    Action methods are methods in ASP.NET MVC that handle HTTP requests and return responses.

    • Action methods are defined in controllers.

    • They can be public or non-public.

    • They can return different types of results such as ViewResult, JsonResult, and PartialViewResult.

    • They can have parameters that are bound from the request data.

    • They can have attributes that specify HTTP verbs, caching, authentication, and authorization.

    • Exampl...

  • Answered by AI
  • Q5. Routing Related Questions
  • Q6. C# Delegates and given a Program to find number is array or not then Debugging shortcuts and Keys used for it ?
  • Q7. SQL index key and Stored procedures
Round 5 - Behavioral 

(2 Questions)

  • Q1. Questions Related to Previous projects and Roles and Responsibilities
  • Q2. Why Do you want to leave Current Organisation
  • Ans. 

    Lack of growth opportunities and limited exposure to new technologies.

    • Limited career growth prospects in the current organization.

    • Lack of opportunities to work on new and challenging projects.

    • Limited exposure to the latest technologies and tools.

    • Desire to work in a more dynamic and innovative environment.

    • Seeking better learning and development opportunities.

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

(1 Question)

  • Q1. In this Round Tech expert, Had one to one Call It's About Experience and previous Projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics are important, prepare for C# as well as Projects Information, Debugging shortcuts.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between readonly and const in C#?
  • Ans. 

    readonly variables can be assigned a value either at the time of declaration or in the constructor, while const variables must be assigned a value at the time of declaration and cannot be changed.

    • readonly variables can be assigned a value at runtime, while const variables must be assigned a value at compile time

    • readonly variables can be assigned a value in the constructor, while const variables cannot

    • const variables ar...

  • Answered by AI
  • Q2. Const is compile-time constant, while readonly is runtime constant.
  • Ans. 

    const is compile-time constant, while readonly is runtime constant.

    • const values are determined at compile time and cannot be changed during runtime

    • readonly values can be assigned a value either at the declaration or in the constructor and can be changed at runtime

    • const is used for values that are known at compile time, like mathematical constants

    • readonly is used when the value needs to be initialized at runtime, like d

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Tailor your resume to match the job description and highlight relevant skills.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the implementation of Merge Sort in Java?
  • Ans. 

    Merge Sort is a divide and conquer algorithm that divides the input array into two halves, recursively sorts them, and then merges the sorted halves.

    • Divide the input array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves back together

  • Answered by AI
  • Q2. What is the implementation of the Quick Sort algorithm in Java?
  • Ans. 

    Quick Sort is a popular sorting algorithm that uses a divide-and-conquer approach to sort elements in an array.

    • Choose a pivot element from the array.

    • Partition the array into two sub-arrays: elements less than the pivot and elements greater than the pivot.

    • Recursively apply the same process to the sub-arrays.

    • Combine the sorted sub-arrays to get the final sorted array.

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Design tinyurl system design
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

30 question -30 min,topics - profit or loss , time work distance ,time speed ,upstreaam downstream percentage ,probability

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

I applied via Campus Placement and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

1.30
Basic profit/loss,percentages questions

Round 2 - Technical 

(4 Questions)

  • Q1. 1 hr Asked about closures, hoisting, map, hash
  • Q2. Closures and scopes
  • Q3. Dsa 2 sum problem
  • Q4. Projects and basicjs
Round 3 - HR 

(1 Question)

  • Q1. Basic related to location, timings
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Easy aptitude, 30 min with 20 question

Interview Preparation Tips

Interview preparation tips for other job seekers - learn OOPs concept and thorough about your project
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Online test which consists of java, angular, micro services related questions

Round 2 - Technical 

(1 Question)

  • Q1. Difference between static and default methods
  • Ans. 

    Static methods belong to the class itself, while default methods are part of an interface in Java.

    • Static methods can be called without creating an instance of the class, while default methods are used to provide a default implementation in interfaces.

    • Static methods are defined using the 'static' keyword, while default methods are defined using the 'default' keyword in Java.

    • Static methods cannot be overridden in subclas...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(2 Questions)

  • Q1. Basic resume based questions
  • Q2. Explain your internship experience
Round 3 - HR 

(1 Question)

  • Q1. Basic resume based questions
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jul 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

String , Array ,Collection framework related questions.

Round 3 - Assignment 

Ecommerce site with Login,Review,AddToCart,Order features,Filter features.

Round 4 - Technical 

(1 Question)

  • Q1. Html,Css,Js. Interviewer don't have knowledge on Java,React js.And if you don't able to answer basic html,css related questions they will disqualify you.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't apply.Totaly time waste.And even if you apply don't share project with them neither the Github link nor the the files via any medium.You are going to regret if you share the project.

Ishttaa TechCraft Interview FAQs

How many rounds are there in Ishttaa TechCraft DOT NET Developer interview?
Ishttaa TechCraft interview process usually has 6 rounds. The most common rounds in the Ishttaa TechCraft interview process are Resume Shortlist, HR and Telephonic Call.
How to prepare for Ishttaa TechCraft 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 Ishttaa TechCraft. The most common topics and skills that interviewers at Ishttaa TechCraft expect are C#, .Net, Winforms, ASP.Net and HTML.
What are the top questions asked in Ishttaa TechCraft DOT NET Developer interview?

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

  1. How to improve SQL Query Performa...read more
  2. Int i default valu...read more
  3. Action methods and Their ty...read more

Tell us how to improve this page.

Ishttaa TechCraft DOT NET Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

4.0

Work-Life balance

2.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

3.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
Software Developer
9 salaries
unlock blur

₹3 L/yr - ₹5.3 L/yr

Softwaretest Engineer
8 salaries
unlock blur

₹2.5 L/yr - ₹5 L/yr

Design Engineer
7 salaries
unlock blur

₹2.6 L/yr - ₹6.5 L/yr

Information Technology Recruiter
7 salaries
unlock blur

₹3.4 L/yr - ₹5 L/yr

Mechanical Engg. Design
4 salaries
unlock blur

₹3.6 L/yr - ₹7.3 L/yr

Explore more salaries
Compare Ishttaa TechCraft with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview