Upload Button Icon Add office photos

Filter interviews by

BlueKaktus DOT NET Developer Interview Questions and Answers

Updated 7 Jun 2024

BlueKaktus DOT NET Developer Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. How do you handle errors in .net?
  • Ans. 

    Errors in .NET are handled using try-catch blocks, custom error pages, logging, and exception handling techniques.

    • Use try-catch blocks to catch exceptions and handle them gracefully.

    • Implement custom error pages to provide users with helpful error messages.

    • Utilize logging frameworks like log4net or NLog to log errors for troubleshooting.

    • Use exception handling techniques like throwing custom exceptions or using specific ...

  • Answered by AI
  • Q2. What is appsettings.json file?
  • Ans. 

    appsettings.json file is a configuration file used in .NET applications to store key-value pairs for application settings.

    • Contains key-value pairs for application settings

    • Used to configure the behavior of the application

    • Can be used to store connection strings, logging settings, etc.

    • Stored in JSON format for easy readability and editing

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I applied via Company Website and was interviewed before Sep 2021. There were 4 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 - Aptitude Test 

Logical Aptitude, Verbal, Numerical

Round 3 - Coding Test 

2 codes one small and easy , another big and medium difficultly

Round 4 - Behavioral 

(2 Questions)

  • Q1. Introduction , Academic Project,
  • Q2. Coding Questions, Company Related Questions

Interview Preparation Tips

Topics to prepare for TCS Software Developer interview:
  • Coding
Interview preparation tips for other job seekers - In aptitude focus on Logical and Verbal aptitude and work on projects and coding skills

Interview Questionnaire 

2 Questions

  • Q1. Python
  • Q2. Webdevelopment

Interview Questionnaire 

1 Question

  • Q1. Some basic programming and technical questions of python

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well ! :) All the best

I appeared for an interview before Jul 2021.

Round 1 - Aptitude Test 

This will be a general apptitude test where a questionnaire is consist of reasoning, English and Maths questions

Round 2 - One-on-one 

(3 Questions)

  • Q1. Tell us about yourself
  • Q2. What do you know about our company
  • Q3. Where do you see yourself in the next 5 years

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself for general apptitude. And for interview one-on-one, Stay calm and focused. Just be yourself, know you gonna provide to the company

Interview Questionnaire 

1 Question

  • Q1. Design facebook
  • Ans. 

    Designing Facebook is a complex task involving various components and technologies.

    • Identify the core features of Facebook such as user profiles, news feed, messaging, and groups.

    • Choose appropriate technologies for each component such as PHP for backend, React for frontend, and MySQL for database.

    • Ensure scalability and performance by implementing caching, load balancing, and database sharding.

    • Implement security measures...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Database, logical reasoning

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. How to check Java version?
  • Ans. 

    To check Java version, use command prompt/terminal and type 'java -version'.

    • Open command prompt/terminal

    • Type 'java -version'

    • Press enter

    • The installed Java version will be displayed

  • Answered by AI
  • Q2. What is the syntax of the main method?
  • Ans. 

    The main method syntax is a standard entry point for Java programs.

    • The main method must be declared as public, static, and void.

    • The method name must be 'main'.

    • The method must accept an array of strings as an argument.

    • The method must be defined within a class.

    • Example: public static void main(String[] args) { }

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go by yourself.
Look professional. Dress in a manner appropriate to the job.
Bring your sense of humor and smile🙂.
Maintain eye contact.
Display confidence during the interview .

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Apr 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Are you willing to relocate?
  • Q2. Why should I hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - My technical and Hr interview done at same place. It lasted about 40minutes. The interviewer test both my technical knowledge and communication skills. I tell most of the answer. They check patience level.He stressed on my final year project . Asking about range and specification of compotents which I heve used in my project. Finally ask some HR questions.

I appeared for an interview before Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 180 Minutes
Round difficulty - Medium

The test was started in the evening 4pm approx.
It was flexible due to Corona so we gave the test from our home only.
It had listening skill activity too according to which we were marked .
Interviewer was very supportive because of which it was easier for us to open up easily .

  • Q1. 

    Arithmetic Expression Evaluation Problem Statement

    You are provided with a string expression consisting of characters '+', '-', '*', '/', '(', ')' and digits '0' to '9', representing an arithmetic express...

  • Ans. 

    Evaluate arithmetic expressions in infix notation with given operators and precedence rules.

    • Parse the infix expression to postfix using a stack and then evaluate the postfix expression using another stack

    • Use a stack to keep track of operators and operands while parsing the expression

    • Handle operator precedence and associativity rules while converting to postfix and evaluating the expression

  • Answered by AI
  • Q2. 

    Valid Parentheses Problem Statement

    Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

    Input:

    The first line contains an...
  • Ans. 

    The task is to determine if a given string of parentheses is balanced or not.

    • Iterate through the characters of the string and use a stack to keep track of opening parentheses.

    • When encountering an opening parenthesis, push it onto the stack. When encountering a closing parenthesis, check if it matches the top of the stack.

    • If the stack is empty at the end or there are unmatched parentheses, the string is not balanced.

    • Exa...

  • Answered by AI
Round 2 - HR 

(1 Question)

Round duration - 20 Minutes
Round difficulty - Medium

Interview

  • Q1. 

    Reverse Number Problem Statement

    Ninja is exploring new challenges and desires to reverse a given number. Your task is to assist Ninja in reversing the number provided.

    Note:

    If a number has trailing ze...

  • Ans. 

    Implement a function to reverse a given number, omitting trailing zeros.

    • Create a function that takes an integer as input and reverses it while omitting trailing zeros

    • Use string manipulation to reverse the number and remove any trailing zeros

    • Handle test cases where the number has leading zeros as well

    • Ensure the reversed number is printed for each test case on a new line

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaCGPA above 6.5 and no active backlogsAccenture interview preparation:Topics to prepare for the interview - Oops, dmbs, rdbms, mysql, SDLC, projects, data structure and basic electronics.Time required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : confidence is the key.
Tip 2 : focus on communication skills.
Tip 3 : be honest and well prepared about your projects and trainings .

Application resume tips for other job seekers

Tip 1 : it should be to the point.
Tip 2 : be honest. And one should know everything that is written down there.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Referral and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Puzzles, Psychometric Test

Round 2 - One-on-one 

(1 Question)

  • Q1. Some water in 3 Jars question, you had to measure out 5L correctly

Interview Preparation Tips

Interview preparation tips for other job seekers - Make the interview interactive, I got this input from another Senior. Before i went into the interview room the volunteers were telling all those who goes into Room No 1 is screwed. I was praying i don't get room no 1. But fortunately for me I got room no 1 because when the interviewer gave me the puzzle and handed over pen and paper he went back to relax his posture and when i explained i will fill the 5L Jar first, he immediately came forward to listen to me, at that moment i knew i got the job because i felt the previous candidates never made their interview interactive and that's why he went back to relax his posture.

BlueKaktus Interview FAQs

How many rounds are there in BlueKaktus DOT NET Developer interview?
BlueKaktus interview process usually has 1 rounds. The most common rounds in the BlueKaktus interview process are Technical.
What are the top questions asked in BlueKaktus DOT NET Developer interview?

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

  1. How do you handle errors in .n...read more
  2. what is appsettings.json fi...read more

Tell us how to improve this page.

BlueKaktus DOT NET Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Associate Software Engineer
14 salaries
unlock blur

₹4 L/yr - ₹12 L/yr

Implementation Consultant
12 salaries
unlock blur

₹4.2 L/yr - ₹7 L/yr

Software Developer
7 salaries
unlock blur

₹3.5 L/yr - ₹8.5 L/yr

Software Engineer
6 salaries
unlock blur

₹6 L/yr - ₹10 L/yr

Senior Implementation Consultant
5 salaries
unlock blur

₹6.7 L/yr - ₹8.2 L/yr

Explore more salaries
Compare BlueKaktus with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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