Upload Button Icon Add office photos

Filter interviews by

Cityinfo Services Interview Questions and Answers

Updated 4 Feb 2022

Cityinfo Services Interview Experiences

1 interview found

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic n ms office

Office Work and Computer Operator Interview Questions asked at other Companies

Q1. what is meant by human resource
View answer (2)

Jobs at Cityinfo Services

View all

Interview questions from similar companies

I was interviewed before Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Two coding questions were given in the first round to be solved in 60 minutes.

  • Q1. 

    Rearrange Array Elements Problem Statement

    Given an array A containing 'N' integers and an integer m, rearrange the elements of the array such that the differences between the array elements and m are sor...

  • Ans. 

    Rearrange array elements based on their differences from a given integer.

    • Calculate the differences between each element and the given integer.

    • Sort the elements based on their differences while maintaining the original order for elements with the same difference.

    • Implement a function to rearrange the array elements as per the given criteria.

  • Answered by AI
  • Q2. 

    Print Nodes at Distance K from a Given Node

    Given an arbitrary binary tree, a node of the tree, and an integer 'K', find all nodes that are at a distance K from the specified node, and return a list of th...

  • Ans. 

    The task is to find all nodes in a binary tree that are at a distance K from a given node.

    • Traverse the binary tree to find the given node

    • From the given node, perform a depth-first search to find all nodes at distance K

    • Use a list to store the values of the nodes at distance K

    • Return the list of values in any order

  • Answered by AI
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical round with questions based on DSA, DBMS, Computer Networking and project based questions.

  • Q1. 

    Triangle of Numbers Pattern

    Ninja is tasked with printing a triangle pattern based on a given number 'N' for any test case.

    Example:

    Input:
    N = 4
    Output:
       1
    232
    34545
    4567654

    Explanation:

    The pat...

  • Ans. 

    Print a triangle pattern of numbers based on a given number 'N'.

    • Iterate through each row and print the numbers accordingly

    • Use spaces to center-align the numbers in each row

    • Increment the numbers in each row as per the pattern

  • Answered by AI
  • Q2. What is the difference between a web server and an application server?
  • Ans. 

    Web server serves static content over HTTP, while application server runs dynamic content and business logic.

    • Web server handles HTTP requests and responses, serving static content like HTML, images, and CSS.

    • Application server executes business logic, runs dynamic content, and interacts with databases.

    • Web server examples include Apache, Nginx, while application server examples include Tomcat, JBoss.

    • Web server focuses on...

  • Answered by AI
  • Q3. How does the internet work?
  • Ans. 

    The internet is a global network of interconnected computers that communicate using standardized protocols.

    • The internet is made up of a vast number of interconnected networks of computers.

    • Data is transmitted over the internet using protocols such as TCP/IP.

    • Websites are hosted on servers connected to the internet, and users access them using web browsers.

    • Internet Service Providers (ISPs) provide access to the internet f...

  • Answered by AI
  • Q4. Write a SQL query to find the nth highest salary.
  • Ans. 

    SQL query to find the nth highest salary

    • Use the 'SELECT DISTINCT' statement to get unique salary values

    • Order the salaries in descending order using 'ORDER BY' clause

    • Use 'LIMIT' and 'OFFSET' to get the nth highest salary

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical HR round with behavioral problems.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Chitkara University. Eligibility criteriaAbove 7 CGPAInfo Edge India (Naukri.com) interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 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

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

Interview Preparation Tips

Round: Resume Shortlist
Experience: My resume got shortlisted through naukri.com .I got a call from ambitionbox.com and then i was asked to come for a face to face interview.

Round: HR Interview
Experience: Second round was HR Interview .In HR interview i was asked about my hobbies,my career goals,my ideas and about company and their Products.
Tips: Be calm and confident!

Round: Test
Experience: Third round was a writing test .i was asked to write about any topic in 5 minutes to check my writing skills and grammar sense
Tips: Be creative.

Round: Presentation
Experience: The fourth round was a presentation round in this i have to present about any topic(political,technical ,anything)in 10 minutes

General Tips: Be confident and creative ! stay calm and should apply presence of mind.the interviewer wanted to test both my knowledge and my communication skills.please go through the job description thoroughly.
Skills: Body Language, Problem Solving, Presentation Skills, Time Management, Decision Making Skills
Duration: <1 week

I applied via Naukri.com and was interviewed in Jul 2017. There were 4 interview rounds.

Interview Preparation Tips

Round: Test
Experience: i was asked to write about any topic just to check my writing skills

Round: presentation
Experience: I have to present a presentation about any topic in 5 mins

General Tips: Be confident,creative and expressive
Skills: Communication, Body Language, Analytical Skills, Leadership, Presentation Skills, Time Management
Duration: <1 week

I applied via Recruitment Consultant and was interviewed before May 2018. There was 0 interview round.

Interview Preparation Tips

General Tips: 1-Tell me about your self
2- Why you join sales
3- why you left your last organisation
4-how you managed your TL pressure
5-why should i hire you
6-what is your roles & responsibilities in your last company
5-how you spend your last week
6-tell me you weakness
7-what is your strengths
Skills: Communication, Body Language, Presentation Skills
Duration: <1 week

I was interviewed in Sep 2016.

Interview Questionnaire 

9 Questions

  • Q1. Questions on DBMS like find the 2nd maximum salary of employee
  • Q2. A table was given and i need Normalize it
  • Q3.  join, groupby queries on a given table
  • Q4. Question related to Computer Networks like how internet works
  • Q5. What is web server and application server
  • Ans. 

    Web server handles HTTP requests and responses, while application server executes application logic.

    • Web server serves static content like HTML, CSS, JS files

    • Application server executes dynamic code like Java, Python, Ruby

    • Web server communicates with client, application server communicates with database

    • Examples of web servers: Apache, Nginx, IIS

    • Examples of application servers: Tomcat, JBoss, WebSphere

  • Answered by AI
  • Q6. Coding question to print a given pattern
  • Q7. Proper discussion on my projects that were mentioned in the resume. They usually ask to make class diagram, ER diagram of project etc.
  • Q8. Firstly HR asked to introduce yourself
  • Q9. Then he asked simple questions like why u want to join this company, my family background, asked about hobbies, academic achievements etc

Interview Preparation Tips

Round: Test
Experience: Two coding questions were given in the 1st round
1)find nodes at kth distance from root node
2)arrange a given array in min-max sequence
Duration: 1 hour
Total Questions: 2

College Name: Thapar University, Patiala

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Dec 2015. There were 5 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Reverse a linked list
  • Ans. 

    Reverse a linked list

    • Iteratively swap the next and previous pointers of each node

    • Use three pointers to keep track of the current, previous, and next nodes

    • Update the head pointer to the last node after reversing

  • Answered by AI
  • Q2. Object Oriented Programming
  • Q3. Database questions
  • Q4. What do you like about this company
  • Ans. 

    I appreciate the company's commitment to innovation and employee development.

    • Strong focus on innovation in software development

    • Opportunities for professional growth and development

    • Positive company culture and work environment

  • Answered by AI
  • Q5. Why do you want to work here
  • Ans. 

    I am impressed by the company's innovative projects and collaborative work environment.

    • Impressed by innovative projects

    • Desire to work in a collaborative environment

    • Excited about potential for growth and learning opportunities

  • Answered by AI
  • Q6. Long term goals

Interview Preparation Tips

Round: Test
Experience: Simple aptitude test where they filtered out 2/3 of the applicants (12-15 selected out of 30)
Duration: 1 hour
Total Questions: 40

Round: Technical Interview
Experience: General questions about you, your projects etc.
The linked list question, you can write in any language you like.
OOP concepts like how it is implemented in your favourite language.

Round: Technical Interview
Experience: Your thoughts on designing a database for a company that aggregates jobs from any available source.
The schema for the database and your reason for it.

Round: HR Interview
Experience: Standard HR questions

College Name: Shiv Nadar University, Dadri

Skills evaluated in this interview

I applied via Referral and was interviewed in May 2017. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What Is job timing
  • Q2. What is salray cycl
  • Ans. 

    Salary cycle refers to the frequency at which employees are paid, such as weekly, bi-weekly, or monthly.

    • Salary cycle can vary depending on the company's policies and practices.

    • Common salary cycles include weekly, bi-weekly (every two weeks), semi-monthly (twice a month), and monthly.

    • Some companies may also offer different salary cycles for different employee groups, such as hourly vs. salaried employees.

    • Understanding t...

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: I do have 5yrs exp in sales i used to worked with many big company

General Tips: I gave interview coz of my skill as per my skill i got selected
Skills: Gd&t Symbols, Sales, Communication, Body Language, Problem Solving, Leadership, Presentation Skills, Time Management, Decision Making Skills
Duration: <1 week

I applied via Referral and was interviewed before Mar 2017. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Interview taken by hr
  • Q2. Myself, previous company, Experience

Interview Preparation Tips

Round: Test
Experience: Aptitude test

Round: Resume Shortlist
Experience: I had given interview infront of Naveen Kumar Gagwani.
He short listed my cv

Round: Case Study Interview
Experience: The interviewer asked me
Can you sell me a mobile
And I sold him.

General Tips: It's has a selection procedure.
You can attend interview with good level of confidence.
Skills: MARKETING APTITUDE, Marketing, Communication, Body Language, Problem Solving, Analytical Skills, Presentation Skills
Duration: <1 week

I applied via Naukri.com and was interviewed before Mar 2017. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. About Previous profile. The challenges in professional life
  • Q2. How long you would like to work in the company
  • Ans. 

    I am looking to establish a long-term career with the company and grow professionally.

    • I am committed to contributing to the company's success for the foreseeable future

    • I am eager to take on new challenges and responsibilities within the organization

    • I value stability and growth opportunities in my career

  • Answered by AI
  • Q3. About CTC

Interview Preparation Tips

Round: Resume Shortlist
Experience: Based on education and previous work experience.

Skills: Communication, Body Language, Analytical Skills, Presentation Skills
Duration: >3 Months

Cityinfo Services Interview FAQs

How to prepare for Cityinfo Services 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 Cityinfo Services. The most common topics and skills that interviewers at Cityinfo Services expect are B2B Sales, Corporate Sales, Business Development, Lead Generation and Cold Calling.

Tell us how to improve this page.

Interview Questions from Similar Companies

JustDial Interview Questions
3.5
 • 328 Interviews
Info Edge Interview Questions
3.9
 • 317 Interviews
Matrimony.com Interview Questions
4.2
 • 88 Interviews
HT Media Interview Questions
3.3
 • 49 Interviews
Network 18 Interview Questions
3.5
 • 26 Interviews
India TV Interview Questions
3.4
 • 1 Interview
View all

Cityinfo Services Reviews and Ratings

based on 27 reviews

4.4/5

Rating in categories

4.2

Skill development

4.3

Work-life balance

4.3

Salary

4.4

Job security

4.3

Company culture

4.2

Promotions

4.2

Work satisfaction

Explore 27 Reviews and Ratings
Real Estate Transaction Manager Bengaluru, Pune, Hyderabad & Chennai

Hyderabad / Secunderabad,

Gurgaon / Gurugram

+1

3-7 Yrs

Not Disclosed

Corporate Sales Manager - Hyderabad, Pune Mumbai ,Chennai & Bangalore

Hyderabad / Secunderabad,

Chennai

+1

2-7 Yrs

Not Disclosed

Business Development Manager- Bangalore, Hyderabad , Chennai & Mumbai

Hyderabad / Secunderabad,

Chennai

+1

1-6 Yrs

Not Disclosed

Explore more jobs
Senior Manager
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Development Manager
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager- Corporate Sales
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Analyst
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Development Executive
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Cityinfo Services with

Info Edge

3.9
Compare

JustDial

3.5
Compare

Indiamart Intermesh

3.6
Compare

Network 18

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