Upload Button Icon Add office photos
Premium Employer

i

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

Clarion Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clarion Technologies DOT NET Developer Interview Questions, Process, and Tips

Updated 23 Mar 2023

Clarion Technologies DOT NET Developer Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed in Feb 2023. 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 

(7 Questions)

  • Q1. Basic question from C#, SQL, NET CORE MVC and JavaScript.
  • Q2. What is Layout? what is Area?
  • Ans. 

    Layout defines the structure of a web page while Area is a way to organize related functionality in an ASP.NET MVC application.

    • Layout specifies the position of elements on a web page.

    • Area is a logical grouping of controllers, views, and models in an MVC application.

    • Layout can be shared across multiple pages while Area is specific to a particular section of the application.

    • Layout can be defined using HTML, CSS, and Java...

  • Answered by AI
  • Q3. What is filter? How to add custom filter? How to configure middleware?
  • Ans. 

    Filters are used to manipulate incoming and outgoing requests. Custom filters can be added and middleware can be configured to handle them.

    • Filters are used to modify or validate incoming and outgoing requests in ASP.NET Core.

    • Custom filters can be added by creating a class that implements IFilterMetadata interface.

    • Middleware can be configured to handle filters using the UseFilter extension method.

    • Filters can be used for...

  • Answered by AI
  • Q4. How to use transaction in EF Core?
  • Ans. 

    EF Core supports transactions using the DbContext class.

    • Create a new instance of DbContextTransaction using BeginTransaction method of DbContext.

    • Perform database operations within the transaction using SaveChanges method of DbContext.

    • Commit the transaction using Commit method of DbContextTransaction or rollback using Rollback method.

    • Example: using (var transaction = context.Database.BeginTransaction()) { ... }

  • Answered by AI
  • Q5. How to create automated jobs in application?
  • Ans. 

    Automated jobs can be created using scheduling tools or by writing custom code to run at specific intervals.

    • Use scheduling tools like Windows Task Scheduler or Cron to run jobs at specific intervals

    • Write custom code using libraries like Quartz.NET or Hangfire to schedule and run jobs

    • Jobs can perform tasks like data backups, sending emails, or running reports

  • Answered by AI
  • Q6. What is globalization? How to support multiple languages in application?
  • Ans. 

    Globalization is the process of designing and developing applications that can be used in multiple languages and cultures.

    • Use resource files to store text in different languages

    • Use Unicode encoding to support different character sets

    • Use culture-specific formatting for dates, times, and numbers

    • Test the application with different languages and cultures to ensure proper functionality

  • Answered by AI
  • Q7. How to handle exception in JavaScript?
  • Ans. 

    Use try-catch block to handle exceptions in JavaScript.

    • Wrap the code that may throw an exception inside a try block.

    • Catch the exception using catch block and handle it appropriately.

    • Use finally block to execute code that should run regardless of whether an exception was thrown or not.

    • Throw custom exceptions using throw keyword.

    • Use console.log() to log the error message for debugging purposes.

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. It will start from 10th to you current company, all about proud moment, achievements, etc. why did you resign from all the previous company? What are strength and weakness? What mistakes you did in the pre...

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview process was good and got selected. But declined the offer due to low CTC, policies and HR's behavior. They scheduled 1st round with whatever CTC I was expecting(Let X in my case). After 1st round, HR called me and said they can offer max (X-2) CTC. Also I have to sign legal agreement that I will join Clarion after notice period and have to stay for at least 6 months. I agreed for it and then only she scheduled managerial round. After selected in managerial round, she again called and said they can only offer (X-4) CTC. Also I have to pay 2 Months Gross salary If don't join Clarion.
So if you are attending interview and selected, then go through your offer letter properly before signing the legal agreement. Otherwise you will be in trouble.
And @Clarion , if you don't agree with candidate's expected CTC, then don't schedule any interview. At least don't change your promised CTC after every round. Please don't waste our time.

Skills evaluated in this interview

DOT NET Developer Jobs at Clarion Technologies

View all

Interview questions from similar companies

I appeared for an interview before Mar 2021.

Round 1 - Coding Test 

Round duration - 30 minutes
Round difficulty - Medium

This was a MCQ round. 30 ques in 30 mins consisting of difficult quantitative aptitude questions were to be solved.

Round 2 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

In this test round, 2 coding questions were given. Either write the code or pseudo code

  • Q1. 

    N Queens Problem

    Given an integer N, find all possible placements of N queens on an N x N chessboard such that no two queens threaten each other.

    Explanation:

    A queen can attack another queen if they ar...

  • Ans. 

    The N Queens Problem involves finding all possible placements of N queens on an N x N chessboard without threatening each other.

    • Use backtracking algorithm to explore all possible configurations.

    • Keep track of rows, columns, and diagonals to ensure queens do not threaten each other.

    • Generate all valid configurations and print them out.

  • Answered by AI
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an array of 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of 0s, 1s, and 2s while traversing the array.

    • Swap elements based on the values encountered to sort the array in-place.

    • Time complexity should be O(N) and space complexity should be O(1).

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical round with questions on DSA.

  • Q1. 

    Reverse Words in a String: Problem Statement

    You are given a string of length N. Your task is to reverse the string word by word. The input may contain multiple spaces between words and may have leading o...

  • Ans. 

    Reverse words in a string while handling leading, trailing, and multiple spaces.

    • Split the input string by spaces to get individual words

    • Reverse the order of the words

    • Join the reversed words with a single space in between

  • Answered by AI
  • Q2. 

    Circular Linked List Detection

    You are provided with the head of a linked list containing integers. Your task is to determine if the linked list is circular.

    Note:
    • A linked list is considered circula...
  • Ans. 

    Detect if a given linked list is circular by checking if it forms a closed loop.

    • Traverse the linked list using two pointers, one moving at double the speed of the other.

    • If the two pointers meet at any point, the linked list is circular.

    • If the faster pointer reaches the end of the list (NULL), the linked list is not circular.

  • Answered by AI
Round 4 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round with typical behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMAQ Software interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 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
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Recruitment Consulltant and was interviewed in Jul 2023. 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 - Coding Test 

Arrays, basics. easy, some important topics in python and sql

Round 3 - Technical 

(2 Questions)

  • Q1. SQL basics question learned in online or self
  • Q2. Joins, groupby, clause, projection, having

Interview Preparation Tips

Interview preparation tips for other job seekers - do well

I applied via Naukri.com and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basics of Java ,MySQL
  • Q2. For java do all object oriented programming (oops) concept very deeply
  • Q3. For mysql do all basics commands and query

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong basic theoretical and practical knowledge required
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Online aptitude test on basic mcqs

Round 2 - Technical 

(4 Questions)

  • Q1. Core java, springboot, microservices, mysql questions
  • Q2. Oops, collections questions
  • Q3. Multithreading questions
  • Q4. Exception questions

Interview Preparation Tips

Interview preparation tips for other job seekers - mid level difficulty
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is four pillars of oops concepts
  • Ans. 

    Encapsulation, Inheritance, Polymorphism, Abstraction

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

    • Inheritance: Ability of a class to inherit properties and behavior from another class

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

    • Abstraction: Hiding the complex implementation details and showing only the necessary features

  • Answered by AI
  • Q2. Different between array and collection
  • Ans. 

    Arrays are fixed in size and store elements of the same data type, while collections are dynamic in size and can store elements of different data types.

    • Arrays have a fixed size, while collections can dynamically resize.

    • Arrays store elements of the same data type, while collections can store elements of different data types.

    • Arrays use indexes to access elements, while collections use iterators or other methods.

    • Examples:...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. OOPS , multi thread, exception
  • Q2. Java 8 features

Interview Preparation Tips

Interview preparation tips for other job seekers - Need good knowledge of core java
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Moderate round . Easy to clear

Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain stream api
  • Ans. 

    Stream API is a feature in Java that allows processing collections of objects in a functional style.

    • Stream API provides a way to perform operations on a collection of objects in a declarative way.

    • It supports functional-style operations like map, filter, reduce, and forEach.

    • Streams can be created from various sources like collections, arrays, or I/O channels.

    • Stream operations are lazy, meaning they are only executed whe...

  • Answered by AI
  • Q2. Data base connection in sprinh boot
  • Ans. 

    Database connection in Spring Boot is configured using application.properties or application.yml file.

    • Define database connection properties in application.properties or application.yml file

    • Use @EnableJpaRepositories annotation to enable JPA repositories

    • Use @Entity annotation to define entity classes

    • Use @Autowired annotation to inject the DataSource or EntityManager

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why you want to join in mgs
  • Ans. 

    I want to join MGS because of its reputation for cutting-edge technology and innovative projects.

    • Exciting opportunities for growth and learning

    • Strong focus on technology and innovation

    • Desire to work with talented and passionate individuals

    • Alignment with company values and culture

  • Answered by AI
  • Q2. Notice period days

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice more in coding

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Aug 2023. 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 

There was aptitude test in the first round, They were mainly quantitative, English questions..
And we had coding questions (3 questions) and they were medium questions..

Round 3 - System Design 

(2 Questions)

  • Q1. We had given a problem statement, and we had to write down the solution (technical solution) and it was pen and paper based..
  • Q2. Emergency traffic signal system, in case of ambulance
Round 4 - HR 

(1 Question)

  • Q1. They asked mainly based on the system design which we had written and about our projects etc...
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The first round of the interview includes Data Structures and Algorithms (DSA).

Round 2 - Coding Test 

The second round of interviews involves a project.

Clarion Technologies Interview FAQs

How many rounds are there in Clarion Technologies DOT NET Developer interview?
Clarion Technologies interview process usually has 3 rounds. The most common rounds in the Clarion Technologies interview process are Resume Shortlist, Technical and Behavioral.
How to prepare for Clarion 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 Clarion Technologies. The most common topics and skills that interviewers at Clarion Technologies expect are Javascript, Entity Framework, HTML, JQuery and MVC.
What are the top questions asked in Clarion Technologies DOT NET Developer interview?

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

  1. what is filter? How to add custom filter? How to configure middlewa...read more
  2. What is globalization? How to support multiple languages in applicati...read more
  3. How to create automated jobs in applicati...read more

Tell us how to improve this page.

Clarion Technologies DOT NET Developer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

MAQ Software Interview Questions
1.9
 • 101 Interviews
Webkul Software Interview Questions
3.9
 • 62 Interviews
Softenger Interview Questions
4.1
 • 52 Interviews
View all
Senior Software Engineer
142 salaries
unlock blur

₹6 L/yr - ₹22 L/yr

Software Engineer
100 salaries
unlock blur

₹3.5 L/yr - ₹14 L/yr

Softwaretest Engineer
43 salaries
unlock blur

₹3.6 L/yr - ₹6.8 L/yr

Software Developer
31 salaries
unlock blur

₹4.1 L/yr - ₹11.5 L/yr

QA Engineer
29 salaries
unlock blur

₹2.5 L/yr - ₹8 L/yr

Explore more salaries
Compare Clarion Technologies with

Tekwissen

4.8
Compare

Softenger

4.1
Compare

XcelServ Solutions

4.5
Compare

Damco Solutions

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