Upload Button Icon Add office photos

Filter interviews by

JNET Technologies UI UX Developer Interview Questions and Answers

Updated 14 Sep 2024

JNET Technologies UI UX Developer Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. UX and UI Related
  • Q2. HTML, CSS, and Bootstrap
Round 2 - Project & Tech Related 

(1 Question)

  • Q1. Question on your projects and current role

Interview questions from similar companies

I applied via Campus Placement and was interviewed in May 2022. There were 4 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 - Coding Test 

Basic dsa questions , basic recursion questions of trees ,graphs and searching algorithms there are some mcq questions that too on dsa

Round 3 - Group Discussion 

They asked few sql and dsa questions like a open board test

Round 4 - Technical 

(2 Questions)

  • Q1. Sort a vector according to other other vector ?
  • Ans. 

    Sort a vector based on another vector

    • Use std::sort with a custom comparator function

    • The comparator function should compare the indices of the elements in the second vector

    • The first vector should be sorted based on the order of the indices in the second vector

  • Answered by AI
  • Q2. String processing question where we need to process a string by using given instructions .

Interview Preparation Tips

Interview preparation tips for other job seekers - be sure about basics , dsa and SQL you will crack the job

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Apr 2023. There were 4 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 

Leetcode easy, medium

Round 3 - Technical 

(2 Questions)

  • Q1. Cpp , dsa , os, cn, coa
  • Q2. Sort 0,1,2 array
  • Ans. 

    Sort an array of strings containing '0', '1', and '2'.

    • Use counting sort algorithm to count the occurrences of '0', '1', and '2'.

    • Create a new array with the sorted counts of '0', '1', and '2'.

    • Join the sorted array back into a single array of strings.

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Why should we hire you?

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Basic aptitude questions

Round 2 - Coding Test 

3 basic questions they asked

Round 3 - Coding Test 

Pointer and SQL related questions

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

I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Easy 1 hr test and can be completed easily

Round 2 - Technical 

(2 Questions)

  • Q1. SQL queries more focus on analytic side
  • Q2. DSA + OOPS
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Coding test was really good it was easier to tackle the problem and writting code for it.

Round 2 - Technical 

(2 Questions)

  • Q1. Can you tell me about yourself?
  • Q2. What is the major project you have worked on, and can you provide an explanation of it?
  • Ans. 

    Developed a web-based project management tool for tracking tasks and deadlines.

    • Used React.js for front-end development

    • Implemented RESTful APIs using Node.js and Express

    • Utilized MongoDB for database storage

    • Incorporated authentication and authorization features for user security

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. SQL ques and concept
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Aptitude and coding of 2 hours

Round 2 - Technical 

(1 Question)

  • Q1. Questions based on sql and dsa

Interview Preparation Tips

Interview preparation tips for other job seekers - learn sql and dsa
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Apr 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

It was an 1hr interview session

Round 3 - One-on-one 

(1 Question)

  • Q1. Find the occurrence of each element in an array
  • Ans. 

    Count the occurrence of each element in an array of strings

    • Iterate through the array and use a hashmap to store the count of each element

    • If element already exists in the hashmap, increment its count by 1

    • Return the hashmap with element counts

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Tell me about yourself

Interview Preparation Tips

Topics to prepare for MAQ Software Software Developer interview:
  • array
  • string
  • map
  • dynamic programming

Skills evaluated in this interview

I appeared for an interview in Apr 2021.

Round 1 - Coding Test 

(4 Questions)

Round duration - 120 minutes
Round difficulty - Easy

Timing was 9: 30 AM. Platform was quite good and easy to understand.

  • Q1. 

    Reverse Only Letters Problem Statement

    You are given a string S. The task is to reverse the letters of the string while keeping non-alphabet characters in their original position.

    Example:

    Input:
    S = "...
  • Ans. 

    Reverse the letters of a string while keeping non-alphabet characters in their original position.

    • Iterate through the string and store the non-alphabet characters in their original positions

    • Reverse the letters using two pointers technique

    • Combine the reversed letters with the non-alphabet characters to get the final reversed string

  • Answered by AI
  • Q2. 

    Find the Duplicate Number Problem Statement

    Given an integer array 'ARR' of size 'N' containing numbers from 0 to (N - 2). Each number appears at least once, and there is one number that appears twice. Yo...

  • Ans. 

    Find the duplicate number in an array of integers from 0 to N-2.

    • Iterate through the array and keep track of the frequency of each number using a hashmap.

    • Return the number with a frequency greater than 1 as the duplicate number.

  • Answered by AI
  • Q3. 

    Reverse Array Elements

    Given an array containing 'N' elements, the task is to reverse the order of all array elements and display the reversed array.

    Explanation:

    The elements of the given array need to...

  • Ans. 

    Reverse the order of elements in an array and display the reversed array.

    • Iterate through the array from both ends and swap the elements until the middle is reached.

    • Use a temporary variable to store the element being swapped.

    • Print the reversed array after all elements have been swapped.

  • Answered by AI
  • Q4. 

    Sum of Digits Problem Statement

    Given an integer 'N', continue summing its digits until the result is a single-digit number. Your task is to determine the final value of 'N' after applying this operation ...

  • Ans. 

    Given an integer, find the final single-digit value after summing its digits iteratively.

    • Iteratively sum the digits of the given integer until the result is a single-digit number

    • Output the final single-digit integer for each test case

    • Handle multiple test cases efficiently

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Easy

Timing was 9:30 AM. The interviewer was very nice.

  • Q1. 

    Nth Fibonacci Number Problem Statement

    Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1.

    Input:

    ...
  • Ans. 

    Calculate the Nth Fibonacci number efficiently using dynamic programming.

    • Use dynamic programming to store and reuse previously calculated Fibonacci numbers.

    • Start with base cases F(1) and F(2) as 1, then calculate subsequent Fibonacci numbers.

    • Optimize the solution to avoid redundant calculations by storing intermediate results.

    • Time complexity can be reduced to O(N) using dynamic programming.

    • Example: For N = 5, the 5th F

  • Answered by AI
  • Q2. Write an SQL query to find the second highest salary from a table.
  • Ans. 

    SQL query to find the second highest salary from a table

    • Use the MAX() function to find the highest salary

    • Use the NOT IN operator to exclude the highest salary from the results

    • Order the results in descending order and limit the query to return only the second row

  • Answered by AI
Round 3 - Video Call 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Medium

Timing was 12 PM. Interviewer was not good.

  • Q1. 

    Character Frequency Problem Statement

    You are given a string 'S' of length 'N'. Your task is to find the frequency of each character from 'a' to 'z' in the string.

    Example:

    Input:
    S : abcdg
    Output:
    1...
  • Ans. 

    The task is to find the frequency of each character from 'a' to 'z' in a given string.

    • Create an array of size 26 to store the frequency of each character from 'a' to 'z'.

    • Iterate through the string and increment the corresponding index in the array for each character encountered.

    • Print the array of frequencies as the output for each test case.

  • Answered by AI
  • Q2. What is normalization and can you explain the concept of Third Normal Form (3NF)?
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization is a database design technique used to structure a relational database in a way that reduces data redundancy and improves data integrity.

    • Third Normal Form (3NF) is a level of database normalization where every non-prime attribute of a table is dependent on the primary key.

    • To achieve 3NF, a table m...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteriaAbove 8 CGPAMAQ Software interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do 2 projects.
Tip 2 : Practice data structures programs.
Tip 3 : Take a course on Coding Ninjas.

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Oct 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

There were two section Aptitude and Coding.

  • Q1. 

    Buy and Sell Stock Problem Statement

    Imagine you are Harshad Mehta's friend, and you have been given the stock prices of a particular company for the next 'N' days. You can perform up to two buy-and-sell ...

  • Ans. 

    The task is to determine the maximum profit that can be achieved by performing up to two buy-and-sell transactions on a given set of stock prices.

    • Iterate through the array of stock prices and calculate the maximum profit that can be achieved by buying and selling at different points.

    • Keep track of the maximum profit after the first transaction and the maximum profit overall by considering different combinations of buy a...

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

This was the first technical interview.

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Find pairs of elements in an array that sum up to a given value, sorted in a specific order.

    • Iterate through the array and for each element, check if the complement (S - current element) exists in a hash set.

    • Keep track of pairs in a hash set to avoid duplicates.

    • Sort the pairs based on the criteria mentioned in the question.

    • Return the sorted list of pairs.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from National Institute of Technology, Raipur. I applied for the job as SDE - 1 in HyderabadEligibility criteria7 CGPAMAQ Software interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, Operating System, DBMS, Computer NetworksTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Prepare theory subjects well
Tip 2 : Start doing some development and learn a framework from 2nd year
 

Application resume tips for other job seekers

Tip 1: Mention projects with technologies
Tip 2: Make important words in bold

Final outcome of the interviewRejected

Skills evaluated in this interview

JNET Technologies Interview FAQs

How many rounds are there in JNET Technologies UI UX Developer interview?
JNET Technologies interview process usually has 2 rounds. The most common rounds in the JNET Technologies interview process are Technical.
What are the top questions asked in JNET Technologies UI UX Developer interview?

Some of the top questions asked at the JNET Technologies UI UX Developer interview -

  1. HTML, CSS, and Bootst...read more
  2. UX and UI Rela...read more

Tell us how to improve this page.

JNET Technologies UI UX Developer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

MAQ Software Interview Questions
1.9
 • 101 Interviews
Webkul Software Interview Questions
3.9
 • 59 Interviews
Softenger Interview Questions
4.1
 • 52 Interviews
DataMetica Interview Questions
3.5
 • 44 Interviews
View all
Software Engineer
65 salaries
unlock blur

₹3.6 L/yr - ₹10.5 L/yr

Senior Software Engineer
59 salaries
unlock blur

₹6.7 L/yr - ₹21 L/yr

Project Engineer
39 salaries
unlock blur

₹1.5 L/yr - ₹4 L/yr

Software Developer
36 salaries
unlock blur

₹3 L/yr - ₹12.1 L/yr

Network Engineer
31 salaries
unlock blur

₹2.4 L/yr - ₹4.1 L/yr

Explore more salaries
Compare JNET Technologies with

Tekwissen

4.8
Compare

Softenger

4.1
Compare

XcelServ Solutions

4.5
Compare

Damco Solutions

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