Upload Button Icon Add office photos

Filter interviews by

JTG E-Business Software Interview Questions, Process, and Tips

Updated 10 Dec 2024

Top JTG E-Business Software Interview Questions and Answers

View all 7 questions

JTG E-Business Software Interview Experiences

Popular Designations

5 interviews found

Interview experience
4
Good
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is the problem statement for the "Subsequence" question from LeetCode, which is categorized as medium to hard level and focuses on arrays?
  • Ans. 

    Find the length of the longest increasing subsequence in an array of integers.

    • The problem involves finding the length of the longest increasing subsequence in an array of integers.

    • The subsequence does not have to be contiguous, but the elements must be in increasing order.

    • Dynamic programming can be used to solve this problem efficiently.

    • Example: Input: [10, 9, 2, 5, 3, 7, 101, 18] Output: 4 (The longest increasing subs

  • Answered by AI
  • Q2. The question is about the DSA project mentioned in my resume and some questions based on circular linked list , treess and graphs medium to Hard level

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are preparing for JTG, you need to practice Data Structures and Algorithms, especially graphs and trees, as most questions are based on these topics.

Software Development Engineer Intern Interview Questions asked at other Companies

Q1. Say you're dealing with really long integers. They're too long to fit into a regular datatype, so linked lists are used to store them, with each node of the list containing one digit. Now the problem is, given two linked lists, i.e. two rea... read more
View answer (2)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

2 DSA questions 1- in the frist question you have to print the length of maximum increasing sub array 2-in was related to stack, the question was to multiply string inside paranthesis for example if the input is "3(ab)" the output will be "ababab"

Interview Preparation Tips

Interview preparation tips for other job seekers - They ask DSA questions even for frontend role

Top JTG E-Business Software Frontend Developer Intern Interview Questions and Answers

Q1. What is event bubbling
View answer (1)

Frontend Developer Intern Interview Questions asked at other Companies

Q1. Last Stone Weight Problem Explanation Given a collection of stones, each having a positive integer weight, perform the following operation: On each turn, select the two heaviest stones and smash them together. Assume the stones have weights... read more
View answer (1)
JTG E-Business Software Interview Questions and Answers for Freshers
illustration image
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
-
Round 1 - Aptitude Test 

Simple round in which 15 question are aptitude and 15 are communication

Round 2 - Coding Test 

In this round I am reject

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have good knowledge in data structure then you select

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

I applied via Campus Placement and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - HTML, CSS , JS, DSA 

(2 Questions)

  • Q1. Event loop in JS
  • Ans. 

    Event loop in JS manages asynchronous operations by executing callback functions in a queue.

    • Event loop is responsible for handling asynchronous operations in JavaScript.

    • It allows non-blocking I/O operations by executing callback functions in a queue.

    • Event loop continuously checks the call stack and the callback queue to prioritize tasks.

  • Answered by AI
  • Q2. Type of JS modules
  • Ans. 

    There are two types of JS modules: CommonJS and ES6 modules.

    • CommonJS modules use 'require' and 'module.exports' to import and export modules.

    • ES6 modules use 'import' and 'export' statements to import and export modules.

    • ES6 modules are statically analyzable, while CommonJS modules are dynamically loaded at runtime.

  • Answered by AI
Round 2 - HTML,CSS,JS, DSA 

(2 Questions)

  • Q1. Sort the array using JS
  • Ans. 

    Use the sort() method in JavaScript to sort an array of strings.

    • Use the sort() method with a compare function to sort the array alphabetically.

    • For example, array.sort((a, b) => a.localeCompare(b)); will sort the array in ascending order.

    • To sort the array in descending order, you can use array.sort((a, b) => b.localeCompare(a));

  • Answered by AI
  • Q2. What is event bubbling
  • Ans. 

    Event bubbling is the process where an event triggered on a child element is propagated up to its parent elements.

    • Events triggered on child elements will also trigger the same event on parent elements

    • Event bubbling allows for delegation of event handling to a parent element

    • Can be controlled using event.stopPropagation() method

  • Answered by AI
Round 3 - HTML,CSS,JS, DSA 

(2 Questions)

  • Q1. How does JS Work?
  • Ans. 

    JS is a scripting language that allows for dynamic content on websites.

    • JS is a client-side scripting language used to create interactive web pages.

    • It can manipulate HTML and CSS to dynamically update content without reloading the page.

    • JS can handle events like button clicks, form submissions, and mouse movements.

    • It can also make asynchronous requests to fetch data from servers using AJAX.

    • JS code is executed by the brow...

  • Answered by AI
  • Q2. Reverse an array in JS ?
  • Ans. 

    Use the reverse() method to reverse an array in JavaScript.

    • Use the reverse() method on the array to reverse its elements in place.

    • Example: const arr = ['apple', 'banana', 'cherry']; arr.reverse(); // ['cherry', 'banana', 'apple']

  • Answered by AI

Skills evaluated in this interview

Top JTG E-Business Software Frontend Developer Intern Interview Questions and Answers

Q1. What is event bubbling
View answer (1)

Frontend Developer Intern Interview Questions asked at other Companies

Q1. Last Stone Weight Problem Explanation Given a collection of stones, each having a positive integer weight, perform the following operation: On each turn, select the two heaviest stones and smash them together. Assume the stones have weights... read more
View answer (1)

JTG E-Business Software interview questions for popular designations

 Frontend Developer Intern

 (2)

 SQA Engineer

 (1)

 Software Developer

 (1)

 Software Development Engineer Intern

 (1)

SQA Engineer Interview Questions & Answers

user image Anonymous

posted on 17 May 2024

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

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

Round 1 - Assignment 

Assignment round consist of the combination of resasoning, code, aptitude test, case study etc.

Round 2 - Technical 

(1 Question)

  • Q1. Tell us about yourself including company project.
  • Ans. I have explained them about my project, my responsibility and role etc.
  • Answered Anonymously

SQA Engineer Interview Questions asked at other Companies

Q1. How you justify customer if any bug is reproduced in production?
View answer (1)

Interview questions from similar companies

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

I was interviewed in Dec 2024.

Round 1 - Aptitude Test 

Ages, odd numbers, number series, work and time, calendars.

Round 2 - Group Discussion 

Youth in politics and artificial intelligence.

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

We have sit in all the members and will discuss some topics

Round 2 - Communication 

(5 Questions)

  • Q1. What is communication skills what was use in that
  • Q2. Tell me about social media
  • Q3. What was good in social media
  • Q4. What was bad in social media
  • Q5. Just tell me about what bad and good
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basics in web development

Round 2 - Assignment 

Asked to design a page

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a good knowledge
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

One hour offline in office test

Round 2 - Coding Test 

One hour and 20 mins test

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What is event loop
  • Ans. 

    Event loop is a mechanism in JavaScript that allows for asynchronous operations to be executed in a non-blocking way.

    • Event loop is responsible for handling asynchronous operations in JavaScript.

    • It allows for tasks to be queued and executed in a non-blocking manner.

    • Event loop continuously checks the call stack and the task queue, moving tasks from the queue to the stack when the stack is empty.

    • Example: setTimeout() func...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. It was about yourself round and cultural fit round

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company with friendly environment

Skills evaluated in this interview

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

JTG E-Business Software Interview FAQs

How many rounds are there in JTG E-Business Software interview?
JTG E-Business Software interview process usually has 1-2 rounds. The most common rounds in the JTG E-Business Software interview process are Technical, Coding Test and Assignment.
How to prepare for JTG E-Business Software 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 JTG E-Business Software. The most common topics and skills that interviewers at JTG E-Business Software expect are Javascript, Project Management, Scrum Master, Software Development and API.
What are the top questions asked in JTG E-Business Software interview?

Some of the top questions asked at the JTG E-Business Software interview -

  1. What is the problem statement for the "Subsequence" question from LeetCode, whi...read more
  2. What is event bubbl...read more
  3. Reverse an array in J...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

IBM

No Interviews

INTERVIEWS

Synthite Industries

No Interviews

DESIGNATION

INTERVIEWS

TCS

No Interviews

DESIGNATION

DESIGNATION

DESIGNATION

DESIGNATION

Tell us how to improve this page.

JTG E-Business Software Interview Process

based on 6 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all

JTG E-Business Software Reviews and Ratings

based on 5 reviews

3.8/5

Rating in categories

3.4

Skill development

2.7

Work-life balance

3.9

Salary

3.7

Job security

3.2

Company culture

3.8

Promotions

3.3

Work satisfaction

Explore 5 Reviews and Ratings
Software Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Quality Analyst
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior HR Executive
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Front end Developer
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare JTG E-Business Software with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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