Upload Button Icon Add office photos
Engaged Employer

i

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

CI Infotech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

CI Infotech Senior Engineer Interview Questions and Answers

Updated 24 May 2024

CI Infotech Senior Engineer Interview Experiences

1 interview found

Senior Engineer Interview Questions & Answers

user image Javahar Manu Sharma

posted on 24 May 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What do you know about DHCP?
  • Ans. 

    DHCP stands for Dynamic Host Configuration Protocol, used to automatically assign IP addresses to devices on a network.

    • DHCP is used to assign IP addresses, subnet masks, default gateways, and other network parameters to devices on a network.

    • It helps in reducing the administrative workload of manually assigning IP addresses to each device.

    • DHCP operates based on a client-server model, where a DHCP server manages a pool o...

  • Answered by AI
  • Q2. What do you know about Domain?
  • Ans. 

    A domain is a group of computers, servers, and devices that are interconnected and share common rules and procedures.

    • Domains are used to manage and organize network resources.

    • They help in controlling access to resources and ensuring security.

    • Examples of domains include Active Directory domains in Windows environments and DNS domains for websites.

  • Answered by AI
  • Q3. What is IP Address and what is work IP Address?
  • Ans. 

    An IP Address is a unique numerical label assigned to each device connected to a computer network.

    • IP Address stands for Internet Protocol Address.

    • It is used to identify and locate devices on a network.

    • There are two types of IP Addresses - IPv4 and IPv6.

    • Example of IPv4 Address: 192.168.1.1

    • Example of IPv6 Address: 2001:0db8:85a3:0000:0000:8a2e:0370:7334

  • Answered by AI

Interview Preparation Tips

Topics to prepare for CI Infotech Senior Engineer interview:
  • Computer Networking
Interview preparation tips for other job seekers - Work hard and manage team work.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Python file handling, input,output, in a file, Sql joins, list sort in python, basics of GIS, Web service how to test

Interview Preparation Tips

Interview preparation tips for other job seekers - This is hust basics not deep dive, strog ur basics to crack

I appeared for an interview before May 2016.

Interview Preparation Tips

Round: Test
Experience: The first round had two programming questions and one question of database concepts.
Duration: 1 hour
Total Questions: 3

Round: Technical Interview
Experience: In the first technical interview, I was asked basic questions about the domain and my resume. There was also a lot of emphasis on problem solving abilities since I was asked to solve some puzzles.

Round: Technical Interview
Experience: The second technical interview was a written round where I was asked to code some searching / sorting variants , to test my ability to write quality code.

Round: Technical Interview
Experience: The last and the final round was probably the toughest and I was asked to design databases, with some constraints. I was given ample time to do it and it did take a lot of time. After that, we had some interesting questions about data structures and trees and that was it.

College Name: RNSIT, Bangalore

Interview Questionnaire 

1 Question

  • Q1. Questions on the concept of oops and SQL

I applied via Campus Placement and was interviewed in Jan 2021. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1.  Explain the features of OOPS with examples?
  • Ans. 

    OOPS is a programming paradigm based on objects that have properties and methods.

    • Encapsulation: bundling of data and methods that operate on that data within a single unit

    • Inheritance: ability of a class to inherit properties and methods from a parent class

    • Polymorphism: ability of objects to take on many forms or have multiple behaviors

    • Abstraction: hiding of complex implementation details and showing only the necessary ...

  • Answered by AI
  • Q2. Explain the following terms : Super, Throw, Final and Finally
  • Ans. 

    Explanation of Super, Throw, Final and Finally

    • Super: used to call a method from a parent class

    • Throw: used to throw an exception

    • Final: used to declare a constant or to prevent method overriding

    • Finally: used to execute code after try-catch block, regardless of exception

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Knowledge in pm
  • Q2. Knowledge in BA

Interview Questionnaire 

1 Question

  • Q1. MVC related, SQL commands, C, C#

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm, Think well, If you have confusion in answer Just tell them which and why you feel confused, If you don't understand question, Just try to make it clear,
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jun 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 - Aptitude Test 

Program output prediction,Logical

Round 3 - Coding Test 

3 programs ,any Language you choose. One SQL and 2 programs

Interview Preparation Tips

Topics to prepare for ClaySys Software Engineer interview:
  • Coding skills
  • Logic
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Oops concepts ?
  • Q2. SQL queries related?
Round 2 - Coding Test 

General coding questions

Round 3 - Assignment 

30days training and project building

Interview Preparation Tips

Topics to prepare for ClaySys Software Engineer interview:
  • Oops concepts
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It is easy to solve the Aptitude question and some identifying outputs of program.

Round 2 - HR 

(2 Questions)

  • Q1. What is class?and write a logic for object in a class.
  • Ans. 

    A class is a blueprint for creating objects in object-oriented programming.

    • A class defines the properties and behaviors of objects.

    • An object is an instance of a class.

    • Example: Class 'Car' can have properties like 'color' and 'model', and behaviors like 'drive' and 'stop'.

  • Answered by AI
  • Q2. 1.swap two numbers without using temp variable 2.Reverse the string.
  • Ans. 

    Swap two numbers without using temp variable and reverse a string without using built-in functions.

    • To swap two numbers without using temp variable, use bitwise XOR operation.

    • To reverse a string without using built-in functions, use two pointers approach.

    • Example for swapping numbers: a = a ^ b; b = a ^ b; a = a ^ b;

    • Example for reversing a string: use two pointers to swap characters from start and end of the string.

  • Answered by AI
Round 3 - Coding Test 

Now, I am preparing for the third round.
So, I don't know the Coding Question.

Interview Preparation Tips

Topics to prepare for ClaySys Software Developer interview:
  • Java, SQL
Interview preparation tips for other job seekers - What you have given in your Resume that will be your Question.
Must Strong in Basics of Java and SQL commands.

CI Infotech Interview FAQs

How many rounds are there in CI Infotech Senior Engineer interview?
CI Infotech interview process usually has 1 rounds. The most common rounds in the CI Infotech interview process are Technical.
What are the top questions asked in CI Infotech Senior Engineer interview?

Some of the top questions asked at the CI Infotech Senior Engineer interview -

  1. What is IP Address and what is work IP Addre...read more
  2. What do you know about DH...read more
  3. What do you know about Doma...read more

Tell us how to improve this page.

CI Infotech Senior Engineer Interview Process

based on 5 interviews

Interview experience

2.6
  
Poor
View more

Interview Questions from Similar Companies

NexTurn Interview Questions
4.1
 • 27 Interviews
ClaySys Interview Questions
2.9
 • 24 Interviews
Contus Interview Questions
4.2
 • 22 Interviews
Pitney Bowes Interview Questions
3.7
 • 21 Interviews
Knoldus Inc Interview Questions
3.9
 • 20 Interviews
DynPro Interview Questions
3.8
 • 20 Interviews
View all
CI Infotech Senior Engineer Salary
based on 46 salaries
₹2.4 L/yr - ₹5.4 L/yr
58% less than the average Senior Engineer Salary in India
View more details

CI Infotech Senior Engineer Reviews and Ratings

based on 15 reviews

3.9/5

Rating in categories

3.4

Skill development

3.5

Work-life balance

2.9

Salary

3.5

Job security

3.6

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 15 Reviews and Ratings
Desktop Support Engineer
47 salaries
unlock blur

₹1.1 L/yr - ₹3.5 L/yr

Senior Engineer
46 salaries
unlock blur

₹2.4 L/yr - ₹5.4 L/yr

Engineer- Customer Support
25 salaries
unlock blur

₹1.5 L/yr - ₹4.3 L/yr

Assistant Engineer
20 salaries
unlock blur

₹1.8 L/yr - ₹2.7 L/yr

Assistant Manager
13 salaries
unlock blur

₹4 L/yr - ₹6 L/yr

Explore more salaries
Compare CI Infotech with

IVTL Infoview Technologies

3.6
Compare

Apmosys Technologies

3.5
Compare

Pitney Bowes

3.7
Compare

Zebra Technologies

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