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 Sde1 Interview Questions and Answers

Updated 17 Oct 2024

Cogoport Sde1 Interview Experiences

4 interviews found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 20 Oct 2023

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

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in Sep 2023. There were 5 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 

Easy questions but less time

Round 3 - Coding Test 

2 easy and 1 hard leet code

Round 4 - One-on-one 

(3 Questions)

  • Q1. Reverse the link list
  • Ans. 

    Reverse a linked list

    • Iterate through the linked list and reverse the pointers

    • Use three pointers - prev, current, next to reverse the links

    • Update the head of the linked list to the last node after reversing

  • Answered by AI
  • Q2. The Hanoi tower problem was given
  • Q3. One DP question was given to explain not write
Round 5 - HR 

(1 Question)

  • Q1. JEE rank and previous paid internship

Interview Preparation Tips

Topics to prepare for Cogoport Sde1 interview:
  • DSA
  • Node.Js
  • React.Js
  • React Native
  • ruby on rails
  • Ruby Rails
Interview preparation tips for other job seekers - PLEASE DON'T JOIN THIS COMPANY specially freshers they will ruin your career

Skills evaluated in this interview

Sde1 Interview Questions & Answers

user image Anonymous

posted on 5 Mar 2024

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 Mar 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Basic Apti and Behavioural Online Round 15-30 minutes

Round 2 - Coding Test 

1.5 hrs long. 3 Problems Easy to Medium

Round 3 - Technical 

(3 Questions)

  • Q1. Cogoport was mass hiring, so interview was only 30 minutes long. Basic DSA, sorting, and SQL queries.
  • Q2. Merge Sort Algorithm
  • Ans. 

    Merge Sort is a divide and conquer algorithm that divides the input array into two halves, sorts them separately, and then merges them.

    • Divide the array into two halves recursively

    • Sort each half separately using merge sort

    • Merge the sorted halves back together

  • Answered by AI
  • Q3. SQL Query Basic Join
Round 4 - HR 

(1 Question)

  • Q1. 5-7 minutes final HR round

Interview Preparation Tips

Interview preparation tips for other job seekers - Great learning curve as its a startup. BUT Don't go to this company. Mass Hiring => Mass Layoffs. This has been the main ideology of Cogoport since the beginning. Followed by salary cuts of course.

Skills evaluated in this interview

Sde1 Interview Questions Asked at Other Companies

Q1. DSA and Language Questions: 1. Difference between Arrays and Arra ... read more
asked in Park Plus
Q2. 1. What is a doubly-linked list? And real-world applications.
asked in Amazon
Q3. pid ={3,5,0,1} ppid ={5,4,2,2} process id(pid) ppid=parent proces ... read more
Q4. Given one point and circle how will you find if it's inside circl ... read more
asked in Amazon
Q5. N queen problem with problem statement and dry running of code wi ... read more

Sde1 Interview Questions & Answers

user image Anonymous

posted on 17 Oct 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Oct 2023.

Round 1 - Aptitude Test 

1 hour long time in hyper loop

Round 2 - Coding Test 

Singularity is not a point in space, it is a moment in time.

Interview Preparation Tips

Interview preparation tips for other job seekers - Singularity is not a point in space, it is a moment in time. S

Sde1 Interview Questions & Answers

user image Anonymous

posted on 6 Feb 2024

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), Jodhpur and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic questions that anyone could answer

Round 2 - Coding Test 

O(N) questions, questions like string reversal etc…

Cogoport interview questions for designations

 Software Developer

 (6)

 Software Engineer

 (3)

 Associate Software Engineer

 (1)

 Junior Software Developer

 (1)

 Software Development Engineer 1

 (1)

 Software Developer Intern

 (1)

 Senior Software Engineer

 (1)

 Software Development Engineer

 (1)

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 and was interviewed in Jul 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Aptitude(Maths Problems), SQL, DSA

Round 2 - Technical 

(2 Questions)

  • Q1. Project Discussion
  • Q2. Python Related Questions
Round 3 - Technical 

(2 Questions)

  • Q1. SQL Questions, Linux Commands
  • Q2. DSA, Puzzle, Chair Testing
Round 4 - Technical 

(2 Questions)

  • Q1. 25 Horse puzzle question
  • Q2. SQL basic questions and Output Questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Apr 2024. There were 5 interview rounds.

Round 1 - Coding Test 

2 dsa questions of easy/medium

Round 2 - Technical 

(1 Question)

  • Q1. Asked two dsa questions of leetcodeeasy/medium
Round 3 - Technical 

(1 Question)

  • Q1. Asked two dsa questions of leetcode easy/medium
Round 4 - Behavioral 

(1 Question)

  • Q1. Asked one dsa question on tree and discussion on resume and dbms os
Round 5 - HR 

(1 Question)

  • Q1. Salary Discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Internshala and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Easy to medium, can solve with leetcode medium

Round 2 - One-on-one 

(2 Questions)

  • Q1. Number of islands count
  • Ans. 

    Count the number of islands in a grid of '1's and '0's

    • Iterate through the grid and for each '1' encountered, perform a depth-first search to mark all connected '1's as visited

    • Increment the island count for each new island found

    • Ensure to handle boundary cases and check for visited nodes

  • Answered by AI
  • Q2. First and last index of a particular element in an array
  • Ans. 

    Find the first and last index of a specific element in an array of strings.

    • Iterate through the array and keep track of the index of the first and last occurrence of the element.

    • Return the first and last index once the iteration is complete.

    • Example: Array ['apple', 'banana', 'apple', 'orange'], element 'apple' - First index: 0, Last index: 2.

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Oct 2022. There were 2 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 

(2 Questions)

  • Q1. Sql ,stack implementation
  • Q2. Oops concepts and sql joins
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jun 2022. There were 5 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 - Coding Test 

Basic Python syntax, networking and linux basics in MCQs along with two coding questions with Leetcode easy difficulty.

Round 3 - One-on-one 

(1 Question)

  • Q1. Programming interview with 2 Leetcode medium level questions and then discussion on internship.
Round 4 - One-on-one 

(1 Question)

  • Q1. Multiple deep-level questions on OS, DBMS and Computer Networking concepts. One basic programming question on regex.
Round 5 - One-on-one 

(1 Question)

  • Q1. More of a discussion than Interview. Discussion about my projects and internship experience. Then some more questions on Linux this time little advanced about VI editors and Shell programming.

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong Linux and Networking concepts will fetch a job.

I applied via campus placement at Indian Institute of Technology (IIT), Roorkee and was interviewed before Sep 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Linked List, Stack, BST

Interview Preparation Tips

Interview preparation tips for other job seekers - be ready with ds algo and have some side projects

Cogoport Interview FAQs

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

Some of the top questions asked at the Cogoport Sde1 interview -

  1. reverse the link l...read more
  2. Merge Sort Algori...read more
  3. Cogoport was mass hiring, so interview was only 30 minutes long. Basic DSA, sor...read more

Tell us how to improve this page.

Cogoport Sde1 Interview Process

based on 6 interviews

2 Interview rounds

  • Aptitude Test Round
  • Coding Test Round
View more

Interview Questions from Similar Companies

Delhivery Interview Questions
3.9
 • 458 Interviews
Ecom Express Interview Questions
3.8
 • 197 Interviews
BlackBuck Interview Questions
3.8
 • 174 Interviews
MagicPin Interview Questions
3.0
 • 49 Interviews
Stylebaazar Interview Questions
4.0
 • 31 Interviews
Tokopedia Interview Questions
4.0
 • 27 Interviews
FarEye Interview Questions
3.1
 • 26 Interviews
View all
Cogoport Sde1 Salary
based on 40 salaries
₹9 L/yr - ₹17 L/yr
40% less than the average Sde1 Salary in India
View more details

Cogoport Sde1 Reviews and Ratings

based on 8 reviews

1.0/5

Rating in categories

1.6

Skill development

1.0

Work-life balance

1.6

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

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

₹4 L/yr - ₹10 L/yr

Associate Software Engineer
110 salaries
unlock blur

₹7 L/yr - ₹15 L/yr

Software Engineer
81 salaries
unlock blur

₹7 L/yr - ₹19.1 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.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