Upload Button Icon Add office photos

Sophos Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Sophos Technologies Web Designer Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview Preparation Tips

Round: Interview
Experience: They asked to write 2 codes on recursion. Then some questions on resume. I asked them about the job profile and after knowing that they were hiring candidates for frontend programming, about which they didn’t mention in JAF. I told them that I was not interested in frontend development. And didn’t even answer any question after that. Unfortunately, I was selected.

General Tips: Plan your schedule judiciously keeping your capacity in mind. There is no point of making ideal plans and then not able to do even 50% of it.
Don’t get into unnecessary arguments or debate with people.
Don’t think about what others are doing. Focus on your preparation.
How you carry yourself matters. So, make sure you portray yourself in the way you want the other person to perceive you.
Be selective while applying for companies.
College Name: IIT Kanpur

I applied via Naukri.com and was interviewed in Nov 2019. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Tell us about yourself and your last job?
  • Ans. 

    I have a diverse background in sales and customer service. In my last job, I worked as a Sales Associate at a retail store.

    • Worked as a Sales Associate at a retail store

    • Assisted customers in finding products and making purchases

    • Handled cash transactions and operated the cash register

    • Maintained a clean and organized sales floor

    • Provided excellent customer service and resolved any issues or complaints

  • Answered by AI
  • Q2. What particular achievements have you had?
  • Ans. 

    I have achieved several milestones in my career, including increasing sales by 20% and receiving a promotion to team lead.

    • Increased sales by 20% through strategic marketing campaigns

    • Received a promotion to team lead for consistently exceeding targets

    • Implemented a new customer service system resulting in improved customer satisfaction ratings

  • Answered by AI
  • Q3. Do an assignment on a competition analysis for our client?
  • Ans. 

    Competition analysis assignment for a client

    • Identify direct and indirect competitors

    • Analyze competitors' products, pricing, and marketing strategies

    • Evaluate competitors' strengths and weaknesses

    • Assess market share and growth potential

    • Identify opportunities and threats in the competitive landscape

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1) If you don't understand a question, ask the interviewer in you own words.
2) Be prepared for multiple rounds of interview but don't panic. The same questions will be asked in each stage, so you will by and large have the same answer, you may have to talk about specific things that each interviewer may ask. But all in all about you and your experience.
3) Always wait for them to make you an offer for salary.
4) When HR makes you an offer. Be prepared that it will not be what you want.
- Just remember that they have a script of questions they will ask, if you answer them then they will think you can be hired at their decided CTC for you. But if you list out more points they can add to their list then they will also have to increase your salary. For example, you will have to spend a certain percentage of your salary on travelling and rent, and need to save more. List out additional online courses you have done that the average candidate has not. Point out to them that you were nominated for an award in your last job. These things count.
5) If you don't know the answer to a question of their's. Then say you don't know. But always, let them know you think you could learn it.
6) Recruiters know you can't know everything, and they don't expect you to. They also want to judge you on honesty, and how you respond to pressure.
7) JUST BREATHE. It will go far better than you planned. All the best!!!!
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

What is the constructor in js give an example

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

(1 Question)

  • Q1. What is use of constructors in Js
  • Ans. 

    Constructors in JavaScript are used to create and initialize objects.

    • Constructors are functions that are used to create new instances of objects.

    • They are called with the 'new' keyword to create a new object based on the constructor's blueprint.

    • They can also be used to set initial values or properties for the object being created.

    • Example: function Person(name, age) { this.name = name; this.age = age; }

    • Example: var perso

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. I don't Remember the question1
Round 2 - Technical 

(2 Questions)

  • Q1. I don't remember the question2
  • Q2. I don't remember the question

I appeared for an interview in Jul 2021.

Round 1 - Video Call 

Round duration - 60 Minutes
Round difficulty - Medium

This round had questions mainly from .NET and ASP .NET Core.

Round 2 - Video Call 

(6 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round started with some questions from DBMS and SQL and then moved on to some more questions from ASP .NET.

  • Q1. Can you explain the concept of ACID properties in DBMS?
  • Ans. 

    ACID properties in DBMS ensure data integrity and consistency in transactions.

    • ACID stands for Atomicity, Consistency, Isolation, Durability.

    • Atomicity ensures that either all operations in a transaction are completed successfully or none are.

    • Consistency ensures that the database remains in a valid state before and after the transaction.

    • Isolation ensures that multiple transactions can run concurrently without affecting e...

  • Answered by AI
  • Q2. What are the different types of joins in SQL?
  • Ans. 

    Different types of joins in SQL include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN: Returns rows when there is a match in both tables.

    • LEFT JOIN: Returns all rows from the left table and the matched rows from the right table.

    • RIGHT JOIN: Returns all rows from the right table and the matched rows from the left table.

    • FULL JOIN: Returns rows when there is a match in one of the tables.

  • Answered by AI
  • Q3. What are constraints in SQL?
  • Ans. 

    Constraints in SQL are rules that are enforced on data columns in a table.

    • Constraints ensure data integrity by enforcing rules on data columns

    • Common constraints include NOT NULL, UNIQUE, PRIMARY KEY, FOREIGN KEY, CHECK

    • Example: NOT NULL constraint ensures a column cannot have a NULL value

  • Answered by AI
  • Q4. What are triggers in SQL?
  • Ans. 

    Triggers in SQL are special stored procedures that are automatically executed when certain events occur in a database.

    • Triggers can be used to enforce business rules, maintain referential integrity, and automate tasks.

    • There are two main types of triggers: Before Triggers and After Triggers.

    • Example: A trigger can be set to automatically update a 'last_modified' column whenever a row is updated in a table.

  • Answered by AI
  • Q5. Can you explain how the HTTP protocol works?
  • Ans. 

    HTTP is a protocol used for transferring data over the internet.

    • HTTP stands for Hypertext Transfer Protocol.

    • It is a request-response protocol where a client sends a request to a server and the server responds with the requested data.

    • HTTP uses methods like GET, POST, PUT, DELETE to specify the action to be performed.

    • Headers are used to provide additional information about the request or response.

    • Status codes like 200 (O...

  • Answered by AI
  • Q6. What is session state in HTTP?
  • Ans. 

    Session state in HTTP refers to the data stored on the server about a user's interactions during a session.

    • Session state allows the server to remember information about a user's interactions during a session.

    • It is typically stored in server-side memory or a database.

    • Session state is used to maintain user authentication, shopping cart contents, and other user-specific data.

    • Cookies are often used to maintain session stat

  • Answered by AI
Round 3 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

This was a Technical Cum HR round where I was first asked some basic OOPS related concepts and then we discussed
about my expectations from the company , learnings and growth in the forthcomig years. I would suggest be honest and
try to communicate your thoughts properly in these type of rounds to maximise your chances of getting selected.

  • Q1. Why should we hire you?
  • Q2. Why are you looking for a job change?

Interview Preparation Tips

Eligibility criteriaAbove 2 years of experienceChetu interview preparation:Topics to prepare for the interview - .NET , OOPS , C# , DBMS , MVC , AptitudeTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected
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 

(2 Questions)

  • Q1. How to update new PHP version
  • Ans. 

    To update PHP version, download the latest version from php.net, backup your files, update php.ini, and restart the server.

    • Download the latest PHP version from php.net

    • Backup your files before updating

    • Update php.ini configuration file

    • Restart the server to apply changes

  • Answered by AI
  • Q2. How to create python in session
  • Ans. 

    To create a Python session, you can use the 'requests' library to make HTTP requests and maintain session state.

    • Import the 'requests' library

    • Create a session object using 'requests.Session()'

    • Use the session object to make HTTP requests, which will automatically handle cookies and other session data

  • Answered by AI
Round 3 - Coding Test 

Php, html , CSS in this relationship

Skills evaluated in this interview

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

I applied via AmbitionBox and was interviewed in Jul 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 - Coding Test 

Uging tag , elements, div, selector, flex box etc

Round 3 - Technical 

(4 Questions)

  • Q1. Html, CSS, JavaScript, bootstrap
  • Q2. Good knowledge for html CS
  • Q3. Bootstrap using responsible website
  • Ans. 

    Bootstrap is a front-end framework that helps in creating responsive websites by using a grid system and predefined classes.

    • Bootstrap provides a grid system with 12 columns that automatically adjusts based on screen size.

    • It includes responsive utility classes like 'd-none' and 'd-md-block' to show/hide content based on screen size.

    • Bootstrap also offers responsive navigation components like the navbar that collapses int

  • Answered by AI
  • Q4. Anything else any more times

Interview Preparation Tips

Interview preparation tips for other job seekers - I have completed dipin Computer science Engineering
I am creative and hard working person

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic maths questions select answer from four question

Round 2 - Aptitude Test 

Tge interview held on call basic

Round 3 - Assignment 

Figma then convert it into html

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

Basics 20 mcq questions from speed,time and distance etc.. followed by tech mcq and coding

Round 2 - Group Discussion 

General topics and trending topics.Use new words

Round 3 - Technical 

(1 Question)

  • Q1. About project and fully resume based question

Tell us how to improve this page.

Interview Questions from Similar Companies

Chetu Interview Questions
3.2
 • 176 Interviews
AVASOFT Interview Questions
2.9
 • 166 Interviews
Oracle Cerner Interview Questions
3.7
 • 158 Interviews
ServiceNow Interview Questions
4.1
 • 121 Interviews
Thomson Reuters Interview Questions
4.1
 • 114 Interviews
Amadeus Interview Questions
3.9
 • 108 Interviews
EbixCash Limited Interview Questions
4.0
 • 103 Interviews
UKG Interview Questions
3.1
 • 103 Interviews
SPRINKLR Interview Questions
3.0
 • 102 Interviews
View all
Sophos Technologies Web Designer Salary
based on 4 salaries
₹8.7 L/yr - ₹10 L/yr
182% more than the average Web Designer Salary in India
View more details
Technical Support Engineer
104 salaries
unlock blur

₹3.5 L/yr - ₹11 L/yr

Senior Software Engineer
87 salaries
unlock blur

₹13.1 L/yr - ₹42 L/yr

Network Security Engineer
69 salaries
unlock blur

₹4 L/yr - ₹12 L/yr

Software Engineer
51 salaries
unlock blur

₹7.8 L/yr - ₹28 L/yr

Software Engineer2
38 salaries
unlock blur

₹8.5 L/yr - ₹24 L/yr

Explore more salaries
Compare Sophos Technologies with

Thomson Reuters

4.1
Compare

Oracle Cerner

3.7
Compare

Chetu

3.3
Compare

R Systems International

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