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

Compare button icon Compare button icon Compare
3.4

based on 200 Reviews

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

DOT NET Developer Jobs at BOLD Technology Systems

View all

Interview questions from similar companies

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

I applied via Job Fair and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Coding Test 

OA test 3 Dsa questions 2 medium 1 hard you have to solve 1.5 questions in 120 minutes

Round 2 - One-on-one 

(2 Questions)

  • Q1. DSA Round Astreoid collision leetcode
  • Q2. Dp question based on exclusion and inclusion
Round 3 - Coding Test 

DSA 2 question
1 -> Find Lca and traverse a tree path available on GFG
2 -> LinkedList pallindrome check (you have to solve that in 0(1) space complexity)

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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. It was lld question to design a cab booking system.
  • Q2. Tell me about yourself
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

HAckerrank based test

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 Apr 2022.

Round 1 - HR 

Round duration - 30 minutes
Round difficulty - Easy

This was just a screening round to check my intention and communication skills. They just asked me why was I looking for a job change, and told me a little bit about the profile.

Round 2 - Video Call 

(2 Questions)

Round duration - 45 Minutes
Round difficulty - Easy

Since I had applied for a full stack profile, this round mainly consisted of front-end questions and some basic DSA questions. They had scheduled a call in the afternoon around 14:00 and the call was on Google meet where I had to share my screen and type in some code, once I was happy with my code and it worked fine, I had to paste it into the google doc. Actually, they had outsourced the interview rounds to the Interview Vector.

  • Q1. 

    Flatten 2D Array Problem

    Implement an iterator called ‘FLATTEN_2D’ to transform a two-dimensional array ‘ARR_2D’ into a one-dimensional array ‘ARR_1D’. The iterator should support the following operations...

  • Ans. 

    Basic DFS.
    - Create an empty array and call it the result.
    - Loop over the content of the array if it's a number push it into the result array else recursively call the function.
    - Return the resultant array.

  • Answered Anonymously
  • Q2. Implement a function 'sum' such that the following conditions hold: sum(1)(2)(3)(4)() returns 10, sum(1)() returns 1, and sum() returns 0.
Round 3 - Video Call 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Easy

This round consisted of multiple easy DSA questions, some frontend questions, and one thought experiment related to design. Again, this round was conducted around 14:00 in the afternoon.

  • Q1. 

    Anagram Pairs Verification Problem

    Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form the...

  • Ans. 

    - Compare length of the strings and if they are not equal return false.
    - Take a hashmap and store the number of occurrences of each letter in the first string.
    - Iterate over the second string and if the ith character is not in the hashmap or the frequency is 0 then return false.
    - return true.

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Gandhi Institute For Technology(GIFT) , BBSR. Eligibility criteriaNo criteriaSpinny interview preparation:Topics to prepare for the interview - Data Structures, React, JavaScript, CSS, SOLID Principles, System DesignTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : DSA is important, practice around 150+ questions minimum.
Tip 2 : For the front end, JS is a must! Learn the basics and how it works under the hood.
Tip 3 : Learn SOLID and Design patterns.

Application resume tips for other job seekers

Tip 1 : Keep it short and simple. Specify your projects and/or experiences.
Tip 2 : Even naming your resume helps, instead of naming it "resume.pdf" name it like "____resume.pdf". It actually helps recruiters and I got positive feedback for this.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Simple DSA ques. and some mcqs. were easy if you are a cp guy

Round 2 - Technical 

(2 Questions)

  • Q1. Given a string of paranthesis tell longest valid parantheisis
  • Ans. 

    Use stack to keep track of indices of opening parentheses, update max length when closing parentheses found

    • Use a stack to keep track of indices of opening parentheses

    • When a closing parentheses is found, update max length by calculating the difference between current index and top of stack

    • Handle edge cases like extra closing parentheses or unmatched opening parentheses

    • Example: Input: "(()()", Output: 4 (for "()()")

  • Answered by AI
  • Q2. Leetcode 1443. This was exact ques
Round 3 - Technical 

(2 Questions)

  • Q1. Given a string find longest palindromeic substring
  • Ans. 

    Find the longest palindromic substring in a given string.

    • Use dynamic programming to check for palindromes within the string.

    • Start by checking for palindromes of length 1 and 2, then expand to longer substrings.

    • Keep track of the longest palindrome found so far.

  • Answered by AI
  • Q2. Simple take not take dp ques But my interviewer was an idiot she didn't understand shit She was reading editorial on the fly. As i told her approch she was like its wrong then read editorial and was fine. ...

Skills evaluated in this interview

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
Join BOLD Technology Systems The #1 globally recognized leader for job seekers
SE/SSE-.Net Developer

Noida,

Greater Noida

2-7 Yrs

Not Disclosed

Explore more jobs
Software Engineer
155 salaries
unlock blur

₹7 L/yr - ₹20.1 L/yr

Senior Software Engineer
133 salaries
unlock blur

₹10 L/yr - ₹27.5 L/yr

QA Engineer
78 salaries
unlock blur

₹6 L/yr - ₹15 L/yr

Technical Lead
49 salaries
unlock blur

₹14.2 L/yr - ₹37.8 L/yr

Senior QA Engineer
42 salaries
unlock blur

₹9.8 L/yr - ₹19.5 L/yr

Explore more salaries
Compare BOLD Technology Systems with

Infosys

3.7
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