Upload Button Icon Add office photos

Filter interviews by

Js Software Interview Questions and Answers for Freshers

Updated 21 Apr 2024

Js Software Interview Experiences for Freshers

1 interview found

Junior Full Stack Developer Intern Interview Questions & Answers

user image Vipin Mishra

posted on 21 Apr 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Javascript Fundamental Questions
  • Q2. Closures in javascript
  • Q3. One javascript coding problem adding serial number to strings of array of strings

Interview Preparation Tips

Interview preparation tips for other job seekers - Dynamic team with good work culture

Skills evaluated in this interview

Interview questions from similar companies

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

I was interviewed in Apr 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. Questions related to kotlin coroutines in depth questions, scenario based questions
  • Q2. Solid principles
  • Q3. Architecture patterns
  • Q4. Kotlin coroutine
  • Q5. Unit testing, espresso scenario based

Interview Preparation Tips

Topics to prepare for Globant Senior Android Developer interview:
  • kotlin
  • coroutines
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 2023. There were 3 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 - Technical 

(1 Question)

  • Q1. Basic to medium about c and serial communication protocols
Round 3 - Technical 

(1 Question)

  • Q1. Coding and technical with managerial round

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn embedded c and rtos , serial communication protocols ,
practice code
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Aptitude Test 

It was a 4 hour hacker rank with 2 Long questions

Round 3 - Technical 

(1 Question)

  • Q1. It was a technical interview with a senior software engineer. The Question was about partitioning a string into lowercase letters, uppercase letters and numbers
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - HR 

(1 Question)

  • Q1. Tell me abour yourself
Round 3 - Technical 

(1 Question)

  • Q1. Payroll spexific questions
Round 4 - One-on-one 

(1 Question)

  • Q1. General questions

I applied via Campus Placement and was interviewed in Nov 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

There main focus was on coding there were 10mcq of your coding s nd other section was for aptitude

Round 3 - One-on-one 

(2 Questions)

  • Q1. They will start asking from your core branch... As you take any language name you found your expertise they will ask deeply on tht topic
  • Q2. If you are from like electronic engineering student they will ask you questions from your related subject?!!

Interview Preparation Tips

Interview preparation tips for other job seekers - The company has 4 year bond and the package they provide is very less

Full Stack Java Developer - SpringBoot Interview Questions & Answers

Oracle Cerner user image Anonymous

posted on 9 May 2022

I applied via Naukri.com and was interviewed in Apr 2022. There were 4 interview rounds.

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 tips
Round 2 - One-on-one 

(1 Question)

  • Q1. My interview was based on what I mentioned in my resume. It was 45 mins technical interview.
Round 3 - One-on-one 

(1 Question)

  • Q1. It depends on interview .. for me its both behavioural as well as technical.
Round 4 - Versatile test 

(1 Question)

  • Q1. This test is all based on your listening, speaking and English writing skills.

Interview Preparation Tips

Interview preparation tips for other job seekers - Cerner have 2 technical round .. on based of both the round feedbacks you got the offer.

I applied via LinkedIn and was interviewed in Feb 2022. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Prepare well according to your experience
Round 2 - Technical 

(1 Question)

  • Q1. Based on Job description
Round 3 - Behavioral 

(1 Question)

  • Q1. Discussion about your capabilities as individual and group
Round 4 - HR 

(6 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Why are you looking for a change?
  • Q4. Where do you see yourself in 5 years?
  • Q5. What are your strengths and weaknesses?
  • Q6. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well as per your experience

I was interviewed in Sep 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 150 minutes
Round difficulty - Hard

Oracle’s aptitude test is one of the longest aptitude tests I appeared for in my placement phase. It was around 2hrs 30mins long.
Questions were from basically every subject I had studied like OS, CN, SDLC, etc. Questions weren’t too hard but the difficult part about this test is that it was divided into sections and sub-sections.
Each sub-section had its own independent time interval so bringing it down to like 10 quant questions in 14 minutes might sound easy but it’s not. So managing time is the only difficult part of this round.

  • Q1. SQL Question

    Which is the correct SQL query to select the top 5 numbers from the given data?

  • Ans. 

    The correct SQL query to select the top 5 numbers from the given data is 'SELECT TOP 5 number FROM table_name ORDER BY number DESC'.

    • Use the 'SELECT' statement to specify the columns you want to retrieve.

    • Use the 'TOP' keyword followed by the number of rows you want to select.

    • Specify the column name in the 'ORDER BY' clause to sort the data in descending order.

  • Answered by AI
  • Q2. Insertion in AVL Tree

    Ninja has to implement an ‘AVL_TREE’ from scratch.

    He is given ‘N’ values, representing the values of nodes to be inserted. Ninja has to insert these values into the ‘AVL_TREE’ and ...

  • Ans. 

    The question asks to implement an AVL_TREE from scratch and insert given values into it.

    • AVL_TREE is a self-balancing binary search tree

    • The height difference between left and right subtrees of all nodes should not be more than one

    • Implement the AVL_TREE data structure and insertion algorithm

    • Return the root of the AVL_TREE after inserting all the nodes

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Easy

The Technical Interview started off very fine and lasted for about 30-40 minutes. There were few HR questions in the beginning. The interviewer is very friendly. Firstly they asked me to tell them about myself. then the reasons for choosing this Profile. Then he asked me to explain the projects I have done. I have explained them. They have interrupted me and asked some doubts meanwhile. But I felt that they were intended just to check my confidence and how would I explain their doubts. They asked me some DSA Questions but I told them I am not much confident in DSA then they asked Basic Questions on DBMS like Explain about Normalization of DB, self Join, etc. And at the end, he asked me a general aptitude question based on Distance and time.

Overall the Interview was quite easy. Just learn the basics. Maintain good communication skills. Be confident and add good projects to your CV. Then it will be very easy to crack this round.

  • Q1. SQL Question

    Asked me to write a query to select some data from large collection of it.

  • Ans. 

    Write a query to select data from a large collection.

    • Use the SELECT statement to specify the columns you want to retrieve.

    • Use the FROM clause to specify the table or tables from which to retrieve the data.

    • Use the WHERE clause to specify any conditions that the retrieved data must meet.

    • Use the ORDER BY clause to sort the retrieved data in a specific order.

    • Use the LIMIT clause to limit the number of rows returned, if nec

  • Answered by AI
  • Q2. Third greatest element

    Given an array/list 'ARR' of ‘N’ distinct integers, you are supposed to find the third largest element in the given array 'ARR'.

    Input Format :
    The first line conta...
  • Ans. 

    The task is to find the third largest element in an array of distinct integers.

    • Read the number of test cases 'T'

    • For each test case, read the number of elements 'N' and the array 'ARR'

    • Sort the array in descending order

    • Return the element at index 2 as the third largest element

  • Answered by AI
Round 3 - HR 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

In the first 10 min, He asked me general HR questions like why OFSS. What are your strengths etc?
Then he asked me a puzzle. Then he asked me some questions from my resume regarding my internship and extracuriculars.
Then he asked me questions related to banking like how banks earn money, is a loan asset or liability, is FD asset or liability for a bank, and as I knew all these financial concepts already so it was quite easy for me to crack this round. The interviewer was very friendly and then I asked him some questions regarding the job profile and he answered every question happily and it was visible on his face that he is happy with my interview.

  • Q1. Puzzle

    Suppose there are N balls. out of which only 1 ball is lighter in weight. You are given a simple balance. Then How many minimum no. of attempts do one take to find out that lighter ball. and how many...

  • Ans. 

    Tip 1 : Practise some puzzles.
    Tip 2 : Be prepared for questions like why OFSS, Why this profile, Your strengths, your future plans etc.
    Tip 3 : Try to be calm during every situation in an interview as it shows your confidence and it matters to company how you handle such situations.

  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAOracle Financial Services Software interview preparation:Topics to prepare for the interview - C, C++, OOPS in C++, SQL, HTML, CSS, Java ScriptTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Have a strong grip over the basics concepts of OOPS like classes, objects, encapsulation, polymorphism, data abstraction, and Inheritance.
Tip 2 : You should know how the SQL queries work and have a command on their database called Oracle.
Tip 3 : Learn javascript as its their most important requirement and it will give a strong edge over others. So C++,OOPS,SQL and Javascript are most important requirements and other things you should be aware of are Basics of DSA, Web development.

Application resume tips for other job seekers

Tip 1 : You should have at least one project on your resume, mine was a web development group project and I did front-end work and the interviewer discussed it for at least 10 minutes.
Tip 2 : Have something on your resume that shows you are a team player and can work really efficiently working with the team like I lead a team of 5 during Smart India Hackathon and it gave me a huge edge over others.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

  • Q1. Find All Subsets

    You are given an array ‘arr’ of ‘N’ distinct integers. Your task is to find all the non-empty subsets of the array.

    Note: You can return the subsets in any order, you don’t have to speci...

  • Ans. Power Set Using Bit-Masking

     

    One of the standard and useful method of finding the power set is through bit-masking.

    Consider a number with N-bits in its binary representation, if we consider that the state of ith bit depicts whether the ith array element is included in the current subset or not, then we can uniquely identify one of the subsets (as each number has a different binary representation).

    Now we can simply ...

  • Answered by CodingNinjas
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

The technical question was mainly based on my resume, followed by coding questions.

  • Q1. Technical Questions

    When do you prefer to use Bokeh and when would you prefer Matplotlib?

    Explain the machine learning project on your resume?
    She gave a situation, and asked what would I implement Supervised...

Round 3 - Video Call 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

It was a coding round

  • Q1. Reverse Linked List

    Given a singly linked list of integers. Your task is to return the head of the reversed linked list.

    For example:
    The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then th...
  • Ans. Brute Force

    The brute force approach is to use recursion. First, we reach the end of the Linked List recursively and at last node, we return the last node, which becomes the new head of the partially reversed Linked List. While coming back from each recursion call we add the current node in the current recursion call to the last node of the partially reversed Linked List and assign the current node to null.

     

    Steps:

    &...

  • Answered by CodingNinjas
Round 4 - HR 

(1 Question)

Round duration - 20 Minutes
Round difficulty - Easy

  • Q1. Basic HR Questions

    What are you hobbies?

    What are your salary expectations?

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from MVJ College of Engineering. I applied for the job as Full Stack Engineer in BengaluruEligibility criteria7 CGPAMicrofocus interview preparation:Topics to prepare for the interview - OOPS, Operating Systems, Data Structures, Database, Machine Learning, AngularTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Maintain a clean resume and have in-depth knowledge of the projects, as in the technical round the interviewer mainly asks technical questions regarding the projects. Questions based on projects are predictable and answering them can give a good impression during the interview.
Tip 2 : Be clear in explaining the approach to coding questions.
Tip 3 : Admit it, if you are not confident in a particular topic. Accepting your weakness is better than a wrong answer.

Application resume tips for other job seekers

Tip 1 : Use formal resume templates and maintain a neat resume.
Tip 2 : Have few development projects on the resume with brief summary of the skills implemented.
Tip 3 : Mention your skills in proper sub-sections.

Final outcome of the interviewSelected

Skills evaluated in this interview

Js Software Interview FAQs

How many rounds are there in Js Software interview for freshers?
Js Software interview process for freshers usually has 1 rounds. The most common rounds in the Js Software interview process for freshers are Technical.
How to prepare for Js Software interview for freshers?
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 Js Software. The most common topics and skills that interviewers at Js Software expect are AWS, Angular, CSS, Communication Skills and Content Strategy.
What are the top questions asked in Js Software interview for freshers?

Some of the top questions asked at the Js Software interview for freshers -

  1. One javascript coding problem adding serial number to strings of array of strin...read more
  2. Closures in javascr...read more
  3. Javascript Fundamental Questi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Google Interview Questions
4.4
 • 854 Interviews
Amdocs Interview Questions
3.8
 • 527 Interviews
Zoho Interview Questions
4.3
 • 508 Interviews
SAP Interview Questions
4.2
 • 303 Interviews
KPIT Technologies Interview Questions
3.5
 • 293 Interviews
Salesforce Interview Questions
4.1
 • 269 Interviews
Adobe Interview Questions
4.0
 • 249 Interviews
View all

Js Software Reviews and Ratings

based on 3 reviews

3.3/5

Rating in categories

3.6

Skill development

3.1

Work-life balance

3.6

Salary

3.1

Job security

2.6

Company culture

3.1

Promotions

2.6

Work satisfaction

Explore 3 Reviews and Ratings
Software Developer
4 salaries
unlock blur

₹2.5 L/yr - ₹13.5 L/yr

Explore more salaries
Compare Js Software with

Google

4.4
Compare

Microsoft Corporation

4.1
Compare

Amdocs

3.8
Compare

Zoho

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