Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Silver Touch Technologies Team. If you also belong to the team, you can get access from here

Silver Touch Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Silver Touch Technologies Web Developer Interview Questions and Answers

Updated 6 Feb 2024

Silver Touch Technologies Web Developer Interview Experiences

2 interviews found

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

I applied via Approached by Company and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Questions related previous experience and normal HR questions
Round 2 - Technical 

(3 Questions)

  • Q1. Given task to work on and based on that question answer of technical expertise
  • Q2. Technical questions
  • Q3. Learn/Discuss about previous experience

Web Developer Interview Questions & Answers

user image Anonymous

posted on 25 Sep 2023

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

I applied via LinkedIn 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 - Aptitude Test 

Some DSA question with simple mcq

Round 3 - Technical 

(3 Questions)

  • Q1. Sql query and some java question
  • Q2. Patten like zig zag
  • Q3. Basic of react if you know
  • Ans. 

    React is a JavaScript library for building user interfaces, focusing on component-based architecture and state management.

    • React uses components to encapsulate UI logic and rendering. Example: <MyComponent />.

    • State management is crucial in React; use 'useState' for local state. Example: const [count, setCount] = useState(0).

    • Props are used to pass data from parent to child components. Example: <ChildComponent na...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Try basic clear

Web Developer Interview Questions Asked at Other Companies

Q1. Last Index of Element The task is to determine the index of the l ... read more
Q2. Check Indices With Given Difference Problem Statement You are pro ... read more
asked in Evalueserve
Q3. Reverse Linked List Problem Statement Given a singly linked list ... read more
asked in Internshala
Q4. Clone a Linked List with Random Pointers Given a linked list wher ... read more
asked in Internshala
Q5. Loot Houses Problem Statement A thief is planning to steal from s ... read more

Top trending discussions

View All
Office Jokes
2w
sudhirnripat74
Verified Icon
·
works at
iVistec Partners India Private Limited
FeedCard Image
Got a question about Silver Touch Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Dec 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Basic question depends on java programming language
  • Q2. As u wish ask the question

Interview Preparation Tips

Interview preparation tips for other job seekers - I am fresher so I have no ideas for interview advice
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. About React Js ,what are the steps to build website by using React js
  • Ans. 

    Building a website with React involves setting up the environment, creating components, managing state, and deploying the app.

    • 1. Set up the development environment using Node.js and npm.

    • 2. Create a new React app using Create React App: `npx create-react-app my-app`.

    • 3. Structure your project by organizing components into folders.

    • 4. Build reusable components, e.g., a Header component for navigation.

    • 5. Manage state using ...

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. Why are you looking for a change?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared about your Project
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Simple question on aptitude test

Round 2 - Coding Test 

Basic questions on html and css javascript and php

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Had questions on html css javascript and php questions

Round 2 - HR 

(1 Question)

  • Q1. They tested communication

I applied via Recruitment Consultant and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is the greatest challenge facing the company?

Interview Preparation Tips

Interview preparation tips for other job seekers - It's really nice , also it's my first interview and I got selected I am really happy on that.Initially they are conducted two rounds like one is technical and another one is HR round In first round they are asking questions which are related to (technical)all web technology courses (like javascript, html, css, angular ,etc) and also some programmatic questions and I answered well those are all questions what they asked. And second round is it's related to personal like about yourself and your background details and some basic information about web development process like that that's it.
Finally I have completed interview successfully ☺️. Thank You.
Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. Runtime pollymorphism

Interview Preparation Tips

Round: Test
Experience: I scored good.
Tips: Core java good knowledge.
Duration: 30 minutes
Total Questions: 25

Round: Technical Interview
Experience: like this many ques from core java and hibernate and sql also and I scored good.
Tips: Command over core java and sql also.

I applied via Naukri.com and was interviewed before Apr 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. As Automation enginner, they are focusing on framework design and tool knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare as per resume

I appeared for an interview before Sep 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

I was asked 2 coding questions, questions from my projects and questions related to different java concepts. One question from cloud computing was also asked.

  • Q1. 

    Maximum Subarray Sum Problem Statement

    Given an array arr of length N consisting of integers, find the sum of the subarray (including empty subarray) with the maximum sum among all subarrays.

    Explanation...

  • Ans. 

    Find the sum of the subarray with the maximum sum among all subarrays in a given array.

    • Iterate through the array and keep track of the current sum and maximum sum seen so far.

    • If the current sum becomes negative, reset it to 0 as it won't contribute to the maximum sum.

    • Return the maximum sum as the result.

    • Example: For input arr = [-2, 1, -3, 4, -1], the maximum subarray sum is 4.

  • Answered by AI
  • Q2. 

    Add Two Numbers as Linked Lists

    You are given two singly linked lists, where each list represents a positive number without any leading zeros.

    Your task is to add these two numbers and return the sum as ...

  • Ans. 

    Add two numbers represented as linked lists and return the sum as a linked list.

    • Traverse both linked lists simultaneously while keeping track of carry

    • Create a new linked list to store the sum

    • Handle cases where one list is longer than the other

    • Consider edge cases like carry at the end of addition

  • Answered by AI
Round 2 - HR 

Round duration - 15 minutes
Round difficulty - Easy

It was a normal discussion about the role, the job expectations and about the company culture.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Bharati Vidyapeeth's College of Engineering. I applied for the job as SDE - 1 in DelhiEligibility criteriaAbove 8 CGPANewgen Software interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, System Design, OOPS, Dynamic Programming, AptitudeTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Do at-least 200+ dsa problems from various topics.
Tip 2 : Make 2-3 projects and be well versed with their functionality.
Tip 3 : Practice aptitude questions and time yourself while doing the questions.

Application resume tips for other job seekers

Tip 1: Keep your resume short, try to make it one pager only.
Tip 2: Mention only position specific projects, and if you have got a good academic score mention it on top.

Final outcome of the interviewSelected

Skills evaluated in this interview

Silver Touch Technologies Interview FAQs

How many rounds are there in Silver Touch Technologies Web Developer interview?
Silver Touch Technologies interview process usually has 2-3 rounds. The most common rounds in the Silver Touch Technologies interview process are Technical, Resume Shortlist and Aptitude Test.
What are the top questions asked in Silver Touch Technologies Web Developer interview?

Some of the top questions asked at the Silver Touch Technologies Web Developer interview -

  1. Basic of react if you k...read more
  2. Given task to work on and based on that question answer of technical expert...read more
  3. Sql query and some java quest...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 2 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.7
 • 374 Interviews
3i Infotech Interview Questions
3.4
 • 151 Interviews
Microland Interview Questions
3.5
 • 137 Interviews
Sify Technologies Interview Questions
3.8
 • 131 Interviews
Mastek Interview Questions
3.6
 • 127 Interviews
Maveric Systems Interview Questions
3.5
 • 124 Interviews
Sonata Software Interview Questions
3.4
 • 122 Interviews
View all
Silver Touch Technologies Web Developer Salary
based on 13 salaries
₹3.5 L/yr - ₹7 L/yr
5% more than the average Web Developer Salary in India
View more details

Silver Touch Technologies Web Developer Reviews and Ratings

based on 2 reviews

3.0/5

Rating in categories

3.9

Skill development

3.0

Work-life balance

2.9

Salary

3.9

Job security

4.9

Company culture

2.9

Promotions

3.0

Work satisfaction

Explore 2 Reviews and Ratings
Software Developer
116 salaries
unlock blur

₹2 L/yr - ₹9.2 L/yr

Java Developer
90 salaries
unlock blur

₹2.4 L/yr - ₹9.7 L/yr

Senior Software Developer
72 salaries
unlock blur

₹4 L/yr - ₹13.1 L/yr

Project Manager
53 salaries
unlock blur

₹5.2 L/yr - ₹16.8 L/yr

Software Engineer
51 salaries
unlock blur

₹2.8 L/yr - ₹11.4 L/yr

Explore more salaries
Compare Silver Touch Technologies with

ITC Infotech

3.7
Compare

3i Infotech

3.4
Compare

Sify Technologies

3.8
Compare

Microland

3.5
Compare
write
Share an Interview