Upload Button Icon Add office photos
Engaged Employer

i

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

Cogoport Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Cogoport Associate Software Engineer Interview Questions and Answers

Updated 19 Mar 2023

Cogoport Associate Software Engineer Interview Experiences

1 interview found

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

Had assignment for ror and react basic crud

Round 2 - Technical 

(2 Questions)

  • Q1. Elevator problem in java
  • Ans. 

    Elevator problem in Java

    • Create an Elevator class with methods for moving up and down

    • Use a Queue to keep track of the floors that need to be visited

    • Implement a scheduling algorithm to determine the order of floor visits

  • Answered by AI
  • Q2. Horse race puzzle solution

Interview Preparation Tips

Interview preparation tips for other job seekers - keep ur code well defined and structured to get distinguished

Skills evaluated in this interview

Interview questions from similar companies

I applied via Campus Placement and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Will be given Requirement to write code for Restraunt. Based on that have write code for delivering orders by delivery boys.

Round 2 - Technical 

(1 Question)

  • Q1. OOPS Concepts, Java Basics, Collections, MultiThreading

Interview Preparation Tips

Topics to prepare for LogiNext Solutions Software Engineer interview:
  • Java
  • OOPS
  • MySQL
  • Pattern Programming
Interview preparation tips for other job seekers - Focus on DSA and Logical Programming

I applied via Approached by Company and was interviewed in Aug 2021. 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 Resume tips
Round 2 - Coding Test 

Assignment to develop a prototype

Round 3 - One-on-one 

(3 Questions)

  • Q1. Face to face questions
  • Q2. Java Question Technical & coding
  • Q3. Mongodb & Mysql Question
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Architecture of current project
  • Ans. 

    The current project follows a microservices architecture with Docker containers for scalability and flexibility.

    • Microservices architecture is used to break down the application into smaller, independent services that can be developed, deployed, and scaled independently.

    • Docker containers are utilized for packaging the application and its dependencies into a standardized unit for easy deployment and management.

    • Service di...

  • Answered by AI
  • Q2. Spring and Hibernate questions
Round 2 - Coding Test 

Basic coding questions

Software Engineer Interview Questions & Answers

Freight Tiger user image yuvraj karanveer singh kamra

posted on 20 Jul 2024

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

I applied via Walk-in and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Array and stack based lc standard questions

Round 2 - Case Study 

LLD of Payment Systems

Round 3 - One-on-one 

(2 Questions)

  • Q1. Tell me what do u do in ur day to day job
  • Q2. What is ur vision
  • Ans. 

    My vision is to create innovative software solutions that positively impact people's lives and drive technological advancements.

    • Developing cutting-edge software applications that improve efficiency and user experience

    • Utilizing emerging technologies like AI and machine learning to solve complex problems

    • Collaborating with cross-functional teams to deliver high-quality products

    • Continuously learning and adapting to stay ah

  • Answered by AI

I applied via Company Website and was interviewed in Dec 2021. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. What is LRU caching and how it can be implemented?
  • Ans. 

    LRU caching is a technique to store frequently used data in cache memory to improve performance.

    • LRU stands for Least Recently Used.

    • It removes the least recently used item from the cache when the cache is full.

    • It uses a doubly linked list and a hash map to implement the cache.

    • When an item is accessed, it is moved to the front of the list.

    • When the cache is full, the item at the end of the list is removed.

    • Example: Java Li...

  • Answered by AI
  • Q2. Explain producer-consumer problem and write code using thread.
  • Ans. 

    Producer-consumer problem involves synchronization between threads to avoid race conditions.

    • Producer produces data and adds it to a shared buffer

    • Consumer consumes data from the shared buffer

    • Synchronization is required to avoid race conditions

    • Code example: https://www.geeksforgeeks.org/producer-consumer-solution-using-threads-in-java/

  • Answered by AI
  • Q3. Check a tree is BST or not.
  • Ans. 

    To check if a tree is a BST or not.

    • Traverse the tree in-order and check if the values are in ascending order.

    • For each node, check if its value is greater than the maximum value of its left subtree and less than the minimum value of its right subtree.

    • Recursively check if the left and right subtrees are also BSTs.

  • Answered by AI
  • Q4. Reverse a single linked list.
  • Ans. 

    Reverse a single linked list.

    • Iterate through the list and change the direction of the pointers

    • Keep track of the previous, current and next nodes

    • Set the head of the list to the last node after reversing

  • Answered by AI
  • Q5. Print the all anagrams of same type in same line from array of Strings
  • Ans. 

    Print all anagrams of same type in same line from array of Strings

    • Create a HashMap with sorted string as key and list of anagrams as value

    • Iterate through array and add each string to corresponding list in HashMap

    • Print all values in HashMap

  • Answered by AI
  • Q6. Features added in Java 8
  • Ans. 

    Java 8 introduced lambda expressions, functional interfaces, streams, and default methods.

    • Lambda expressions allow functional programming in Java.

    • Functional interfaces are interfaces with a single abstract method.

    • Streams provide a way to process collections of data in a functional way.

    • Default methods allow interfaces to have implementation.

    • Date and Time API improvements.

    • Nashorn JavaScript engine added.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have appeared on Techgig challenge and get a call from HR regarding Software development Java position.
First round is scheduled on Barraiser and is taken by Third party person. In these round, first interview give me a question to print anagrams from list of strings and to be printed of same type in different line. I have started by discussing the approach and then after 20-30 mins, I was able to reach the optimal solution. Then he discussed me about my project that I am working in current company and tell me to draw the architecture diagram.
After 2 days, I got the call from the HR and selected for 2nd round technical interview with Technical lead.
First time, they have postponed the call which is scheduled on Google meet.
In second time, the interviewer joined and round started with introduction of both and the interview tell me about the company and how it is growing and all.
Then we move to technical discussion. First he asked me about what are features are added in Java 8, then one by one concepts of Java regarding threading, producer-consumer problem.
After OOPS concept discussion, he gave me two DSA problems to solve in optimal way. I am unable to do that since I have not gone through it.
In the interview, I am pretty sure that I am not selected for the next round as my DSA is weak.
And after interview, I have never received any call nor any mail regarding my rejection and feedback.

Skills evaluated in this interview

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

Leecode medium level question

Round 2 - Coding Test 

Leetcode Hard level Question

Round 3 - Technical 

(1 Question)

  • Q1. This is cto round asked some interview questions

I applied via Naukri.com and was interviewed in Dec 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tree, bfs and dfs and dynamic programming is asked mainly, medium level leetcode questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up dfs bfs and medium lc, a little bit of system design and sql too
Round 1 - Coding Test 
Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and tell whatever you had Learnt
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Standard dsa questions, easy to medium

Contribute & help others!
anonymous
You can choose to be anonymous

Cogoport Interview FAQs

How many rounds are there in Cogoport Associate Software Engineer interview?
Cogoport interview process usually has 3 rounds. The most common rounds in the Cogoport interview process are Resume Shortlist, Coding Test and Technical.
What are the top questions asked in Cogoport Associate Software Engineer interview?

Some of the top questions asked at the Cogoport Associate Software Engineer interview -

  1. elevator problem in j...read more
  2. horse race puzzle solut...read more

Recently Viewed

INTERVIEWS

SiMa.ai

No Interviews

INTERVIEWS

MathCo

5.6k top interview questions

INTERVIEWS

Collegedunia

No Interviews

INTERVIEWS

Turing

No Interviews

SALARIES

ICICI Prudential Life Insurance

INTERVIEWS

Paisabazaar.com

No Interviews

INTERVIEWS

MathCo

No Interviews

INTERVIEWS

MathCo

No Interviews

REVIEWS

ICICI Prudential Life Insurance

No Reviews

INTERVIEWS

Cogoport

No Interviews

Tell us how to improve this page.

Cogoport Associate Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Delhivery Interview Questions
3.9
 • 458 Interviews
Ecom Express Interview Questions
3.8
 • 198 Interviews
BlackBuck Interview Questions
3.8
 • 176 Interviews
MagicPin Interview Questions
3.0
 • 50 Interviews
FarEye Interview Questions
3.1
 • 27 Interviews
Tokopedia Interview Questions
4.0
 • 25 Interviews
Treebo Hotels Interview Questions
3.3
 • 22 Interviews
View all
Cogoport Associate Software Engineer Salary
based on 110 salaries
₹7 L/yr - ₹15 L/yr
101% more than the average Associate Software Engineer Salary in India
View more details

Cogoport Associate Software Engineer Reviews and Ratings

based on 12 reviews

1.7/5

Rating in categories

2.7

Skill development

1.4

Work-life balance

2.2

Salary

1.4

Job security

1.4

Company culture

1.6

Promotions

1.7

Work satisfaction

Explore 12 Reviews and Ratings
Key Account Manager
226 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
110 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
81 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
74 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
70 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Cogoport with

Freight Tiger

3.7
Compare

BlackBuck

3.8
Compare

FarEye

3.1
Compare

Delhivery

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