Upload Button Icon Add office photos

Filter interviews by

JTG E-Business Software Interview Questions and Answers

Updated 10 Dec 2024
Popular Designations

7 Interview questions

A Software Development Engineer Intern was asked 6mo ago
Q. 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...

View all Software Development Engineer Intern interview questions
A Frontend Developer Intern was asked 6mo ago
Q. 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...

View all Frontend Developer Intern interview questions
A Frontend Developer Intern was asked 6mo ago
Q. How can you sort an array using JavaScript?
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));

View all Frontend Developer Intern interview questions
A Frontend Developer Intern was asked 6mo ago
Q. What are the different types of JavaScript 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.

View all Frontend Developer Intern interview questions
A Frontend Developer Intern was asked 6mo ago
Q. Explain the event loop in JavaScript.
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.

View all Frontend Developer Intern interview questions
A Frontend Developer Intern was asked 6mo ago
Q. How do you reverse an array in JavaScript?
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']

View all Frontend Developer Intern interview questions
A Frontend Developer Intern was asked 6mo ago
Q. 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

View all Frontend Developer Intern interview questions
Are these interview questions helpful?

JTG E-Business Software Interview Experiences

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.
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
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
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

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

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about JTG E-Business Software?
Ask anonymously on communities.

Interview questions from similar companies

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

(2 Questions)

  • Q1. Pass components
  • Ans. 

    Passing components in React allows for reusable UI elements and better code organization.

    • Components can be passed as props to child components for reusability.

    • Example: <ChildComponent propName={value} /> allows ChildComponent to access 'value'.

    • Use functional components for cleaner syntax and easier state management.

    • Props can be used to customize the behavior and appearance of components.

  • Answered by AI
  • Q2. Route guards authentication purpose
  • Ans. 

    Route guards are used in frontend development to control access to certain routes based on authentication status.

    • Route guards are used to prevent unauthorized access to certain routes in a frontend application.

    • They can be used to check if a user is authenticated before allowing access to a specific route.

    • Common types of route guards include CanActivate, CanActivateChild, CanDeactivate, and CanLoad.

    • Example: A route guar...

  • Answered by AI

Skills evaluated in this interview

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
Are these interview questions helpful?
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

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

I applied via Job Portal and was interviewed in Nov 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

General questions of mathematics

Round 2 - Coding Test 

2 coding questions, 1 from arrays and 2nd from lists

Round 3 - HR 

(1 Question)

  • Q1. General questions about pay scale and company policies
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

60 mark 60 min practice more for this round

Round 2 - One-on-one 

(2 Questions)

  • Q1. Why you choose react
  • Ans. 

    React is a popular JavaScript library for building user interfaces due to its component-based architecture and virtual DOM.

    • Component-based architecture allows for reusability and easier maintenance of code.

    • Virtual DOM enables efficient updates to the actual DOM, resulting in better performance.

    • React's ecosystem includes tools like Redux for state management and React Router for routing.

    • React's declarative syntax makes ...

  • Answered by AI
  • Q2. Basic question in react like react hooks?

Interview Preparation Tips

Interview preparation tips for other job seekers - strong knowledge in react js and javascript

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

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 6 interview experiences

Difficulty level

Moderate 25%
Hard 75%

Duration

Less than 2 weeks 50%
2-4 weeks 25%
4-6 weeks 25%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.8
 • 8.6k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.3k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
View all

JTG E-Business Software Reviews and Ratings

based on 5 reviews

3.8/5

Rating in categories

3.2

Skill development

2.7

Work-life balance

3.9

Salary

3.8

Job security

3.2

Company culture

3.7

Promotions

3.4

Work satisfaction

Explore 5 Reviews and Ratings
Software Developer
4 salaries
unlock blur

₹6.8 L/yr - ₹18 L/yr

Technical Lead
4 salaries
unlock blur

₹32.4 L/yr - ₹47 L/yr

Software Quality Analyst
3 salaries
unlock blur

₹4.3 L/yr - ₹6.1 L/yr

Senior HR Executive
3 salaries
unlock blur

₹6.1 L/yr - ₹8.5 L/yr

Explore more salaries
Compare JTG E-Business Software with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview