Upload Button Icon Add office photos

Filter interviews by

Global Edge Software Software Developer fresher Interview Questions and Answers

Updated 30 Jul 2022

Global Edge Software Software Developer fresher Interview Experiences

1 interview found

Round 1 - Technical 

(3 Questions)

  • Q1. How to delete any Element in an Linked list
  • Ans. 

    To delete an element in a linked list, we need to find the node before the node to be deleted and update its next pointer.

    • Find the node before the node to be deleted

    • Update the next pointer of the previous node to point to the node after the node to be deleted

    • Free the memory occupied by the node to be deleted

  • Answered by AI
  • Q2. Write a Program to find all the first letters in an Sentence
  • Ans. 

    Program to find first letters in a sentence

    • Split the sentence into words

    • Get the first letter of each word

    • Store the first letters in an array

  • Answered by AI
  • Q3. Write a Program to find whether it is a palindrome or not
  • Ans. 

    Program to check if a given string is a palindrome or not

    • Convert the string to lowercase to ignore case sensitivity

    • Use two pointers, one at the start and one at the end of the string

    • Compare the characters at both pointers and move them towards each other

    • If all characters match, it is a palindrome

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in Data structures and C Basics. You can Easily go through the Interview

Skills evaluated in this interview

Interview questions from similar companies

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

(1 Question)

  • Q1. Questions related to my tech stack
Round 2 - One-on-one 

(1 Question)

  • Q1. Behavioral round with manager
Round 3 - Technical 

(1 Question)

  • Q1. Questions related to my tech stack
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Screening Round 

(3 Questions)

  • Q1. Current company project and tech stack related
  • Q2. Very basic selenium and java interview questions asked verbally
  • Q3. 30 min interview
Round 2 - Coding Test 

(3 Questions)

  • Q1. Write code in java for following input String s = "abdc112kg45ldy4p9" to get output sum = 170.
  • Q2. Some basic selenium, testng, cucumber bdd questions
  • Q3. Its a 40 min coding round
Round 3 - Technical 

(5 Questions)

  • Q1. Java code in order to find the day if we give jan 1 as monday. then what day is sept 14.
  • Q2. Selenium Xpath related questions to find it in website of flipkart sellers page.
  • Q3. Show nullpointer error using java code.
  • Q4. Selenium, TestNG, Cucumber Questions
  • Q5. 45 min high level technical round
Round 4 - Behavioral 

(3 Questions)

  • Q1. General discussion related to current company tecstack and work.
  • Q2. General Managerial Round/HR Round questions related to cultural or behavioral fit.
  • Q3. 30 min short discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - There are hidden rounds, where they just put after the whole interview process just before joining date in order to eliminate the candidates all of a sudden when you are expected to get an offer.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. Sql related questions were asked
  • Q2. Manual testing questions were asked
  • Q3. Joins questions
  • Q4. Where clause questions
  • Q5. Manual testing questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic OOP questions for python programming language

Round 2 - HR 

(2 Questions)

  • Q1. What's abstraction
  • Ans. 

    Abstraction is the concept of hiding complex implementation details and showing only the necessary information to the user.

    • Abstraction allows users to focus on what an object does instead of how it does it

    • It helps in reducing complexity and improving efficiency in software development

    • Example: In object-oriented programming, abstract classes and interfaces are used to achieve abstraction

  • Answered by AI
  • Q2. What's the difference between SQL and NoSQL database
  • Ans. 

    SQL databases are relational databases with structured data, while NoSQL databases are non-relational databases with flexible, unstructured data.

    • SQL databases use structured query language for defining and manipulating data, while NoSQL databases use different query languages or APIs.

    • SQL databases are table-based, with a predefined schema, while NoSQL databases are document, key-value, wide-column, or graph-based.

    • SQL d...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Reverse a linked list
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start with three pointers: current, prev, and next

    • Iterate through the linked list, updating pointers to reverse the direction

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

  • Answered by AI
  • Q2. Implement binary search algorithm
  • Ans. 

    Binary search algorithm efficiently finds the target value in a sorted array.

    • Start by defining the low and high indices of the array.

    • Calculate the mid index and compare the target value with the value at mid.

    • If target is less than mid value, update high to mid-1; if greater, update low to mid+1.

    • Repeat until target is found or low is greater than high.

  • Answered by AI
Round 4 - One-on-one 

(2 Questions)

  • Q1. Brief Introduction and basic questions
  • Q2. Future plans and how am i going to achieve them

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Sorting of an array
  • Q2. Bubble sorting algorithm
Round 2 - Technical 

(1 Question)

  • Q1. Java oops question
Round 3 - Technical 

(1 Question)

  • Q1. API questions related to put and patch api
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions related to NODEJS , PHP, Past projects, Resume
  • Q2. Why Mongodb over Sql
  • Ans. 

    MongoDB is preferred over SQL for its flexibility, scalability, and ease of use in handling unstructured data.

    • MongoDB is a NoSQL database, making it easier to work with unstructured data compared to SQL.

    • MongoDB is schema-less, allowing for more flexibility in data modeling and changes.

    • MongoDB is horizontally scalable, making it easier to handle large amounts of data and high traffic loads.

    • MongoDB's document-based data ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ResMed Associate Software Engineer interview:
  • Nodejs
  • MongoDB
  • PHP
  • SQL
Interview preparation tips for other job seekers - They asked related to resume only.

I didn't got selected because I couldn't justify what was written on my resume.

Skills evaluated in this interview

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

Around 1 hour with 2 coding and few aptitude questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Regarding linked lists
  • Q2. Data Structures
Round 3 - HR 

(2 Questions)

  • Q1. Given few situations
  • Q2. Asked about few other details
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jul 2024.

Round 1 - Coding Test 

Create an API using Notepad to check if a string is a palindrome or not.

Round 2 - One-on-one 

(1 Question)

  • Q1. Solid principal

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join worst company
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. System design questions related to the product

Global Edge Software Interview FAQs

How many rounds are there in Global Edge Software Software Developer fresher interview?
Global Edge Software interview process usually has 1 rounds. The most common rounds in the Global Edge Software interview process are Technical.
What are the top questions asked in Global Edge Software Software Developer fresher interview?

Some of the top questions asked at the Global Edge Software Software Developer fresher interview -

  1. How to delete any Element in an Linked l...read more
  2. Write a Program to find all the first letters in an Sente...read more
  3. Write a Program to find whether it is a palindrome or ...read more

Tell us how to improve this page.

Senior Software Engineer
511 salaries
unlock blur

₹3.6 L/yr - ₹13.3 L/yr

Software Engineer
290 salaries
unlock blur

₹2.2 L/yr - ₹8.5 L/yr

Module Lead
147 salaries
unlock blur

₹7 L/yr - ₹20 L/yr

Software Developer
43 salaries
unlock blur

₹2.5 L/yr - ₹10.3 L/yr

Associate Software Engineer
41 salaries
unlock blur

₹4 L/yr - ₹4.2 L/yr

Explore more salaries
Compare Global Edge Software with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
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