Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Hughes Systique Corporation Team. If you also belong to the team, you can get access from here

Hughes Systique Corporation Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Hughes Systique Corporation Frontend Developer Intern Interview Questions and Answers

Updated 11 Mar 2022

Hughes Systique Corporation Frontend Developer Intern Interview Experiences

1 interview found

I appeared for an interview in Jun 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Easy

It was in in the evening at 5pm, it was simple with 20 mcqs on java,dbms,os.sql. And 2 coding questions.

  • Q1. 

    Find Duplicates in an Array

    Given an array ARR of size 'N', where each integer is in the range from 0 to N - 1, identify all elements that appear more than once.

    Return the duplicate elements in any orde...

  • Ans. 

    Find duplicates in an array of integers within a specified range.

    • Iterate through the array and keep track of the count of each element using a hashmap.

    • Return elements with count greater than 1 as duplicates.

    • Handle edge cases like empty array or no duplicates found.

    • Example: For input [0, 3, 1, 2, 3], output should be [3].

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 45 Minutes
Round difficulty - Medium

It was afternoon.2 interviewers are present. What are forms and how to create forms in HTML? What are Entities and Relationships? What is an Alias in SQL?

  • Q1. 

    Reverse the String Problem Statement

    You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

    Example:

    Input:
    STR = "abcde"
    Output:
    "e...
  • Ans. 

    Reverse a given string containing alphabets, numbers, and special characters.

    • Create a function that takes a string as input

    • Use built-in functions like reverse() or loop through the string to reverse it

    • Return the reversed string

  • Answered by AI
  • Q2. 

    Implement Stack with Linked List

    Your task is to implement a Stack data structure using a Singly Linked List.

    Explanation:

    Create a class named Stack which supports the following operations, each in O(1...

  • Ans. 

    Implement a Stack data structure using a Singly Linked List with operations in O(1) time.

    • Create a class named Stack with getSize, isEmpty, push, pop, and getTop methods.

    • Implement the Stack using a Singly Linked List for efficient operations.

    • Ensure each operation runs in O(1) time complexity.

    • Handle queries to print size, check if empty, push, pop, and get top element of the stack.

    • Test the implementation with sample inpu...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from GITAM Institute of Science. I applied for the job as Frontend Developer Intern in DelhiEligibility criteria7 CGPAHughes Systique Corporation (HSC) interview preparation:Topics to prepare for the interview - Java, Data Structures, Algorithms, DBMS, OS, MYSQL, NodeJsTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : cover all concepts to basic level first,rather than going deep in one concept
Tip 2 : practice everyday for DSA
Tip 3 : keep notes for web dev imp concepts because we will forget.

Application resume tips for other job seekers

Tip 1 : be honest
Tip 2 : do not add too many projects, add 2 or 3 worth mentioning.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w
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 Hughes Systique Corporation?
Ask anonymously on communities.

Interview questions from similar companies

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

It was easy asked about some basic concepts

Round 2 - Coding Test 

Basic coding based on data structures

Frontend Developer Intern Interview Questions Asked at Other Companies

Q1. Last Stone Weight Problem Explanation Given a collection of stone ... read more
asked in Samsung
Q2. Reverse Linked List Problem Statement Given a singly linked list ... read more
asked in Samsung
Q3. Cousins of a Given Node in a Binary Tree Given a binary tree with ... read more
asked in Trell
Q4. Find the Second Largest Element Given an array or list of integer ... read more
asked in Samsung
Q5. Maximum Sum Path in a Binary Tree Your task is to determine the m ... read more
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Aug 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Can you introduce yourself and describe the projects you have worked on, including any basic data structures and algorithms concepts and questions related to Python that you were asked?
  • Ans. 

    I am a Software Developer with experience in projects involving data structures, algorithms, and Python.

    • Worked on a project implementing a binary search tree data structure in Python.

    • Implemented sorting algorithms like bubble sort and quicksort in a project.

    • Answered questions related to Python concepts like list comprehensions and lambda functions.

    • Solved algorithmic questions involving concepts like recursion and dynam...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are React Queries?
  • Ans. 

    React Queries are a library for managing server state in React applications.

    • React Queries provide a way to fetch and cache data from an API in React components.

    • They offer features like caching, background fetching, and automatic refetching.

    • React Queries can handle complex data fetching requirements, such as pagination and infinite scrolling.

  • Answered by AI
  • Q2. Can useEffect() hook run twice?
  • Ans. 

    Yes, useEffect() hook can run twice under certain conditions.

    • useEffect() hook can run twice if the dependencies array changes between renders.

    • This can happen if the dependencies array contains values that change frequently.

    • For example, if a state variable is included in the dependencies array and it is updated in the component, useEffect() will run again.

  • Answered by AI

Skills evaluated in this interview

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

Aptitude auestions were there

Round 2 - Coding Test 

In this round 14 mcq and 2 sql queries were given

Interview Preparation Tips

Interview preparation tips for other job seekers - keep going...
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Project related
  • Q2. How you solve questions
  • Ans. 

    I approach problem-solving methodically, breaking down issues and applying logical reasoning to find effective solutions.

    • Understand the problem: Read the question carefully and clarify any doubts.

    • Break it down: Divide the problem into smaller, manageable parts.

    • Research: Look for similar problems or solutions online or in documentation.

    • Plan: Outline a step-by-step approach to tackle the problem.

    • Implement: Write code or ...

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

I applied via Walk-in and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

As a recent college graduate, I am actively seeking employment opportunities where I can effectively apply my
skills. Currently pursuing a Bachelor of Engineering in Artificial Intelligence and Machine Learning, I strive to push
my limits to explore new possibilities and acquire additional skills. Aspiring to work in a growth-oriented
environment where I can achieve excellence under existing working conditions, and contribute to the goals of the
organization.

Round 2 - Technical 

(1 Question)

  • Q1. -----CJn8Dy4pcAH_MQs3xeEvGEHJGUFLdotsXJs50U0/?igshid=1ovlixg7am262

Interview Preparation Tips

Interview preparation tips for other job seekers - As a recent college graduate, I am actively skills. Aspiring to work in a growth-oriented
environment where I can achieve excellence under existing working conditions, and contribute to the goals of the
organization.
Are these interview questions helpful?
Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 2022. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. Basically all about your personal skills
  • Q2. Project level knowledge.

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall interview very good, the screening process is so tough. The may expect you to come best ot best of crack anything.

Good luck for you.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Arrays and Pointers code

Round 2 - Technical 

(2 Questions)

  • Q1. Project related questions
  • Q2. Oops concept html css sql

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn about your project, oops concept and everything mentioned in your resume
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Building small UI screen application in 1 hr for frontend developer

Round 2 - One-on-one 

(3 Questions)

  • Q1. Graph traversal question
  • Q2. React js questions
  • Q3. Javascript output guessing question

Tell us how to improve this page.

Interview Questions from Similar Companies

Fractal Analytics Interview Questions
4.0
 • 214 Interviews
MathCo Interview Questions
3.0
 • 116 Interviews
Zeta Interview Questions
3.3
 • 74 Interviews
Kiya.ai Interview Questions
3.4
 • 50 Interviews
CoinDCX Interview Questions
3.8
 • 30 Interviews
MoEngage Interview Questions
3.9
 • 27 Interviews
Seclore Interview Questions
4.0
 • 27 Interviews
Demandbase Interview Questions
3.8
 • 18 Interviews
View all
Principal Engineer
308 salaries
unlock blur

₹11.2 L/yr - ₹37.5 L/yr

Senior Engineer
260 salaries
unlock blur

₹7.5 L/yr - ₹22 L/yr

Senior Software Engineer
221 salaries
unlock blur

₹7.2 L/yr - ₹23 L/yr

Software Engineer
176 salaries
unlock blur

₹4.5 L/yr - ₹14 L/yr

Engineer
106 salaries
unlock blur

₹5.5 L/yr - ₹14.5 L/yr

Explore more salaries
Compare Hughes Systique Corporation with

Fractal Analytics

4.0
Compare

Kiya.ai

3.4
Compare

MathCo

3.0
Compare

Innovatiview India Ltd

3.9
Compare
write
Share an Interview