Upload Button Icon Add office photos
Engaged Employer

i

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

Citytech Software Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Citytech Software Interview Questions and Answers

Updated 18 Aug 2024

Citytech Software Interview Experiences

Popular Designations

3 interviews found

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

(2 Questions)

  • Q1. Explain OOPs concept
  • Ans. 

    OOPs concept is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOPs stands for Object-Oriented Programming

    • It focuses on creating objects that interact with each other to solve a problem

    • Key principles include encapsulation, inheritance, polymorphism, and abstraction

    • Examples of OOP languages include Java, C++, and C#

  • Answered by AI
  • Q2. Sealed class, abstract class

DOT NET Developer Interview Questions asked at other Companies

Q1. What is the difference between windows application development and web based development?
View answer (12)

I applied via Naukri.com and was interviewed in Jul 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic oops based questions and programming concepts.
  • Q2. .Net basic basic question and mvc life cycle.

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview experience was very good.Interviwer and other team members are very friendly.After first round they will take machine test.

.NET Software Developer Interview Questions asked at other Companies

Q1. Can sealed class inherit non-profit sealed class
View answer (4)

Software Engineer Interview Questions & Answers

user image Pulak Chandra

posted on 10 Jul 2020

Interview Questionnaire 

2 Questions

  • Q1. Basic opps concept, sql server, c#
  • Q2. Machine test. ...grid

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (219)

Jobs at Citytech Software

View all

Interview questions from similar companies

I applied via Referral and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself
Round 2 - Technical 

(1 Question)

  • Q1. 1 Project Explanation 2 SDLC & STLC. 3 Differentiate Smoke vs Sanity 4 What is Regression testing? 5 Bug life cycle. 6 Scenarios on real time example. 7 Questions on agile
  • Ans. 

    Interview questions for Software Engineer position

    • Project explanation should include details on the project's purpose, scope, and technologies used

    • SDLC (Software Development Life Cycle) and STLC (Software Testing Life Cycle) are methodologies used in software development and testing respectively

    • Smoke testing is a type of testing that checks if the basic functionalities of the software are working fine, while Sanity tes...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. All basic HR questions and salary discussion.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Oct 2022. There were 5 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 

Duration is around 1 hour

Round 3 - Technical 

(1 Question)

  • Q1. 1. Basic programming concepts 2. OOP concepts and basic problem solving skills
Round 4 - Technical 

(1 Question)

  • Q1. Programming question
Round 5 - HR 

(1 Question)

  • Q1. 1. Basic questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Second largest number in an array
  • Ans. 

    Find the second largest number in an array of strings.

    • Convert the strings to numbers for comparison.

    • Sort the array in descending order.

    • Return the second element in the sorted array.

  • Answered by AI
  • Q2. Pairs with given sum
  • Ans. 

    Find pairs in an array that sum up to a given target value.

    • Use a hash set to store the difference between the target value and each element in the array.

    • Iterate through the array and check if the current element's complement exists in the hash set.

    • Return the pairs that sum up to the target value.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. OOPS based questions
  • Q2. Basic language based questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is single page application
  • Ans. 

    Single page application is a web application that loads a single HTML page and dynamically updates the content as the user interacts with the app.

    • SPA uses AJAX and HTML5 to create fluid and responsive user experience.

    • It eliminates the need for page reloading during use, making it faster and more efficient.

    • Examples include Gmail, Facebook, and Google Maps.

  • Answered by AI
  • Q2. What is state management
  • Ans. 

    State management is the process of managing the state of an application, including data flow, user interface updates, and user interactions.

    • State management involves storing and updating the state of an application to ensure data consistency.

    • It helps in managing user interface updates based on changes in the application state.

    • State management is crucial for handling user interactions and maintaining a seamless user exp...

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Questions regards node js and java script concept, event loop, why node is single threaded, how event loop works in node js, database queries and previous work experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview experience was absolutely amazing and fantastic.
Advice:
Answer question with confidence.
Feel comfortable with interviewer.

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

Interview Questionnaire 

4 Questions

  • Q1. To find if a number is Prime or not and optimise your written code.
  • Ans. 

    Check if a number is prime and optimize the code.

    • Start by checking if the number is less than 2, in which case it is not prime.

    • Iterate from 2 to the square root of the number and check if any of them divide the number evenly.

    • If a divisor is found, the number is not prime. Otherwise, it is prime.

  • Answered by AI
  • Q2. Css question related to flex box, Grid and cross browser compatibility
  • Q3. To call an API in react and optimise your written code.
  • Ans. 

    To optimise API calls in React, use asynchronous functions and caching techniques.

    • Use async/await to handle API calls

    • Implement caching to reduce network requests

    • Use memoization to avoid unnecessary re-renders

    • Consider using a state management library like Redux

    • Use performance profiling tools like React DevTools

  • Answered by AI
  • Q4. Questions on JS concepts like Objects and Prototype Inheritance.

Interview Preparation Tips

Interview preparation tips for other job seekers - Know your basic concepts and prepare well for the interview.

Skills evaluated in this interview

Citytech Software Interview FAQs

How many rounds are there in Citytech Software interview?
Citytech Software interview process usually has 1 rounds. The most common rounds in the Citytech Software interview process are Technical.
How to prepare for Citytech Software 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 Citytech Software. The most common topics and skills that interviewers at Citytech Software expect are JQuery, Javascript, SQL, PHP and Ajax.
What are the top questions asked in Citytech Software interview?

Some of the top questions asked at the Citytech Software interview -

  1. Explain OOPs conc...read more
  2. Basic oops based questions and programming concep...read more
  3. .Net basic basic question and mvc life cyc...read more

Tell us how to improve this page.

Citytech Software Interview Process

based on 4 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Webdew Interview Questions
4.5
 • 106 Interviews
HyScaler Interview Questions
4.5
 • 92 Interviews
Quantsapp Interview Questions
2.8
 • 35 Interviews
Appsierra Interview Questions
4.4
 • 30 Interviews
View all

Citytech Software Reviews and Ratings

based on 42 reviews

4.1/5

Rating in categories

3.9

Skill development

3.9

Work-life balance

4.1

Salary

4.3

Job security

3.8

Company culture

3.9

Promotions

4.0

Work satisfaction

Explore 42 Reviews and Ratings
Technical Project Manager

Kolkata

10-20 Yrs

Not Disclosed

Explore more jobs
Software Developer
23 salaries
unlock blur

₹3 L/yr - ₹9.6 L/yr

Senior Software Developer
16 salaries
unlock blur

₹4 L/yr - ₹10 L/yr

Software Engineer
11 salaries
unlock blur

₹2.2 L/yr - ₹9.4 L/yr

UI UX and Graphic Designer
9 salaries
unlock blur

₹3.6 L/yr - ₹3.6 L/yr

System Administrator
7 salaries
unlock blur

₹3 L/yr - ₹4.4 L/yr

Explore more salaries
Compare Citytech Software with

Accel Frontline

4.0
Compare

Northcorp Software

4.3
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.7
Compare

HyScaler

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