Upload Button Icon Add office photos

Filter interviews by

Global Sources Interview Questions and Answers

Updated 4 Sep 2024

Global Sources Interview Experiences

Popular Designations

2 interviews found

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 Sep 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduction with basic knowledge of coding
  • Q2. OOPS concepts, Collection Qustions

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Round 1 - One-on-one 

(2 Questions)

  • Q1. Selenium code for writing test case
  • Ans. 

    Selenium code for writing test case

    • Create a new Java class for the test case

    • Import Selenium WebDriver and other necessary libraries

    • Instantiate a new WebDriver object

    • Navigate to the webpage to be tested

    • Find the element(s) to interact with using WebDriver methods

    • Perform actions on the element(s) using WebDriver methods

    • Assert expected results using assertions or if-else statements

    • Close the WebDriver object

  • Answered by AI
  • Q2. Know all the test case information how to write
Round 2 - HR 

(1 Question)

  • Q1. Expecting salary and current salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn and practice selenium with java knowledge

Skills evaluated in this interview

Software Quality Engineer Interview Questions asked at other Companies

Q1. Palindromic Partitioning Problem Statement Given a string ‘str’, calculate the minimum number of partitions required to ensure every resulting substring is a palindrome. Input: The first line contains an integer ‘T’, the number of test case... read more
View answer (1)

Jobs at Global Sources

View all

Interview questions from similar companies

I was interviewed before Dec 2015.

Interview Questionnaire 

2 Questions

  • Q1. 1 question from basic data structures and algorithms The question was similar to the one in the given link- -----/
  • Q2. Why do you want to join the company?
  • Ans. 

    I am excited to join the company because of its reputation for innovation and commitment to employee growth.

    • I am impressed by the company's track record of developing cutting-edge software solutions.

    • I appreciate the company's focus on fostering a culture of learning and development.

    • I am excited about the opportunity to work with a talented team of developers and contribute to the company's success.

    • I believe that the co...

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Resumes were shortlisted with a short aptitude round where we are asked basic questions about databases, basic programming(C and C ++ questions)

Round: Technical Interview
Experience: The questions were asked were simple - related to arrays and data structures. Some questions were asked regarding my resume and projects.
Tips: Be thorough with geeksForGeeks, and your projects.

Round: HR Interview
Experience: I told him how I found the story of the founder of Infoedge very inspiring.
Tips: This round should be more simpler , be prepared with why you want to join the company and general HR questions

Skills: Basic C/C++, Programming Skills In Any Language Like C
College Name: IIIT Allahabad

Interview Preparation Tips

Round: Technical Interview
Experience: Ques will be based on arrays( duplicate element, missing element in 1 to n array), link list(reverse, remove loop, middle node etc), Hashing, sql join, normalisation, indexing in sql, singlton pattern and sorting and searching.
Tips: Focus will remain on algorithms. Whatever program they will ask to write, they will also ask to optimize the solution.

Skill Tips: Puzzle on mislabled jar, odd weight ball. As I had exp in Java, so some more que on Java, java script and web technology. All you need in interview is to be confident and show your interest in web domain.
Skills: Java, Data structure, Algorithm
College Name: NA

Interview Preparation Tips

Round: Test
Experience: First round was a simple round which involved 10 multiple choice questions and 3 coding questions on hackerrank platform.

Round: Technical Interview
Experience: Mainly on topics like networks, data structures and algorithms, operating systems. The interviewers looked for people who have had prior experience in web development and asked questions regarding web development in depth too.
Tips: I recommend everyone to read the book titled, 'Cracking the Coding Interview' as it was helpful in my approach to an interview.

General Tips: The one major thing that would give you the edge in joining Myntra would definitely be exposure to web development. Since it is not a part of the curriculum , it's all the more important for you to familiarize yourself with web development. In fact, a few projects in the same field would put you in a very advantageous position to get the job.
Skill Tips: 1. Start your placement preparations well ahead, no point regretting later.
2. Keep a concise resume. Do not take your resume to several pages.
3. Do not neglect aptitude preparation. Many people do this mistake and end up not clearing the first round for several companies.
4. Be thorough with your basics across all subjects. (Do not neglect any subject, even they you may like a few and dislike the others.)
5. Keep in mind, the interviewers are really friendly and try to make sure that you're not nervous during the interview. All they want to do is to test you. Be confident and give it your best shot.
Skills:
College Name: NIT Surathkal

Interview Questionnaire 

10 Questions

  • Q1. What do you do when your schedule is interrupted? How you handle it?
  • Q2. PreOrder traversal without recursion?
  • Ans. 

    PreOrder traversal without recursion is done using a stack to simulate the function call stack.

    • Create an empty stack and push the root node onto it.

    • While the stack is not empty, pop a node from the stack and process it.

    • Push the right child of the popped node onto the stack if it exists.

    • Push the left child of the popped node onto the stack if it exists.

  • Answered by AI
  • Q3. Build a bst out of the unsorted array by looping over the array and inserting each element to the tree?
  • Ans. 

    Yes

    • Create an empty binary search tree (BST)

    • Loop over the unsorted array

    • For each element, insert it into the BST using the appropriate insertion logic

    • Repeat until all elements are inserted

    • The resulting BST will be built from the unsorted array

  • Answered by AI
  • Q4. Find 2 elements in array whose sum is equal to given number?
  • Ans. 

    The question asks to find two elements in an array whose sum is equal to a given number.

    • Iterate through the array and for each element, check if the difference between the given number and the current element exists in the array.

    • Use a hash set to store the elements as you iterate through the array for efficient lookup.

    • Return the pair of elements if found, otherwise return a message indicating no such pair exists.

  • Answered by AI
  • Q5. How many types of trigger?
  • Ans. 

    There are two types of triggers: DML triggers and DDL triggers.

    • DML triggers are fired in response to DML (Data Manipulation Language) statements like INSERT, UPDATE, DELETE.

    • DDL triggers are fired in response to DDL (Data Definition Language) statements like CREATE, ALTER, DROP.

    • Examples: A DML trigger can be used to log changes made to a table, while a DDL trigger can be used to enforce certain rules when a table is alt

  • Answered by AI
  • Q6. Can trigger be used with select statement?
  • Ans. 

    Yes, triggers can be used with select statements in SQL.

    • Triggers are database objects that are automatically executed in response to certain events, such as insert, update, or delete operations.

    • While triggers are commonly used with insert, update, and delete statements, they can also be used with select statements.

    • Using triggers with select statements allows you to perform additional actions or validations before or af...

  • Answered by AI
  • Q7. Indexing in mysql? How many types of indexing in mysql?
  • Ans. 

    Indexing in MySQL improves query performance. There are several types of indexing in MySQL.

    • Indexes are used to quickly locate data without scanning the entire table.

    • Types of indexing in MySQL include B-tree, hash, full-text, and spatial indexes.

    • B-tree indexes are the most common and suitable for most use cases.

    • Hash indexes are used for exact match lookups.

    • Full-text indexes are used for searching text-based data efficie...

  • Answered by AI
  • Q8. Engines in mysql?
  • Ans. 

    Engines in MySQL are the underlying software components that handle storage, indexing, and querying of data.

    • MySQL supports multiple storage engines, each with its own strengths and features.

    • Some commonly used engines in MySQL are InnoDB, MyISAM, and Memory.

    • InnoDB is the default engine in MySQL and provides support for transactions and foreign keys.

    • MyISAM is known for its simplicity and speed but lacks transaction suppo...

  • Answered by AI
  • Q9. Singlton pattern?
  • Q10. Can a constructor be private?
  • Ans. 

    Yes, a constructor can be private.

    • A private constructor can only be accessed within the class itself.

    • It is often used in singleton design pattern to restrict object creation.

    • Private constructors are also useful for utility classes that only contain static methods.

  • Answered by AI

Interview Preparation Tips

Skills: Algorithm, Data structure
College Name: na

Skills evaluated in this interview

I applied via Referral and was interviewed in Feb 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Technical Questions (SQL and Python)
  • Q2. Business case studies

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up SQL skills, learn different methods of solving the same problem, learn basics of python, especially Pandas and Numpy

I applied via Referral and was interviewed before May 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. It is relevant to area where you are expertises and for position you applied for
  • Q2. Relevant to position

Interview Preparation Tips

Interview preparation tips for other job seekers - Really good company and can enjoy myntra benefits a lot .

I applied via Naukri.com and was interviewed before Aug 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Tell about yourself
  • Q2. What is your salary expectation

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview wa easy and can crack it
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website

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 Resume tips
Round 2 - Aptitude Test 

Just taken by on call start with introduction

Round 3 - Assignment 

It has taken by laptop while training completed all the lessons quizzes related training part

Interview Preparation Tips

Interview preparation tips for other job seekers - It is the best job for those girls, who can not visit outside and do not have much time to spend, so this is a great opportunity for those girls just have to give 4 to 5 hours daily.
Contribute & help others!
anonymous
You can choose to be anonymous

Global Sources Interview FAQs

How many rounds are there in Global Sources interview?
Global Sources interview process usually has 1-2 rounds. The most common rounds in the Global Sources interview process are One-on-one Round and HR.
How to prepare for Global Sources interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Global Sources. The most common topics and skills that interviewers at Global Sources expect are Ad Sales, B2B Sales, Digital Sales, Online Sales and Cold Calling.
What are the top questions asked in Global Sources interview?

Some of the top questions asked at the Global Sources interview -

  1. Selenium code for writing test c...read more
  2. Know all the test case information how to wr...read more
  3. Introduction with basic knowledge of cod...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

DESIGNATION

COMPANY BENEFITS

The Jaypee Group

No Benefits

COMPANY BENEFITS

Punj Lloyd

No Benefits

DESIGNATION

DESIGNATION

DESIGNATION

Tell us how to improve this page.

Global Sources Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 424 Interviews
Udaan Interview Questions
3.9
 • 333 Interviews
Meesho Interview Questions
3.7
 • 328 Interviews
Zomato Interview Questions
3.8
 • 309 Interviews
Myntra Interview Questions
4.0
 • 213 Interviews
Naukri Interview Questions
4.0
 • 185 Interviews
ExportersIndia Interview Questions
4.9
 • 31 Interviews
Alibaba Group Interview Questions
4.1
 • 7 Interviews
View all

Global Sources Reviews and Ratings

based on 20 reviews

4.1/5

Rating in categories

3.5

Skill development

4.3

Work-life balance

3.6

Salary

3.3

Job security

3.3

Company culture

3.3

Promotions

3.4

Work satisfaction

Explore 20 Reviews and Ratings
Sales Executive(International)

New Delhi

0-5 Yrs

₹ 3.5-4.5 LPA

Explore more jobs
Export Marketing Consultant
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Service Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Piping Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Safety Officer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

International Sales Consultant
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Global Sources with

Alibaba Group

4.1
Compare

TradeIndia (Infocom Network Private Limited)

3.4
Compare

Indiamart Intermesh

3.6
Compare

ExportersIndia

4.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent