Upload Button Icon Add office photos
Premium Employer

i

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

BOLD Technology Systems Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

BOLD Technology Systems DOT NET Developer Interview Questions and Answers

Updated 8 Apr 2024

BOLD Technology Systems DOT NET Developer Interview Experiences

1 interview found

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

(3 Questions)

  • Q1. 1. What is request pipeline? What is the order of the classes in Request pipeline. 3. Access Specifiers in C#.
  • Ans. 

    Request pipeline is the sequence of classes and modules that process an incoming HTTP request in ASP.NET.

    • Request pipeline in ASP.NET is responsible for handling incoming HTTP requests and generating responses.

    • The order of classes in the request pipeline includes modules like URL routing, authentication, authorization, and finally the handler that generates the response.

    • Access specifiers in C# are keywords used to speci...

  • Answered by AI
  • Q2. What is Filter ? What is the order of filter classes ?
  • Ans. 

    Filter is a feature in ASP.NET that allows you to execute logic before or after an action method is called.

    • Filters are used to perform logic before or after an action method is called in ASP.NET MVC.

    • There are five types of filter classes in ASP.NET: Authorization filters, Action filters, Result filters, Exception filters, and Resource filters.

    • The order of filter classes is: Authorization filters, Action filters, Result...

  • Answered by AI
  • Q3. What is the difference between
  • Ans. 

    The difference between == and Equals() in C# is that == is used for comparing reference equality, while Equals() is used for comparing value equality.

    • == is used to compare reference equality, meaning it checks if two objects reference the same memory location.

    • Equals() is used to compare value equality, meaning it checks if the values of two objects are the same.

    • Example: string str1 = "hello"; string str2 = "hello"; boo...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

The exam duration is one and a half hours.

Round 2 - Coding Test 

The total exam time is one and a half hours.

Round 3 - Group Discussion 

It encompasses all topics related to full stack development.

Round 4 - Technical 

(2 Questions)

  • Q1. Asks questions on SQL
  • Q2. Asks question in typical topics
Round 5 - HR 

(1 Question)

  • Q1. Where do you see yourself in two years?
  • Ans. 

    In two years, I see myself as a senior software developer leading a team on innovative projects.

    • Advancing to a senior software developer role

    • Leading a team on new and innovative projects

    • Continuing to enhance my technical skills through ongoing learning and training

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. LRU Cache - how to tackle
  • Ans. 

    LRU Cache is a data structure that maintains a list of items in order of most recently used to least recently used.

    • Implement using a doubly linked list and a hashmap for efficient operations

    • When an item is accessed, move it to the front of the list

    • When the cache is full, remove the least recently used item from the end of the list

  • Answered by AI
  • Q2. LRU Cache implementation based on a real time system. How would the main work which will be called etc etc
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at RV College Of Engineering (RVCE) and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 Medium level dsa questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Lld of cab booking system
  • Ans. 

    The Low Level Design (LLD) of a cab booking system involves detailing the system architecture and components at a lower level of abstraction.

    • Identify the main components of the system such as user interface, booking engine, payment gateway, and driver allocation algorithm.

    • Define the interactions between these components and how data flows between them.

    • Specify the data structures and algorithms used for efficient bookin...

  • Answered by AI
  • Q2. Discussion about online assesment

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for machine coding rounds.

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

HAckerrank based test

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Thread,oops,sql,find character count
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in May 2024.

Round 1 - Aptitude Test 

It was having english and maths questions

Round 2 - Coding Test 

Code was easy kindly do pratice

Interview experience
2
Poor
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 - Aptitude Test 

I haven't appeared but this website asking me everytime that's why giving review but I wanted to know what are the ratings for this company

Round 3 - Technical 

(2 Questions)

  • Q1. I haven't appeared but ratings it
  • Q2. Why you choose uplers

Interview Preparation Tips

Interview preparation tips for other job seekers - Know the procedure before going to assessment, learn all the things before assessment

I was interviewed in Jul 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a online coding interview where I was asked coding questions.

  • Q1. 

    Preorder Traversal of a BST Problem Statement

    Given an array PREORDER representing the preorder traversal of a Binary Search Tree (BST) with N nodes, construct the original BST.

    Each element in the given...

  • Ans. 

    Preorder traversal is: process the root, left subtree, and then right subtree. So, to emulate this behaviour in a non-recursive way, a stack can be used. 
    1. Start with pushing the root node to the stack and continue the traversal till there is at least one node onto the stack. 2. Pop the root node from stack, process it and push it’s right and left child on to stack. We push the right child before the left child b...

  • Answered Anonymously
  • Q2. 

    Convert Sorted Array to BST Problem Statement

    Given a sorted array of length N, your task is to construct a balanced binary search tree (BST) from the array. If multiple balanced BSTs are possible, you ca...

  • Ans. 

    The approach to this question is quite simple. We traverse the array and process each element one by one. We separately create an insert function which basically takes the root node and the array element as parameters and insert the element in the tree after evaluating the conditions: 
    1.Start from the root. 
    2. Compare the inserting element with root, if less than root, then recurse for left, else recurse for ...

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical round. Programming based questions and oops/dbms based were asked. 
Some questions were :
1. How many types of trigger?
Ans. In SQL, there are 3 types of triggers :
DML (data manipulation language) triggers – Eg.– INSERT, UPDATE, and DELETE
DDL (data definition language) triggers Eg.– CREATE, ALTER, and DROP
Logon triggers –This type reacts to LOGON events
2. Can trigger be used with select statement?
Ans. No, triggers cannot be used with select statements. They can only be used with Insert, update or delete statements. 
3. Indexing in mysql? How many types of indexing in mysql?
Ans. Indexes are used to find rows with specific column values quickly. It helps to determine the position to seek to in the middle of the data file without having to look at all the data. It performs much faster than reading every row sequentially.
4. Engines in mysql?
Ans. So, in mysql, storage engine is a software module that a database management system uses to create, read, update data from a database. There are two types of storage engines: transactional and non-transactional.
5. Singleton pattern?
Ans. Singleton is a creational design pattern that ensured that a class has only one instance, while providing a global access point to this instance.

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    The problem can be solved in O(n) time using the concept of hashing. 
    Use a hashset to check for the current array value. Check if targetsum – current value exists in the map or not. If it exists, that means a pair with sum equal to target sum exists in the array.

  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMyntra interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via campus placement at Jadavpur University and was interviewed before Oct 2022. There were 3 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 

2 simple DSA - leetcode medium

Round 3 - Technical 

(1 Question)

  • Q1. 2 leetcode medium

Interview Preparation Tips

Interview preparation tips for other job seekers - do leetcode

BOLD Technology Systems Interview FAQs

How many rounds are there in BOLD Technology Systems DOT NET Developer interview?
BOLD Technology Systems interview process usually has 1 rounds. The most common rounds in the BOLD Technology Systems interview process are Technical.
How to prepare for BOLD Technology Systems 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 BOLD Technology Systems. The most common topics and skills that interviewers at BOLD Technology Systems expect are .NET, Azure DevOps, C#, Design Patterns and Microservices.
What are the top questions asked in BOLD Technology Systems DOT NET Developer interview?

Some of the top questions asked at the BOLD Technology Systems DOT NET Developer interview -

  1. What is Filter ? What is the order of filter classe...read more
  2. 1. What is request pipeline? What is the order of the classes in Request pipeli...read more
  3. What is the difference betw...read more

Tell us how to improve this page.

BOLD Technology Systems DOT NET Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Software Engineer
148 salaries
unlock blur

₹7 L/yr - ₹19.5 L/yr

Senior Software Engineer
137 salaries
unlock blur

₹10 L/yr - ₹26 L/yr

QA Engineer
87 salaries
unlock blur

₹7.2 L/yr - ₹15.5 L/yr

Technical Lead
48 salaries
unlock blur

₹14.2 L/yr - ₹37.8 L/yr

Senior QA Engineer
46 salaries
unlock blur

₹9.8 L/yr - ₹19.5 L/yr

Explore more salaries
Compare BOLD Technology Systems with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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