Upload Button Icon Add office photos
Engaged Employer

i

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

Cotelligent Verified Tick

Compare button icon Compare button icon Compare
4.1

based on 61 Reviews

Filter interviews by

Cotelligent Interview Questions and Answers

Updated 29 Dec 2023

Cotelligent Interview Experiences

Popular Designations

3 interviews found

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

I applied via campus placement at Sri Vasavi Engineering College, Tadepalligudem and was interviewed in Jun 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

There is mcqs and coding one question.

Round 2 - Group Discussion 

Good to communicate about specific topic.

Round 3 - Technical 

(1 Question)

  • Q1. Technical questions on coding related and examine about skills.
Round 4 - Behavioral 

(1 Question)

  • Q1. Reasonal thinking and some abilities questions.
Round 5 - HR 

(1 Question)

  • Q1. Asking about person details and other formalities.

Interview Preparation Tips

Topics to prepare for Cotelligent Cyber Security Associate interview:
  • Java
  • IAM
Interview preparation tips for other job seekers - Better to prepare more coding questions on java.

Cyber Security Associate Interview Questions asked at other Companies

Q1. How email deliver from on end to another
View answer (1)

Cyber Interview Questions & Answers

user image Anonymous

posted on 18 Dec 2023

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

I applied via Naukri.com and was interviewed before Dec 2022. 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 - Technical 

(1 Question)

  • Q1. Technical questions theory based
Round 3 - Technical 

(1 Question)

  • Q1. Technical round scenario based. In other word practical based.
Round 4 - HR 

(1 Question)

  • Q1. Hr and manager basically salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - No

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

Interview Questionnaire 

1 Question

  • Q1. About all HVAC SYSYTEM Electrical basics things and BMS system

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepared about your best points

Shift Engineer Interview Questions asked at other Companies

Q1. What is the process of oil top-up in fluid coupling
View answer (3)

Interview questions from similar companies

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

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

It included mcqs and multiple coding questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Yours technical skillls related questions
  • Q2. Managerial questions

Interview Preparation Tips

Topics to prepare for Aptos Software Developer interview:
  • Full Stack
Interview preparation tips for other job seekers - It was an on campus opportunity. Technical and managerial round happened together. The process was very smooth. The interviewers were professional yet friendly and made everything very comfortable. You should know the basics at least.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Baisc Linux, what is diff b/w linux and Unix
  • Ans. 

    Linux is a free and open-source operating system based on Unix, with some key differences in licensing and development.

    • Linux is open-source and freely available, while Unix is a proprietary operating system.

    • Linux is developed by a community of developers worldwide, while Unix is developed by various companies.

    • Linux has a wider range of distributions (e.g. Ubuntu, Fedora), while Unix has fewer variations (e.g. Solaris, ...

  • Answered by AI
  • Q2. Databases like Mongodb, sql
Round 2 - HR 

(2 Questions)

  • Q1. Basic Introduction to company
  • Q2. What does company do
  • Ans. 

    The company specializes in developing innovative software solutions for various industries.

    • Develops software solutions for industries such as healthcare, finance, and retail

    • Focuses on creating cutting-edge technology to improve efficiency and productivity

    • Provides customized software solutions to meet specific business needs

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Generate a Dataframe
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(4 Questions)

  • Q1. Difference Between let var and Const ?
  • Ans. 

    let, var, and const are all used to declare variables in JavaScript, but they have different scopes and mutability.

    • let: block-scoped, can be reassigned

    • var: function-scoped, can be reassigned

    • const: block-scoped, cannot be reassigned, but its properties can be modified

  • Answered by AI
  • Q2. What is the difference between struct and objects ?
  • Ans. 

    Struct is a value type while object is a reference type in C#.

    • Structs are value types and stored on stack, while objects are reference types and stored on heap.

    • Structs are passed by value, while objects are passed by reference.

    • Structs do not support inheritance, while objects do.

    • Example: struct Point { int x, y; } vs class Point { int x, y; }

  • Answered by AI
  • Q3. What is polymorphism?
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is called with.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q4. Compilier Programming language and Intepreter Programming language examples
  • Ans. 

    Compiler programming languages convert source code into machine code before execution, while interpreter programming languages execute code line by line.

    • Compiler programming languages: C, C++, Java

    • Interpreter programming languages: Python, Ruby, JavaScript

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is promise
  • Ans. 

    A promise is an object representing the eventual completion or failure of an asynchronous operation.

    • Promises are used in JavaScript to handle asynchronous operations.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() to handle success and failure callbacks.

    • Example: Fetching data from an API returns a promise that resolves with the data or rejects with an error.

  • Answered by AI
  • Q2. What is hoisting
  • Ans. 

    Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their containing scope during compilation.

    • Variable and function declarations are hoisted to the top of their scope.

    • Only declarations are hoisted, not initializations.

    • Function declarations take precedence over variable declarations.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is event loop
  • Ans. 

    Event loop is a mechanism in programming that allows for asynchronous execution of code by continuously checking for and handling events.

    • Event loop is commonly used in JavaScript to handle asynchronous operations like setTimeout, setInterval, and AJAX requests.

    • It allows for non-blocking I/O operations, ensuring that the program can continue running while waiting for I/O operations to complete.

    • Event loop works by contin...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I was interviewed in May 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Find frequency of integer in array
  • Ans. 

    Calculate the frequency of a specific integer in an array of strings.

    • Iterate through the array and use a hashmap to store the frequency of each integer.

    • Return the frequency of the specified integer from the hashmap.

  • Answered by AI
  • Q2. Node js project explanation and evaluation
  • Ans. 

    Node.js is a runtime environment that allows you to run JavaScript on the server side.

    • Node.js is built on Chrome's V8 JavaScript engine.

    • It uses an event-driven, non-blocking I/O model.

    • Node.js is commonly used for building server-side applications and APIs.

    • It has a large ecosystem of libraries and frameworks, such as Express and Socket.io.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. What is dns port no?
  • Ans. 

    DNS port number is 53.

    • DNS port number is used for DNS queries and responses.

    • It is a well-known port number, which is 53.

    • DNS uses both TCP and UDP protocols on port 53.

  • Answered by AI
  • Q2. What is ssh port no?
  • Ans. 

    SSH port number is 22.

    • SSH port number is used for secure communication over a network.

    • Default port number for SSH is 22.

    • Port number can be changed for security reasons.

    • Example: ssh user@hostname -p 2222

  • Answered by AI
  • Q3. What brust force attack?
  • Ans. 

    A brute force attack is a trial-and-error method used by hackers to crack passwords or encryption by systematically trying all possible combinations.

    • Brute force attacks are time-consuming but effective against weak passwords.

    • Hackers use automated tools to try all possible combinations until the correct one is found.

    • Examples include trying all possible 4-digit PIN codes or dictionary words as passwords.

    • Strong passwords ...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Tell me about your self?

Skills evaluated in this interview

Cotelligent Interview FAQs

How many rounds are there in Cotelligent interview?
Cotelligent interview process usually has 5 rounds. The most common rounds in the Cotelligent interview process are Technical, Resume Shortlist and HR.
How to prepare for Cotelligent 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 Cotelligent. The most common topics and skills that interviewers at Cotelligent expect are Software Solutions, Compliance, Enterprise Software, IT Services and Identity Access Management.
What are the top questions asked in Cotelligent interview?

Some of the top questions asked at the Cotelligent interview -

  1. Technical questions on coding related and examine about skil...read more
  2. Reasonal thinking and some abilities questio...read more
  3. About all HVAC SYSYTEM Electrical basics things and BMS sys...read more

Tell us how to improve this page.

Cotelligent Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 797 Interviews
KPIT Technologies Interview Questions
3.5
 • 294 Interviews
Zeta Interview Questions
3.4
 • 69 Interviews
View all

Cotelligent Reviews and Ratings

based on 61 reviews

4.1/5

Rating in categories

4.0

Skill development

4.1

Work-life balance

4.1

Salary

3.8

Job security

4.0

Company culture

3.8

Promotions

4.0

Work satisfaction

Explore 61 Reviews and Ratings
Consultant
17 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Delivery Consultant
13 salaries
unlock blur

₹3 L/yr - ₹9 L/yr

Senior Consultant
11 salaries
unlock blur

₹9 L/yr - ₹24 L/yr

Technology Consultant
11 salaries
unlock blur

₹5.4 L/yr - ₹13.5 L/yr

Security Consultant
7 salaries
unlock blur

₹5 L/yr - ₹14.9 L/yr

Explore more salaries
Compare Cotelligent with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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