Upload Button Icon Add office photos
Engaged Employer

i

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

Cognine Technologies Pvt. Ltd Verified Tick

Compare button icon Compare button icon Compare
4.4

based on 26 Reviews

Filter interviews by

Cognine Technologies Pvt. Ltd Associate Software Engineer Interview Questions and Answers

Updated 21 May 2024

Cognine Technologies Pvt. Ltd Associate Software Engineer Interview Experiences

1 interview found

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

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

Round 1 - HR 

(1 Question)

  • Q1. 1.types of networks 2.what is linux 3.how we solve blue screen error in our system 4.how we can check the power is coming or not
  • Ans. 

    Types of networks include LAN, WAN, MAN, WLAN, and PAN. Linux is an open-source operating system. Blue screen errors can be solved by troubleshooting hardware or software issues. Power can be checked using a multimeter or power indicator.

    • Types of networks: LAN, WAN, MAN, WLAN, PAN

    • Linux is an open-source operating system

    • Blue screen error can be solved by troubleshooting hardware or software issues

    • Power can be checked us

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Confidence,smile ,

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 4 interview rounds.

Round 1 - Coding Test 

In the coding test, there were 2 problems based on arrays and hashing (easy to medium level leetcode)

Round 2 - One-on-one 

(2 Questions)

  • Q1. Several OOP questions were asked.... like, Can we have a class inside an interface? Can we have a static constructor? Can we have multiple main methods?
  • Q2. DBMS question: Normalization questions and keys concepts.
Round 3 - One-on-one 

(2 Questions)

  • Q1. DSA question (stack based) You have a stack full of numbers, you have to arrange them in ascending order in the same stack without using any other data structure.
  • Q2. OS and DBMS questions(sharding, semaphores, etc.)
Round 4 - HR 

(1 Question)

  • Q1. Questions based on Consultadd principles.

Interview Preparation Tips

Interview preparation tips for other job seekers - Review data structures and algorithms (DSA) once before the interview, as Consultadd interviews primarily focus on DSA. Additionally, revisit technical subjects such as Operating Systems (OS), Database Management Systems (DBMS), Computer Networks (CN), DSA, Algorithm Design and Analysis (ADA), and Object-Oriented Programming (OOP).
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via campus placement at SRM university (SRMU) and was interviewed in May 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

Assusual apti questions from every topics

Round 2 - Coding Test 

1. 1 coding Question we can use java, python etc to solve and
2. another 1 sql question

Round 3 - Coding Test 

One question based on any one data structure (in my case I solved stack &queue combinely)

Round 4 - Telephonic Call 

(3 Questions)

  • Q1. They ask about Ur background qualifications and verify
  • Q2. And then explain the process of company and ask everything is ok for us like bond etc
  • Q3. Then sheduled interview on the next day
Round 5 - HR 

(11 Questions)

  • Q1. She(hr) introduced herself
  • Q2. Then she asked me to introduce myself
  • Q3. What are the programming languages u know ( I said I'm strong in java)
  • Ans. 

    I am strong in Java programming language.

    • Proficient in Java programming language

    • Experience in developing applications using Java

    • Knowledge of Java frameworks like Spring and Hibernate

  • Answered by AI
  • Q4. Rate Urself in it out of 5
  • Ans. 

    I rate myself 4 out of 5 in IT skills.

    • Proficient in programming languages such as Java, Python, and C++

    • Experienced in software development and debugging

    • Familiar with database management systems like MySQL and MongoDB

  • Answered by AI
  • Q5. She asked me to explain lambda expressions in java
  • Q6. Explain detaily about Four pillars of oops
  • Ans. 

    The four pillars of OOP are encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hides the complex implementation details and only shows the necessary features.

  • Answered by AI
  • Q7. Share Ur screen and get this output (pattern program)
  • Ans. 

    Print a specific pattern using loops

    • Use nested loops to print the desired pattern

    • Increment the number of characters printed in each row

    • Adjust the spacing to create the desired pattern

  • Answered by AI
  • Q8. Shorterm and long-term goals
  • Q9. If your assigned to a task how can you complete it
  • Q10. Exception handling concept (she specifically asked about throw, throws, finally keyword)
  • Q11. Explain about Static keyword
  • Ans. 

    Static keyword is used in programming languages to declare variables, functions, or classes that are shared among all instances of a class or are only accessible within a specific scope.

    • Static variables retain their values between function calls

    • Static functions can only be called within the same file

    • Static classes cannot be instantiated and are used for grouping related methods and properties

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Actually she not even have my resume I think, she asked everything about my biodata, so what your telling in selfintro is matters ...so be prepared for the technical skills that your going tell her, Best of luck

Skills evaluated in this interview

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

Easy applitute question with 1 coding question at the end

Round 2 - Technical 

(3 Questions)

  • Q1. String builder vs string buffer
  • Ans. 

    String builder is faster but not thread-safe, while string buffer is slower but thread-safe.

    • String builder is recommended for single-threaded applications for better performance.

    • String buffer is recommended for multi-threaded applications to ensure thread safety.

    • Example: StringBuilder sb = new StringBuilder(); StringBuffer sbf = new StringBuffer();

  • Answered by AI
  • Q2. Final keyword in oops
  • Ans. 

    The final keyword in OOP is used to restrict the user from changing the value of a variable, overriding a method, or inheriting from a class.

    • Final variable: value cannot be changed once assigned

    • Final method: cannot be overridden in child classes

    • Final class: cannot be inherited by other classes

  • Answered by AI
  • Q3. Bsf graph explanation
  • Ans. 

    BSF graph explanation

    • BFS (Breadth-First Search) is a graph traversal algorithm that explores all the neighbor nodes at the present depth before moving on to the nodes at the next depth.

    • It uses a queue data structure to keep track of the nodes to visit next.

    • BFS is often used to find the shortest path in an unweighted graph.

    • Example: BFS can be used to find the shortest path in a maze from the starting point to the exit.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice interview

Skills evaluated in this interview

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

I applied via campus placement at Jagan Institute of Management Studies (JIMS) and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. A Lot of OOPS and Virtual concept
  • Q2. Basic SQL till joins
  • Q3. Java script medium
  • Q4. C# oops output based

Interview Preparation Tips

Topics to prepare for Indus Valley Partners Associate Software Engineer interview:
  • OOPS
  • C#
  • Javascript
  • SQL
Interview preparation tips for other job seekers - Learn OOPS, Learn DBMS and practice SQL queries a lot and DSA till Linked list
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Aug 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 - Aptitude Test 

Aptitude test on logocal reasoning and maths question

Round 3 - Coding Test 

All sql queries and oops concept.

Round 4 - One-on-one 

(2 Questions)

  • Q1. About yourself and about your views on questions.
  • Q2. Oops concept and .net basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn more on sql queries and .net and be yourself
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Acropolis Institute of Technology and Research, Bhopal and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

2 coding questions medium to hard level

Round 2 - Technical 

(3 Questions)

  • Q1. Doubly Linkeded List
  • Q2. How to find if the Singly Linked List is cyclic or not in optimal way
  • Ans. 

    Use Floyd's cycle detection algorithm to find if a Singly Linked List is cyclic or not.

    • Use two pointers, slow and fast, where slow moves one step at a time and fast moves two steps at a time.

    • If there is a cycle, the two pointers will eventually meet at some point.

    • If the fast pointer reaches the end of the list (null), then there is no cycle.

  • Answered by AI
  • Q3. DBMS Normalisation

Interview Preparation Tips

Interview preparation tips for other job seekers - Theoretical as well as practical knowledge can help to crack interview

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Write program for Fibonacci

Round 2 - HR 

(2 Questions)

  • Q1. Why should we hire you
  • Ans. 

    I have a strong technical background, excellent problem-solving skills, and a passion for software development.

    • I have a Bachelor's degree in Computer Science with a focus on software engineering.

    • I have completed multiple internships where I gained hands-on experience in developing software applications.

    • I am proficient in programming languages such as Java, Python, and C++.

    • I have a proven track record of delivering high...

  • Answered by AI
  • Q2. Relocation question
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via campus placement at National Institute of Technology,(NIT), Mizoram and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was online assessment

Round 2 - Technical 

(5 Questions)

  • Q1. Questions were mainly from oops c++ and database management
  • Q2. What is four pillars of oops. What is array and vector. Implement queue using stack. Project based questions.
  • Ans. 

    The four pillars of OOP are encapsulation, inheritance, polymorphism, and abstraction. Arrays are fixed-size data structures, while vectors are dynamic arrays. A queue can be implemented using two stacks.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Creating new classes based on existing classes, inheriting their attributes and methods.

    • Polymorphism: Objects of differe...

  • Answered by AI
  • Q3. Four pillars of opps
  • Ans. 

    The four pillars of object-oriented programming are encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Allowing a new class to inherit properties and behavior from an existing class.

    • Polymorphism: The ability for objects of different classes to respond to the same message.

    • Abstraction: Hiding the complex implementatio...

  • Answered by AI
  • Q4. What is dbms explain
  • Ans. 

    DBMS stands for Database Management System. It is a software system that allows users to define, create, maintain and control access to databases.

    • DBMS is a software system that manages databases.

    • It allows users to define, create, maintain, and control access to databases.

    • DBMS provides tools for data manipulation, retrieval, and security.

    • Examples of DBMS include MySQL, Oracle, SQL Server, and PostgreSQL.

  • Answered by AI
  • Q5. What isSQL.and some queries

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Apr 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Questions based on Objects and Classes Basic Questions related to DSA Projects discussions- Your Roles and Tasks Scenario based Questions Few Reasoning Questions
Round 3 - Technical 

(1 Question)

  • Q1. Questions related to Trees and Graphs nested SQL Queries Scenario Based Questions Projects Logics for the coding given
Round 4 - HR 

(1 Question)

  • Q1. Just basic HR Questions Reallocation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in basics
Have a good grasp over DSA and Fundamentals
Try to be confident and fluent while answering
Stay positive

Cognine Technologies Pvt. Ltd Interview FAQs

How many rounds are there in Cognine Technologies Pvt. Ltd Associate Software Engineer interview?
Cognine Technologies Pvt. Ltd interview process usually has 1 rounds. The most common rounds in the Cognine Technologies Pvt. Ltd interview process are HR.

Tell us how to improve this page.

People are getting interviews through

based on 1 Cognine Technologies Pvt. Ltd interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Cognine Technologies Pvt. Ltd Associate Software Engineer Salary
based on 21 salaries
₹3 L/yr - ₹5.8 L/yr
35% less than the average Associate Software Engineer Salary in India
View more details

Cognine Technologies Pvt. Ltd Associate Software Engineer Reviews and Ratings

based on 4 reviews

4.3/5

Rating in categories

4.6

Skill development

3.5

Work-Life balance

3.5

Salary & Benefits

3.8

Job Security

4.1

Company culture

3.1

Promotions/Appraisal

3.8

Work Satisfaction

Explore 4 Reviews and Ratings
Software Engineer
39 salaries
unlock blur

₹4 L/yr - ₹10.5 L/yr

Senior Software Engineer
28 salaries
unlock blur

₹8 L/yr - ₹16 L/yr

Associate Software Engineer
21 salaries
unlock blur

₹3 L/yr - ₹5.8 L/yr

Software Developer
11 salaries
unlock blur

₹2.5 L/yr - ₹7.2 L/yr

Business Development Executive
8 salaries
unlock blur

₹3.2 L/yr - ₹5 L/yr

Explore more salaries
Compare Cognine Technologies Pvt. Ltd with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview