Upload Button Icon Add office photos

Filter interviews by

India Bison Dot Net Developer Trainee Interview Questions, Process, and Tips

Updated 21 Nov 2023

India Bison Dot Net Developer Trainee Interview Experiences

1 interview found

Dot Net Developer Trainee Interview Questions & Answers

user image Khushboo Upadhyay

posted on 21 Nov 2023

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 Nov 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 - Technical 

(10 Questions)

  • Q1. What is Asp.net?
  • Ans. 

    ASP.NET is a web application framework developed by Microsoft for building dynamic web sites, web applications, and web services.

    • Developed by Microsoft

    • Used for building dynamic web sites, web applications, and web services

    • Supports multiple programming languages like C# and VB.NET

    • Uses server-side scripting to generate dynamic web pages

  • Answered by AI
  • Q2. What is asp.net page life cycle?
  • Ans. 

    ASP.NET page life cycle is the series of events that occur from the time a page is requested to the time the page is fully rendered and sent to the client browser.

    • Page request is received by the server

    • Page is initialized, controls are created and their properties are set

    • Page is loaded with data and controls are rendered

    • Page is unloaded and disposed

  • Answered by AI
  • Q3. What is web.config file?
  • Ans. 

    Web.config file is a configuration file used in ASP.NET applications to store settings and configurations.

    • Contains settings for the ASP.NET application

    • Can include connection strings, authentication settings, and custom error pages

    • Located in the root directory of the ASP.NET application

    • Can be used to specify custom error pages, session state settings, and more

  • Answered by AI
  • Q4. What are access modifiers?
  • Ans. 

    Access modifiers are keywords in programming languages that define the accessibility of classes, methods, and other members.

    • Access modifiers control the visibility and accessibility of classes, methods, and variables in a program.

    • Common access modifiers include public, private, protected, and default (package-private).

    • Public access modifier allows a class, method, or variable to be accessed from any other class.

    • Private...

  • Answered by AI
  • Q5. What is joins in sql?
  • Ans. 

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

    • Joins are used to retrieve data from multiple tables based on a related column.

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

    • INNER JOIN returns rows when there is at least one match in both tables.

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table.

    • RI...

  • Answered by AI
  • Q6. What are oops concept?
  • Ans. 

    OOPs concepts refer to Object-Oriented Programming principles like Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation detail

  • Answered by AI
  • Q7. What is interface?
  • Ans. 

    An interface in programming defines a contract for classes to implement, specifying methods and properties that must be included.

    • Interfaces in C# are similar to abstract classes but can only contain method signatures, properties, events, and indexers.

    • Classes can implement multiple interfaces, allowing for flexibility in defining behavior.

    • Interfaces are used to achieve polymorphism and decouple code, making it easier to...

  • Answered by AI
  • Q8. What is difference between function and store procedure?
  • Ans. 

    Functions return a single value while stored procedures can return multiple values. Functions can be called from SQL statements while stored procedures cannot.

    • Functions return a single value while stored procedures can return multiple values

    • Functions can be called from SQL statements while stored procedures cannot

    • Functions cannot modify the database state while stored procedures can

    • Functions are used for computations a...

  • Answered by AI
  • Q9. What is difference between interface and abstract class?
  • Ans. 

    Interface is a blueprint for a class, while abstract class can have some implementation.

    • Interface cannot have any implementation, only method signatures.

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

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

    • Interfaces are used to achieve multiple inheritance in C#, while abstract classes...

  • Answered by AI
  • Q10. What is store procedure?
  • Ans. 

    A stored procedure is a precompiled collection of SQL statements that can be executed by calling the procedure name.

    • Stored procedures can improve performance by reducing network traffic and increasing security.

    • They can be used to encapsulate business logic and promote code reusability.

    • Stored procedures are stored in the database and can be called from various applications or scripts.

    • Example: CREATE PROCEDURE GetEmploye...

  • Answered by AI
Round 3 - Behavioral 

(3 Questions)

  • Q1. What is your current location?
  • Q2. Why did you left your previous company?
  • Q3. Have you used WebApi?
  • Ans. 

    Yes, I have used WebApi in multiple projects to create RESTful APIs for web applications.

    • Used WebApi to build RESTful APIs for communication between client and server

    • Implemented CRUD operations using WebApi endpoints

    • Secured WebApi endpoints with authentication and authorization mechanisms

    • Utilized WebApi to integrate third-party services and data sources

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident!

Skills evaluated in this interview

Interview questions from similar companies

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

I was interviewed in Jan 2025.

Round 1 - Technical 

(10 Questions)

  • Q1. Given a string, identify the indices of all first occurrences of vowels and return the count of these indices.
  • Q2. Given two integers as input, how can you find the difference and determine how many numbers can be divided by 3 within that difference?
  • Q3. Content Negotiation in ASP .Net Web API?
  • Q4. How do we resolve Git Conflit?
  • Q5. What is the role of a static constructor?
  • Q6. How can we invoke each method if two interfaces define the same methods?
  • Q7. Occurrence of each character in a given String?
  • Q8. Rest vs WCF
  • Q9. How do microservices communicate with each other?
  • Q10. Cluster vs Non Cluster Index

Interview Preparation Tips

Interview preparation tips for other job seekers - The fundamentals should be robust, focusing on code snippet-based questions for developers.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Demonstrate Function Overriding.
  • Ans. 

    Function Overriding is a concept in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its parent class.

    • In Function Overriding, a subclass can provide a specific implementation of a method that is already defined in its parent class.

    • The method in the subclass must have the same name, return type, and parameters as the method in the parent class to ove...

  • Answered by AI
  • Q2. Linq query with order by
  • Ans. 

    Using LINQ query to order data in C#

    • Use the OrderBy method to sort data in ascending order

    • Use the OrderByDescending method to sort data in descending order

    • You can also use ThenBy and ThenByDescending for secondary sorting

  • Answered by AI
  • Q3. What is Out Parameter with example
  • Ans. 

    Out parameter is used to pass data out of a method or function.

    • Out parameters are used when a method needs to return multiple values.

    • They are declared using the 'out' keyword in C#.

    • Example: void CalculateArea(int length, int width, out int area) { area = length * width; }

  • Answered by AI
  • Q4. Authentication and autherization, JWT Tocken
  • Q5. Reflection in C#
  • Ans. 

    Reflection in C# allows for inspecting and manipulating metadata of types at runtime.

    • Reflection is used to dynamically create instances of types, access properties, and invoke methods.

    • Examples include using reflection to load assemblies at runtime, inspect attributes of types, and generate code dynamically.

    • Reflection can be slow and should be used judiciously due to performance overhead.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Accenture Dot Net Fullstack Developer interview:
  • OOPS
  • SQL
  • Javascript
Interview preparation tips for other job seekers - Basics of OOPS SQL JS will do.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - Group Discussion 

About the networking issues

Round 2 - Technical 

(2 Questions)

  • Q1. BGP OSPF ,inter Vlan routing ,IP addressing and subnetting
  • Q2. Switching cisco 9k serion ,juniper,hauwai, cisco ASR
Round 3 - One-on-one 

(1 Question)

  • Q1. Basic discussing about salary and current work environment

Interview Preparation Tips

Interview preparation tips for other job seekers - don't lie anything in resume ,if you know the skills please update otherwise dont do this
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I was interviewed in Jan 2025.

Round 1 - Technical 

(1 Question)

  • Q1. Dot net basic and intermediate question
Round 2 - Behavioral 

(1 Question)

  • Q1. Techical round genral topic how to handle situation

Interview Preparation Tips

Interview preparation tips for other job seekers - Both round done same day with different time I cleared Technical round but manager round they eliminated me I said my point view some scenario based questions but he not accepted my anaswers
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is Virtual LAN?
  • Q2. Difference between L2 &L3 switch?

Interview Preparation Tips

Interview preparation tips for other job seekers - If you want to go down your morality and preparation for interview then , don't attend interview with current Wipro interview bench. Most............ They not need Engineer, I think they need Dr. In networking.

Network Engineer Interview Questions & Answers

Jio user image Mehulkumar Prajapati

posted on 29 Nov 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral

Round 1 - HR 

(2 Questions)

  • Q1. Preferred location
  • Ans. 

    I am open to any location that offers growth opportunities and a challenging work environment.

    • Open to relocation for the right opportunity

    • Prefer locations with strong networking infrastructure

    • Interested in locations with tech hubs or opportunities for professional development

  • Answered by AI
  • Q2. What' isbm your CCTC?
  • Ans. 

    My current CCTC is $80,000 per year.

    • Current CCTC is $80,000 per year

    • CCTC may include salary, bonuses, benefits, etc.

    • Negotiable based on experience and qualifications

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

(2 Questions)

  • Q1. Full form of BGP
  • Ans. 

    Border Gateway Protocol

    • BGP stands for Border Gateway Protocol

    • It is a standardized exterior gateway protocol used to exchange routing information between different autonomous systems on the internet

    • BGP helps in determining the best path for data to travel between networks

    • It is commonly used by Internet Service Providers (ISPs) and large organizations to connect to multiple networks

    • BGP operates on TCP port 179

  • Answered by AI
  • Q2. Router function
  • Ans. 

    Routers are networking devices that forward data packets between computer networks.

    • Routers operate at the network layer of the OSI model

    • They use routing tables to determine the best path for data packets

    • Routers can connect different types of networks, such as LANs and WANs

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. What is Joining date
  • Q2. What is your ECTC
  • Ans. 

    Expected CTC (Cost to Company) for the position

    • ECTC stands for Expected Cost to Company

    • It includes salary, bonuses, benefits, and any other compensation offered by the employer

    • Candidates should provide their expected salary range based on their experience and skills

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

I would like simple test

Round 2 - HR 

(5 Questions)

  • Q1. I would like to lisen the words of company maganement .. And the process of company rules and regulations ..
  • Q2. I will occupy the group of my team to secrue the entire the company to first stage
  • Q3. I want to.Get a job inMahindra
  • Q4. I didn't learn the computertyping but will learn definitely.. in tech Mahindr company basics
  • Q5. I am a student degree first year.. ButI would like work in techMahindra..

Interview Preparation Tips

Interview preparation tips for other job seekers - I say hole job seekers
The tech Mahindra was better than the future
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. What's your experience
  • Q2. Whats your Qualifications
Round 2 - Technical 

(2 Questions)

  • Q1. What are joins?
  • Q2. Oops concept and its implementation

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare oops concepts
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between web.config and Machine.config
  • Ans. 

    web.config is specific to a web application and overrides settings in Machine.config

    • web.config is specific to a web application, while Machine.config is at the machine level

    • web.config can override settings in Machine.config for a specific application

    • Machine.config is located in the .NET framework folder, while web.config is in the application folder

  • Answered by AI
  • Q2. Explain about state management
  • Ans. 

    State management in .NET refers to the process of storing and retrieving data during the lifecycle of an application.

    • State management can be achieved using various techniques such as session state, view state, cookies, and query strings.

    • Session state allows storing user-specific data across multiple pages during a user session.

    • View state stores the state of the page and its controls between postbacks.

    • Cookies can be use...

  • Answered by AI

Skills evaluated in this interview

India Bison Interview FAQs

How many rounds are there in India Bison Dot Net Developer Trainee interview?
India Bison interview process usually has 3 rounds. The most common rounds in the India Bison interview process are Resume Shortlist, Technical and Behavioral.
What are the top questions asked in India Bison Dot Net Developer Trainee interview?

Some of the top questions asked at the India Bison Dot Net Developer Trainee interview -

  1. What is difference between function and store procedu...read more
  2. What is difference between interface and abstract cla...read more
  3. What is asp.net page life cyc...read more

Tell us how to improve this page.

India Bison Dot Net Developer Trainee Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all
Software Developer
4 salaries
unlock blur

₹4.5 L/yr - ₹10 L/yr

Manager
4 salaries
unlock blur

₹4.5 L/yr - ₹12 L/yr

QA Test Engineer
4 salaries
unlock blur

₹2.9 L/yr - ₹5.6 L/yr

Senior Software Test Engineer
4 salaries
unlock blur

₹9 L/yr - ₹10.1 L/yr

Junior Software Developer
3 salaries
unlock blur

₹2 L/yr - ₹2 L/yr

Explore more salaries
Compare India Bison with

Bharti Airtel

4.0
Compare

Reliance Industries

4.0
Compare

TCS

3.7
Compare

Hindustan Unilever

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