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

Cogoport Software Developer Interview Questions and Answers

Updated 15 Jan 2025

Cogoport Software Developer Interview Experiences

6 interviews found

Software Developer Interview Questions & Answers

user image Chandan Abhishek

posted on 31 Oct 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

(2 Questions)

  • Q1. Basic resume based questions
  • Q2. Explain your internship experience
Round 3 - HR 

(1 Question)

  • Q1. Basic resume based questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Referral and was interviewed in Oct 2023. 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 - Aptitude Test 

NEED TO QUALIFY IN THIS TEST

Round 3 - Coding Test 

NEED TO QUALIFY THIS TEST ALSO

Round 4 - Technical 

(1 Question)

  • Q1. SOME DSA AND ROLE BASED QUATIONS.

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test was simple.

Round 2 - Technical 

(1 Question)

  • Q1. Asked 2 questions from recursion.
Round 3 - HR 

(1 Question)

  • Q1. Simple HR round.

Software Developer Interview Questions & Answers

user image Conquer_Knowledge

posted on 1 Jul 2023

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

I applied via campus placement at Indian Institute of Technology (IIT), Jodhpur and was interviewed before Jul 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

50 questions in 12 minutes mostly test your arthimetic, logical knowledge.

Round 3 - Coding Test 

3 coding questions in 90 mins, 1st one is from arrays an easy question, 2nd one is related to stacks and queues relatively harder and last one is hard which i am also unable to attempt. I cracked the first two questions and my solutions passed all the test cases.

Round 4 - One-on-one 

(3 Questions)

  • Q1. Difference between sorting algorithms
  • Ans. 

    Sorting algorithms are methods used to arrange elements in a specific order.

    • Different sorting algorithms include bubble sort, selection sort, insertion sort, merge sort, quick sort, and heap sort.

    • Some algorithms are more efficient than others depending on the size of the data set and the initial order of the elements.

    • For example, quick sort is generally faster than bubble sort for large data sets.

  • Answered by AI
  • Q2. BFS and DFS in trees and imlementing them
  • Ans. 

    BFS and DFS are traversal algorithms used in trees. BFS explores level by level, while DFS explores depth first.

    • BFS (Breadth-First Search) visits nodes level by level, using a queue. Example: traversing a binary tree level by level.

    • DFS (Depth-First Search) explores as far as possible along each branch before backtracking. Example: in-order traversal of a binary tree.

  • Answered by AI
  • Q3. Sql questions and database questions
Round 5 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Explain the college life

Interview Preparation Tips

Interview preparation tips for other job seekers - learn the web development basics to get placed in any indian startup

Skills evaluated in this interview

Cogoport interview questions for designations

 Junior Software Developer

 (1)

 Software Developer Intern

 (1)

 Software Engineer

 (3)

 Associate Software Engineer

 (1)

 Senior Software Engineer

 (1)

 Software Development Engineer

 (1)

 Software Development Engineer 1

 (1)

 SDE (Software Development Engineer)

 (2)

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

I applied via campus placement at Indian Institute of Technology (IIT), Patna and was interviewed before Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

3 Coding question medium level

Round 3 - Technical 

(1 Question)

  • Q1. Asked 3 coding queston and some basis CS questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interview

Software Developer Interview Questions & Answers

user image Vansh Jaishwal

posted on 29 Sep 2023

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

I applied via campus placement at Motilal Nehru Institute National Institute of Technology (NIT), Allahabad and was interviewed before Sep 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Coding Test 

Question from Array,DP

Round 3 - One-on-one 

(3 Questions)

  • Q1. Resume based only
  • Q2. Data structure and algorithms
  • Q3. Object oriented programmings
Round 4 - HR 

(1 Question)

  • Q1. Behavioural questions

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Computer Fundamentals

Round 2 - Technical 

(1 Question)

  • Q1. Flatten a binary tree
  • Ans. 

    Flatten a binary tree by converting it into a linked list in-place.

    • Use a recursive approach to flatten the binary tree.

    • Traverse the tree in a pre-order manner and keep track of the previous node.

    • Set the left child of each node to null and the right child to the next node in the linked list.

    • Example: Input: 1 -> 2 -> 5 -> 3 -> 4 -> null, Output: 1 -> null -> 2 -> null -> 3 -> null -> 4 -> null -> 5 -> null

  • Answered by AI

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
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Technology,(NIT), Delhi and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Kadance algorithm and find the middle of the linklist

Round 2 - Coding Test 

More on java and Python based coding questions

Round 3 - HR 

(4 Questions)

  • Q1. Behavioural questions were asked
  • Q2. What are your expectations from this job
  • Q3. What are your plans ahead
  • Q4. Where do you see yourself in 5 years ahead

Interview Preparation Tips

Interview preparation tips for other job seekers - Do good practise of DSA

I was interviewed in Dec 2016.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself tell me about your internship My interview was unstructured(i.e based on your reply interviewer was asking Questions)

Interview Preparation Tips

Round: Test
Experience: Questions were very difficult and solving one Question gets you shortlisted for interview
I don't remember the Questions
Duration: 1 hour 30 minutes
Total Questions: 2

Skills: Internship Work, Inter Person Communication Skills
College Name: IIT Roorkee

Cogoport Interview FAQs

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

Some of the top questions asked at the Cogoport Software Developer interview -

  1. BFS and DFS in trees and imlementing t...read more
  2. difference between sorting algorit...read more
  3. Asked 3 coding queston and some basis CS questi...read more

Tell us how to improve this page.

Cogoport Software Developer Interview Process

based on 7 interviews

1 Interview rounds

  • Resume Shortlist Round
View more
Cogoport Software Developer Salary
based on 70 salaries
₹7.5 L/yr - ₹20 L/yr
63% more than the average Software Developer Salary in India
View more details

Cogoport Software Developer Reviews and Ratings

based on 32 reviews

2.4/5

Rating in categories

2.6

Skill development

2.2

Work-life balance

2.4

Salary

2.1

Job security

2.1

Company culture

2.2

Promotions

2.3

Work satisfaction

Explore 32 Reviews and Ratings
Key Account Manager
230 salaries
unlock blur

₹4 L/yr - ₹10 L/yr

Associate Software Engineer
108 salaries
unlock blur

₹7 L/yr - ₹14 L/yr

Software Engineer
98 salaries
unlock blur

₹7 L/yr - ₹18.6 L/yr

Product Manager
74 salaries
unlock blur

₹20 L/yr - ₹35 L/yr

Software Developer
70 salaries
unlock blur

₹7.5 L/yr - ₹20 L/yr

Explore more salaries
Compare Cogoport with

Freight Tiger

3.6
Compare

Rivigo

3.9
Compare

BlackBuck

3.8
Compare

FarEye

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