Upload Button Icon Add office photos

Citco

Compare button icon Compare button icon Compare

Filter interviews by

Citco Junior .NET Developer Interview Questions, Process, and Tips

Updated 18 Mar 2024

Citco Junior .NET Developer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Coding Test 

2 coding questions were given with 40 min time limit

Round 2 - Technical 

(5 Questions)

  • Q1. Difference between ref, out params
  • Ans. 

    ref and out are both used for passing arguments by reference in C#, but out parameters are not required to be initialized before being passed.

    • ref parameters must be initialized before being passed to a method, while out parameters do not need to be initialized

    • out parameters are typically used for returning multiple values from a method

    • ref parameters can be used for both input and output, while out parameters are typica

  • Answered by AI
  • Q2. Realtime example of static class
  • Ans. 

    A static class is a class that cannot be instantiated and is used to group related methods and properties.

    • Static classes are commonly used for utility classes that contain helper methods.

    • They are also used for defining extension methods.

    • Example: Math class in C# contains static methods like Math.Max() and Math.Min().

  • Answered by AI
  • Q3. Difference between first, single
  • Ans. 

    First returns the first element of a sequence, while Single returns the only element of a sequence or throws an exception if there is not exactly one element.

    • First is used to retrieve the first element of a sequence, while Single is used to retrieve the only element of a sequence.

    • First does not throw an exception if there are no elements in the sequence, while Single throws an exception in this case.

    • Example: var number...

  • Answered by AI
  • Q4. What is interface
  • Ans. 

    An interface in .NET is a reference type that defines a contract for classes to implement certain methods and properties.

    • Interfaces contain method signatures but no implementation.

    • Classes can implement multiple interfaces.

    • Interfaces are used for achieving abstraction and multiple inheritance in .NET.

    • Example: 'IComparable' interface in C# is used for comparing objects.

  • Answered by AI
  • Q5. Difference between authentication, authorization
  • Ans. 

    Authentication verifies the identity of a user, while authorization determines what actions a user is allowed to perform.

    • Authentication confirms the user's identity through credentials like username and password.

    • Authorization controls the access rights of authenticated users to specific resources or actions.

    • Example: Logging into a website with a username and password is authentication. Accessing certain pages or featur

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good on basics

Skills evaluated in this interview

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: The first round was an online test with maths, logic and english questions. If you have prepared for any of the standardised tests (GMAT, GRE, CAT etc.), the test would be pretty simple. And try to answer as many questions as possible.
Tips: It would be really helpful if you give atleast your first attempt to any of the exams like GMAT, GRE etc. This is only for the online test because the pattern is quite similar to GMAT. For the interviews, be prepared for a set of standard questions asked during interviews that you can easily find online.

General Tips: Be prepared to spend all day at the interviews. You might not even get a lunch break. Sometimes the interview calls are late at night and also extend upto 2-3am. Be alert during the Pre-placement talk because the interviewers ask you questions from that too. I would advice you to ask questions to the interviewer when asked to regarding the company.
Don't write fake stuff in resume. At max you can exaggerate a bit in your CV. The panel does question you on your CV. Everything in it must be justified.
Skills:
College Name: NIT Surathkal

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

Interview Questionnaire 

2 Questions

  • Q1. What synchronous and asynchronous means??
  • Ans. 

    Synchronous means happening at the same time, while asynchronous means not happening at the same time.

    • Synchronous operations occur in real-time, while asynchronous operations can be delayed or queued.

    • Synchronous operations block the program until they are completed, while asynchronous operations allow the program to continue running.

    • Examples of synchronous operations include function calls and loops, while examples of ...

  • Answered by AI
  • Q2. When to use CTE and temp table.
  • Ans. 

    CTE and temp table usage in SQL

    • Use CTE for recursive queries and complex subqueries

    • Use temp tables for large data sets and complex queries

    • CTE is more efficient for small data sets

    • Temp tables can be indexed for faster performance

    • Consider the scope and lifespan of the data when choosing between CTE and temp table

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand question first and answer.

I applied via Recruitment Consulltant and was interviewed before Jan 2021. There were 2 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 

Python coding test

Interview Preparation Tips

Topics to prepare for Deloitte Software Developer interview:
  • Python
Interview preparation tips for other job seekers - always practice coding
ex: python, java etc

I applied via Naukri.com and was interviewed in Nov 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was moderate one

Round 2 - Coding Test 

Hard one

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep going never stop, one day God will be with you

Interview Questionnaire 

1 Question

  • Q1. Basics questions on SAP

Interview Preparation Tips

Interview preparation tips for other job seekers - Recomend, not to join this company. what they promise and what they provide is totally irrelevant. No ethics.

I was interviewed in Jan 2021.

Round 1 - HR 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Medium

This round happened on the same day as JAM in the afternoon time. A slot of 20 minutes with respective timing was already sent to the selected students. Interview can’t be generalize as anything can happen over there and hence this was exclusively my experience. 
To have a quick judgement about the person, I believe nothing is better than throwing before him/her some puzzles (mathematical/ analytical/ programming problems) and see the approach. I received back-to-back 4 problems after a quick and brief introduction. The coding problems I got were way too easy (just basics: searching & mathematical). The harder part of this round was the puzzles (tricky, mathematical, related to probability). At last, I was asked a question on DBMS and the interviewer asked if I know JAVA.

  • Q1. 

    Search an Element in a Sorted Array

    Given a sorted array 'A' of 'N' integers, determine whether a number 'X' exists within this array for a series of queries. For each query, print 1 if 'X' exists in the ...

  • Ans. 

    Search for a number in a sorted array and determine its existence for multiple queries.

    • Use binary search algorithm to efficiently search for each query integer in the sorted array.

    • For each query integer 'X', check if it exists in the array 'A' and output 1 if found, 0 otherwise.

    • Ensure the array 'A' is sorted in non-decreasing order to apply binary search effectively.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaNo criteriaDeloitte interview preparation:Topics to prepare for the interview - Data Structures, C++, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 12 MonthsInterview preparation tips for other job seekers

Tip 1 : Mention some good projects on your resume.
Tip 2 : Practice competitive and aptitude questions.
Tip 3 : Work on your communication skills.

Application resume tips for other job seekers

Tip 1 : Mention some good projects on your resume.
Tip 2 : Don't put false things on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in May 2017.

Interview Questionnaire 

6 Questions

  • Q1. Can string class be extended
  • Ans. 

    Yes, the string class can be extended in most programming languages.

    • Inheritance can be used to extend the functionality of the string class.

    • By creating a new class that inherits from the string class, additional methods and properties can be added.

    • Extending the string class allows for customization and adding specific functionality to strings.

    • Example: In Python, the string class can be extended by creating a new class

  • Answered by AI
  • Q2. What are the implecit object in JSP
  • Ans. 

    Implicit objects in JSP are predefined objects that are available for use without any declaration or initialization.

    • Implicit objects in JSP include request, response, session, application, out, config, pageContext, page, exception, and others.

    • These objects provide access to various aspects of the JSP environment and can be used to perform common tasks.

    • For example, the request object allows access to HTTP request parame...

  • Answered by AI
  • Q3. How does hash map works
  • Ans. 

    A hash map is a data structure that uses a hash function to map keys to values.

    • Hash map stores key-value pairs

    • It uses a hash function to compute an index for each key

    • Collisions can occur when two keys hash to the same index

    • Hash maps provide fast access to values based on their keys

  • Answered by AI
  • Q4. Difference between string buffer and string builder
  • Ans. 

    StringBuffer and StringBuilder are both used to manipulate strings, but StringBuffer is thread-safe while StringBuilder is not.

    • StringBuffer is synchronized, making it safe for use in multi-threaded environments.

    • StringBuilder is not synchronized, making it faster but not thread-safe.

    • StringBuffer is preferred when multiple threads are involved, while StringBuilder is preferred for single-threaded scenarios.

    • Both classes p...

  • Answered by AI
  • Q5. What is MVC
  • Ans. 

    MVC is a software architectural pattern that separates an application into three main components: Model, View, and Controller.

    • Model represents the data and business logic of the application.

    • View is responsible for displaying the user interface.

    • Controller handles user input, updates the model, and interacts with the view.

    • MVC promotes separation of concerns and modularity in software development.

    • Example: In a web applica...

  • Answered by AI
  • Q6. What are the annotation used in RESTFULL web services
  • Ans. 

    Annotations used in RESTful web services

    • 1. @Path - Specifies the URI path for the resource

    • 2. @GET - Specifies that the method handles HTTP GET requests

    • 3. @POST - Specifies that the method handles HTTP POST requests

    • 4. @PUT - Specifies that the method handles HTTP PUT requests

    • 5. @DELETE - Specifies that the method handles HTTP DELETE requests

    • 6. @PathParam - Binds the value of a URI template parameter to a method paramete...

  • Answered by AI

Interview Preparation Tips

Skills: Java Application Development

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 Oct 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Two easy code ,basic array string

Round 2 - Technical 

(2 Questions)

  • Q1. Coding question
  • Q2. Oops, dbms,sql,
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It had medium to difficult apitude questions. Make sure to practice hard.

Round 2 - Coding Test 

It had medium .level questions in it

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice more

Citco Interview FAQs

How many rounds are there in Citco Junior .NET Developer interview?
Citco interview process usually has 2 rounds. The most common rounds in the Citco interview process are Coding Test and Technical.
How to prepare for Citco Junior .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 Citco. The most common topics and skills that interviewers at Citco expect are ASP.Net MVC, JIRA, SDLC, SQL and Scrum.
What are the top questions asked in Citco Junior .NET Developer interview?

Some of the top questions asked at the Citco Junior .NET Developer interview -

  1. Difference between authentication, authorizat...read more
  2. Difference between ref, out par...read more
  3. Difference between first, sin...read more

Tell us how to improve this page.

Citco Junior .NET Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Deloitte Interview Questions
3.8
 • 2.8k Interviews
PwC Interview Questions
3.4
 • 1.4k Interviews
Ernst & Young Interview Questions
3.4
 • 1.1k Interviews
KPMG India Interview Questions
3.5
 • 787 Interviews
ZS Interview Questions
3.4
 • 449 Interviews
BNY Interview Questions
3.9
 • 340 Interviews
BCG Interview Questions
3.7
 • 196 Interviews
SS&C TECHNOLOGIES Interview Questions
3.4
 • 169 Interviews
View all
Supervisor
896 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Fund Accountant
789 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Fund Accountant
544 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Operations Analyst
405 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Vice President
372 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Citco with

Northern Trust

3.7
Compare

State Street Corporation

3.7
Compare

BNY

3.9
Compare

SS&C TECHNOLOGIES

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