Upload Button Icon Add office photos

Filter interviews by

JSA web Solutions Interview Questions and Answers

Updated 17 Jul 2023

JSA web Solutions Interview Experiences

1 interview found

Technical Lead Interview Questions & Answers

user image Jarnail Singh

posted on 17 Jul 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

(5 Questions)

  • Q1. How to handle multiple inheritances in PHP. Explain with example and also give details of implementation in your favorite framework
  • Ans. 

    Multiple inheritances in PHP can be handled using interfaces to achieve a form of multiple inheritance.

    • PHP does not support multiple inheritance for classes, but it can be achieved using interfaces.

    • Create multiple interfaces with the desired methods and implement them in the class.

    • Example: interface Interface1 { public function method1(); } interface Interface2 { public function method2(); } class MyClass implements In...

  • Answered by AI
  • Q2. What is need of PDO and give 5 benefits of using it?
  • Ans. 

    PDO (PHP Data Objects) is a database access layer providing a consistent interface for accessing databases in PHP.

    • Prevents SQL injection attacks by using prepared statements

    • Supports multiple database drivers like MySQL, PostgreSQL, SQLite, etc.

    • Provides error handling through exceptions

    • Allows for parameterized queries for improved performance

    • Promotes code reusability and maintainability

  • Answered by AI
  • Q3. Git branches and how to use
  • Ans. 

    Git branches are used to work on separate features or fixes without affecting the main codebase.

    • Create a new branch using 'git checkout -b branch_name'

    • Switch between branches using 'git checkout branch_name'

    • Merge branches using 'git merge branch_name'

    • Delete a branch using 'git branch -d branch_name'

  • Answered by AI
  • Q4. What is middleware in PHP.
  • Ans. 

    Middleware in PHP is a layer of code that acts as a bridge between the request and response in an application.

    • Middleware can intercept and modify HTTP requests before they reach the application's core logic.

    • It can also modify the HTTP response before it is sent back to the client.

    • Middleware can be used for authentication, logging, error handling, and more.

    • Examples of middleware in PHP frameworks include Laravel's middl...

  • Answered by AI
  • Q5. What are access specifiers. Explain with examples and use cases
  • Ans. 

    Access specifiers in programming define the visibility of classes, methods, and variables.

    • Access specifiers include public, private, protected, and default.

    • Public: accessible from any class.

    • Private: only accessible within the same class.

    • Protected: accessible within the same package and subclasses.

    • Default: accessible within the same package.

    • Use cases: Encapsulation, data hiding, and controlling access to class members.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Need OOPs and framework knowledge strong.

Skills evaluated in this interview

Technical Lead Interview Questions asked at other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to production deployment and tools used in the process. 2. What is auto-scaling in a microservices architecture? 3. Difference between micro-service and serverless. 4. If you were going t... read more
View answer (4)

Interview questions from similar companies

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Timing: Morning
How was the environment? It happened in the Computer Lab of my institution
All students were assigned a computer and we had to solve questions on hackerrank

  • Q1. 

    Order of People Heights Problem Statement

    Consider 'N' individuals numbered from 0 to N-1 standing in a queue. You are provided with two arrays: Height and Infront, each consisting of 'N' non-negative int...

  • Ans. 

    The task is to find the actual order of people in a queue based on their heights and the number of taller people in front of them.

    • Iterate through the given arrays and create a list of tuples containing the height and number of taller people for each person.

    • Sort the list of tuples in descending order of height and ascending order of the number of taller people.

    • Create an empty result list and insert each tuple into the r...

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Round was a mix of concepts from OOPS, OS and Problem Solving

  • Q1. 

    Binary Search Tree Value Finder

    Given a Binary Search Tree (BST) and a key value 'X', determine if there exists a node within the BST containing the value 'X'.

    Example:

    Input:
    Consider the tree represe...
  • Ans. 

    The task is to find if a given value is present in a Binary Search Tree (BST).

    • Start from the root node and compare the value with the target value.

    • If the value matches, return true.

    • If the target value is less than the current node value, move to the left child.

    • If the target value is greater than the current node value, move to the right child.

    • Repeat the process until a match is found or a leaf node is reached.

    • If a leaf...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPANVIDIA interview preparation:Topics to prepare for the interview - Data Structures, Algorithms(basic), DBMS, Operating systems, basics of web development.Time required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Tip 1 : Try to code the data structures that you have learned to understand things better
Tip 2 : Try to solve the problem even if it is the worst possible solution you think and then try to optimize don't jump to get the
best possible solution
Tip 3 : Discuss things among peers it helps to improve the understanding, even try to teach someone anything new you learn, this is very helpful during the interviews as you will have habit of explaining things

Application resume tips for other job seekers

Tip 1 : Try to be honest in the resume don't write something you don't know, most of the time it backfires.
Tip 2 : Try to make 2 good projects for cv and know about the challenges you can face on the project and think about how you can solve that challenge.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. How to get opportunities in Colt
  • Ans. Need thorough knowledge on ethernet over SDH,DWDM and OTN.
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a great opportunity if you get a chance to join at Colt. Have a good work life balance 😊 and good features for employees as well.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. C and Cpp all concepts
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Aptitude was quite easy with simple python questions

Round 2 - Coding Test 

Asked basic questions on numpy and pandas

Interview Preparation Tips

Topics to prepare for Seagate Intern interview:
  • Python
  • SQL
Interview preparation tips for other job seekers - Prepare for basic questions dont stress too much

Intern Interview Questions & Answers

Seagate user image Shivani Mukunde

posted on 1 Aug 2024

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

(2 Questions)

  • Q1. Python program questions
  • Q2. OOPS based programming questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. DSA - Linked List, Array and Strings
Round 2 - HR 

(1 Question)

  • Q1. Why should we hire you
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. What is hyperparameter tuning?
  • Ans. 

    Hyperparameter tuning is the process of selecting the best set of hyperparameters for a machine learning model.

    • Hyperparameters are parameters that are set before the learning process begins.

    • Hyperparameter tuning involves adjusting hyperparameters to optimize the model's performance.

    • Common techniques for hyperparameter tuning include grid search, random search, and Bayesian optimization.

  • Answered by AI
  • Q2. How do we train neural networks?
  • Ans. 

    Neural networks are trained using algorithms that adjust the weights and biases of the network based on the input data and desired output.

    • Neural networks are trained using a process called backpropagation, where the error between the predicted output and the actual output is used to adjust the weights and biases of the network.

    • Training data is fed into the neural network, and the network's output is compared to the des...

  • Answered by AI
  • Q3. What is overfitting?
  • Ans. 

    Overfitting occurs when a machine learning model learns the training data too well, including noise and outliers, leading to poor generalization on new data.

    • Overfitting happens when a model is too complex and captures noise in the training data.

    • It can be identified when a model performs well on training data but poorly on unseen data.

    • Techniques to prevent overfitting include cross-validation, regularization, and early ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join. Too much politics and racism. They only prefer regional candidates.

Skills evaluated in this interview

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

Psuedo code based test

Round 2 - One-on-one 

(1 Question)

  • Q1. Coding question in any language of choice
Round 3 - One-on-one 

(1 Question)

  • Q1. Multiple questions based on networking, OS, DSA, ML, puzzles and one coding question as well
Round 4 - One-on-one 

(1 Question)

  • Q1. Interview with manager - combination of technical and behavioral
Round 5 - One-on-one 

(1 Question)

  • Q1. Interview with Director - Technical theory questions based on networking
Round 6 - HR 

(1 Question)

  • Q1. No specific questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Have strong foundation in coding and networking concepts
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Basic coding questions

Round 2 - One-on-one 

(3 Questions)

  • Q1. Core subjects like Operating System, Networking
  • Q2. TCP, UDP protocols, working
  • Q3. OSI, TC/IP working model

JSA web Solutions Interview FAQs

How many rounds are there in JSA web Solutions interview?
JSA web Solutions interview process usually has 2 rounds. The most common rounds in the JSA web Solutions interview process are Resume Shortlist and One-on-one Round.
How to prepare for JSA web Solutions 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 JSA web Solutions. The most common topics and skills that interviewers at JSA web Solutions expect are Facebook, SEO, MS Office, Organizing and PR.
What are the top questions asked in JSA web Solutions interview?

Some of the top questions asked at the JSA web Solutions interview -

  1. How to handle multiple inheritances in PHP. Explain with example and also give ...read more
  2. What is need of PDO and give 5 benefits of using ...read more
  3. What are access specifiers. Explain with examples and use ca...read more

Tell us how to improve this page.

JSA web Solutions Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Indus Towers Interview Questions
3.8
 • 183 Interviews
Nvidia Interview Questions
3.7
 • 108 Interviews
BT Business Interview Questions
4.0
 • 81 Interviews
Arista Networks Interview Questions
4.1
 • 43 Interviews
ITI Interview Questions
3.6
 • 34 Interviews
Seagate Interview Questions
3.3
 • 17 Interviews
Sandvine Interview Questions
3.2
 • 17 Interviews
View all

JSA web Solutions Reviews and Ratings

based on 5 reviews

3.3/5

Rating in categories

2.1

Skill development

1.9

Work-life balance

1.4

Salary

1.8

Job security

2.4

Company culture

1.4

Promotions

2.4

Work satisfaction

Explore 5 Reviews and Ratings
Compare JSA web Solutions with

Indus Towers

3.8
Compare

BT Business

4.0
Compare

Nvidia

3.7
Compare

Colt Technology Services

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