Upload Button Icon Add office photos

Filter interviews by

SmartGig Technologies DOT NET Developer Interview Questions and Answers

Updated 23 Mar 2023

SmartGig Technologies DOT NET Developer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Mar 2022. 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 - Assignment 

Sql querys and logicl programs and also c#.net quetion with examples

Round 3 - Technical 

(1 Question)

  • Q1. Different between Abstract class and interface.
  • Ans. 

    Abstract class is a class that cannot be instantiated and can have both abstract and non-abstract methods. Interface is a contract that a class must adhere to.

    • Abstract class can have fields, constructors, and non-abstract methods, while interface cannot.

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

    • Abstract class can provide default implementations for some methods, while interface ...

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. What is model, view, controlar.
  • Ans. 

    MVC is a software design pattern that separates an application into three interconnected components: Model, View, and Controller.

    • Model represents the data and business logic of the application

    • View is responsible for rendering the user interface

    • Controller handles user input and updates the model and view accordingly

    • MVC promotes separation of concerns and modularity

    • Example: ASP.NET MVC framework

  • Answered by AI
Round 5 - Coding Test 

Write a program in arryas can you have find the biggest number.

Round 6 - HR 

(1 Question)

  • Q1. What us u r expecting salary. And... Soon.

Interview Preparation Tips

Topics to prepare for SmartGig Technologies DOT NET Developer interview:
  • C#.Net
  • ASP.Net
  • ADO.Net
  • SQL Server
  • MVC
Interview preparation tips for other job seekers - "I can’t stop overthinking!"

“I just can’t decide”

“I keep thinking about the decision but not actually taking action"

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Simple question basics of programming

Round 2 - One-on-one 

(4 Questions)

  • Q1. 2 panel Interview
  • Q2. .Net MVC and Core difference
  • Ans. 

    MVC is a design pattern for building web applications, while Core is a cross-platform framework for building modern, cloud-based applications.

    • MVC is a design pattern used in .Net Framework for building web applications.

    • Core is a cross-platform framework for building modern, cloud-based applications.

    • MVC is tightly coupled with the .Net Framework, while Core is more modular and lightweight.

    • Core supports cross-platform de...

  • Answered by AI
  • Q3. ViewData ViewBag Template
  • Q4. Basic DSA reverse the string and array questions

Skills evaluated in this interview

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

Nuts and bolts game, to output date in a certain format, one SQL query

Round 2 - Technical 

(2 Questions)

  • Q1. Stacks and Queues
  • Q2. Linked lists, arrays, and many more basic fundamental Dsa questions.
Round 3 - Technical 

(2 Questions)

  • Q1. More about your resume projects.
  • Q2. Puzzles and reasoning is asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Try Puzzles on gfg, knows your projects that you have mentioned in your cv or resume, basic dsa is mostly asked with a focus on dbms.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Data structure and aptitude

Round 2 - Coding Test 

10 mins given for prepare for the problem and after completing the problem (program ) they asked to explain and asked to upgrade the program by reduce time complexity

Round 3 - Technical 

(2 Questions)

  • Q1. Topic given and want to explain
  • Q2. Reverse string without buildin funtion and for loop
  • Ans. 

    Reverse a string without using built-in functions or for loops

    • Use recursion to reverse the string

    • Pass the substring excluding the first character to the recursive function

    • Base case: return the character itself if the length of the string is 1

    • Concatenate the last character of the string with the result of the recursive call

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Introduce your self
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java and Python programming languages

    • Skilled in web development technologies like HTML, CSS, and JavaScript

    • Worked on projects involving database management with SQL

  • Answered by AI
  • Q2. Are you ok with agreement
  • Ans. 

    Yes, I am okay with agreement.

    • I am comfortable with signing agreements related to software development projects.

    • I understand the importance of agreements in protecting both parties involved in a project.

    • I am willing to review and negotiate agreements to ensure they are fair and reasonable.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be confidence
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Divisibility, LCM, HCF.
Numbers, Decimals, Fractions, Powers.
Profit, Loss.
Simple interest and Compound interest.
Speed, Distance, Time.
Work and wages.
Trains, Boats, Streams-upstream/downstream, Circular track questions.
Cistern and pipes.

Round 2 - Coding Test 

Coding interviews test candidates' technical knowledge, coding ability, problem solving skills, and creativity, typically on a whiteboard.

Round 3 - Assignment 

Choose a topic based on the assignment.
2 Conduct research.
3 Write a thesis statement

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Promises in javascript
  • Ans. 

    Promises in JavaScript are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() to handle success and .catch() to handle errors.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

C,c++ questions and two coding questions. basic mcq

Round 2 - Technical 

(3 Questions)

  • Q1. Treeset, hashset difference
  • Ans. 

    TreeSet and HashSet are both implementations of the Set interface in Java, but they have some key differences.

    • TreeSet is a sorted set that maintains elements in ascending order, while HashSet does not guarantee any specific order.

    • TreeSet uses a Red-Black tree data structure for storage, which allows for efficient retrieval of elements in sorted order.

    • HashSet uses a hash table for storage, which provides constant-time p...

  • Answered by AI
  • Q2. Oops concept, dbms, programming questions
  • Q3. Set and treeset and hashset

Interview Preparation Tips

Topics to prepare for ResMed Software Developer interview:
  • DBMS
  • OOPS
Interview preparation tips for other job seekers - none

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Discussion on experience and current role and responsibilities

Round 2 - Technical 

(2 Questions)

  • Q1. 1. Discuss one past project
  • Q2. 2. Design a job scheduler
  • Ans. 

    A job scheduler is a software application that manages the scheduling of tasks or jobs to be executed by a computer system.

    • Define the job scheduling requirements such as priority, deadline, resource constraints, etc.

    • Implement a scheduling algorithm like First Come First Serve, Shortest Job First, Round Robin, etc.

    • Maintain a queue of jobs to be executed and allocate resources accordingly.

    • Monitor job execution and handle...

  • Answered by AI

Skills evaluated in this interview

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

There were 50 question out of which if you score 20 you were passed out to next round, No negative markings.

Software Developer Interview Questions & Answers

Sciative Solutions user image 20ECE1008 Anjali Deshpande

posted on 16 Oct 2023

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

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 - Coding Test 

2 hrs Python and aptitude

Round 3 - Technical 

(1 Question)

  • Q1. DSA questions with optimized solutions

SmartGig Technologies Interview FAQs

How many rounds are there in SmartGig Technologies DOT NET Developer interview?
SmartGig Technologies interview process usually has 6 rounds. The most common rounds in the SmartGig Technologies interview process are Technical, Resume Shortlist and Assignment.
How to prepare for SmartGig Technologies 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 SmartGig Technologies. The most common topics and skills that interviewers at SmartGig Technologies expect are C#, MVC, SQL, .Net and ADO.Net.
What are the top questions asked in SmartGig Technologies DOT NET Developer interview?

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

  1. Different between Abstract class and interfa...read more
  2. What is model, view, control...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 SmartGig Technologies interview
WalkIn
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
SmartGig Technologies DOT NET Developer Salary
based on 9 salaries
₹2.4 L/yr - ₹5 L/yr
24% less than the average DOT NET Developer Salary in India
View more details

SmartGig Technologies DOT NET Developer Reviews and Ratings

based on 3 reviews

4.4/5

Rating in categories

5.0

Skill development

4.0

Work-Life balance

4.0

Salary & Benefits

3.0

Job Security

5.0

Company culture

4.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 3 Reviews and Ratings
Software Consultant
51 salaries
unlock blur

₹2.4 L/yr - ₹9 L/yr

HR Executive
16 salaries
unlock blur

₹1.8 L/yr - ₹4.1 L/yr

Software Engineer
12 salaries
unlock blur

₹2.7 L/yr - ₹7.2 L/yr

DOT NET Developer
9 salaries
unlock blur

₹2.4 L/yr - ₹5 L/yr

Angular Developer
9 salaries
unlock blur

₹2.8 L/yr - ₹6.5 L/yr

Explore more salaries
Compare SmartGig Technologies with

Infosys

3.7
Compare

TCS

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