Upload Button Icon Add office photos

Filter interviews by

Prime Focus Technologies Software Engineer Interview Questions and Answers

Updated 16 Dec 2024

Prime Focus Technologies Software Engineer Interview Experiences

3 interviews found

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

It was a Basic Aptitude Test

Round 2 - Coding Test 

We were asked to do Sorting, SQL queries (join)

Round 3 - HR 

(1 Question)

  • Q1. Can you tell me about yourself?
  • Ans. 

    I am a passionate software engineer with 5 years of experience in developing web applications using various technologies.

    • 5 years of experience in software development

    • Proficient in developing web applications

    • Skilled in using various technologies such as Java, JavaScript, and SQL

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

There was coding test

Round 2 - Technical 

(2 Questions)

  • Q1. 2 technical rounds
  • Q2. Merge sort algorithm
  • Ans. 

    Merge sort is a divide and conquer algorithm that divides the input array into two halves, sorts them separately, and then merges them back together in sorted order.

    • Divide the input array into two halves

    • Recursively sort each half

    • Merge the sorted halves back together

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Leetcode Easy question

Skills evaluated in this interview

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 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 - Technical 

(3 Questions)

  • Q1. Linux commands,
  • Q2. Cloud technologies different services (iaas, paas, saas)
  • Ans. 

    Cloud technologies offer different services like IaaS, PaaS, and SaaS for varying levels of control and management.

    • IaaS (Infrastructure as a Service) provides virtualized computing resources over the internet, such as virtual servers and storage.

    • PaaS (Platform as a Service) offers a platform allowing customers to develop, run, and manage applications without dealing with infrastructure.

    • SaaS (Software as a Service) deli...

  • Answered by AI
  • Q3. What do you know AWS

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up OS basics and cloud technologies.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via LinkedIn and was interviewed in Jun 2024. There were 4 interview rounds.

Round 1 - Screening Round 

(3 Questions)

  • Q1. Current company project and tech stack related
  • Q2. Very basic selenium and java interview questions asked verbally
  • Q3. 30 min interview
Round 2 - Coding Test 

(3 Questions)

  • Q1. Write code in java for following input String s = "abdc112kg45ldy4p9" to get output sum = 170.
  • Q2. Some basic selenium, testng, cucumber bdd questions
  • Q3. Its a 40 min coding round
Round 3 - Technical 

(5 Questions)

  • Q1. Java code in order to find the day if we give jan 1 as monday. then what day is sept 14.
  • Q2. Selenium Xpath related questions to find it in website of flipkart sellers page.
  • Q3. Show nullpointer error using java code.
  • Q4. Selenium, TestNG, Cucumber Questions
  • Q5. 45 min high level technical round
Round 4 - Behavioral 

(3 Questions)

  • Q1. General discussion related to current company tecstack and work.
  • Q2. General Managerial Round/HR Round questions related to cultural or behavioral fit.
  • Q3. 30 min short discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - There are hidden rounds, where they just put after the whole interview process just before joining date in order to eliminate the candidates all of a sudden when you are expected to get an offer.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I was interviewed in Aug 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. My expertise are in golang. And all the questions were straight forward around golang.
  • Q2. What is concurrency. How to check performance of applications. How to handle concurrency. How many no of goroutines can be created and so on.
  • Ans. 

    Concurrency is the ability of a system to run multiple tasks simultaneously. Performance of applications can be checked using profiling tools. Concurrency can be handled using synchronization techniques like mutexes and channels.

    • Concurrency allows multiple tasks to run concurrently, improving performance and responsiveness.

    • Performance of applications can be checked using profiling tools like Go's built-in 'pprof' packa...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. How to make sure there are no vulnerabilities. What engineering principles you follow.
  • Ans. 

    To ensure no vulnerabilities, follow secure coding practices, conduct regular security audits, use encryption, and stay updated on security threats.

    • Follow secure coding practices such as input validation, output encoding, and parameterized queries.

    • Conduct regular security audits to identify and address vulnerabilities in the code.

    • Use encryption to protect sensitive data in transit and at rest.

    • Stay updated on security t...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Sorting of an array
  • Q2. Bubble sorting algorithm
Round 2 - Technical 

(1 Question)

  • Q1. Java oops question
Round 3 - Technical 

(1 Question)

  • Q1. API questions related to put and patch api

Software Engineer Interview Questions & Answers

Cerence user image Shubham Ganesh Vitore

posted on 29 Jul 2024

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

(4 Questions)

  • Q1. What is the design pattern? Singleton Design patter
  • Ans. 

    Singleton design pattern ensures a class has only one instance and provides a global point of access to it.

    • Used when only one instance of a class is needed throughout the system

    • Provides a global access point to the instance

    • Implemented by creating a static method to return the same instance each time it is called

  • Answered by AI
  • Q2. Difference Hashmap and Concurrent Hashmap
  • Ans. 

    HashMap is not thread-safe, while ConcurrentHashMap allows multiple threads to read and write concurrently.

    • HashMap is not synchronized and not thread-safe, while ConcurrentHashMap is synchronized and thread-safe.

    • ConcurrentHashMap allows multiple threads to read and write concurrently without any external synchronization, while HashMap requires external synchronization for concurrent access.

    • ConcurrentHashMap achieves hi...

  • Answered by AI
  • Q3. Collection Framework
  • Q4. Difference between list , set
  • Ans. 

    List is an ordered collection of elements with duplicates allowed, while set is an unordered collection of unique elements.

    • List maintains the order of elements, while set does not guarantee any specific order.

    • List allows duplicate elements, while set does not allow duplicates.

    • Example: List - [1, 2, 3, 1], Set - {1, 2, 3}

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. Questions on OOPS, Core Concepts of C#, SQL
Round 2 - One-on-one 

(1 Question)

  • Q1. Questions on System Design and tricky questions on OOPS
Round 3 - HR 

(1 Question)

  • Q1. Previous organization work culture and expectations
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jul 2024.

Round 1 - Coding Test 

Create an API using Notepad to check if a string is a palindrome or not.

Round 2 - One-on-one 

(1 Question)

  • Q1. Solid principal

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join worst company
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Know your resume and your basics

Round 2 - Coding Test 

Know class diagrams. Very Huge for workday.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just know your resume

Prime Focus Technologies Interview FAQs

How many rounds are there in Prime Focus Technologies Software Engineer interview?
Prime Focus Technologies interview process usually has 2-3 rounds. The most common rounds in the Prime Focus Technologies interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for Prime Focus Technologies Software Engineer 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 Prime Focus Technologies. The most common topics and skills that interviewers at Prime Focus Technologies expect are Software Engineering, ASP.Net, C#.Net, Javascript and Media Player.
What are the top questions asked in Prime Focus Technologies Software Engineer interview?

Some of the top questions asked at the Prime Focus Technologies Software Engineer interview -

  1. Cloud technologies different services (iaas, paas, sa...read more
  2. Merge sort algori...read more
  3. Leetcode Easy quest...read more

Tell us how to improve this page.

Prime Focus Technologies Software Engineer Interview Process

based on 3 interviews

Interview experience

4
  
Good
View more

Fast track your campus placements

View all
Prime Focus Technologies Software Engineer Salary
based on 97 salaries
₹2.6 L/yr - ₹10 L/yr
25% less than the average Software Engineer Salary in India
View more details

Prime Focus Technologies Software Engineer Reviews and Ratings

based on 17 reviews

2.5/5

Rating in categories

2.6

Skill development

1.5

Work-life balance

1.6

Salary

2.7

Job security

1.8

Company culture

1.6

Promotions

1.9

Work satisfaction

Explore 17 Reviews and Ratings
Software Engineer
97 salaries
unlock blur

₹2.6 L/yr - ₹10 L/yr

Senior Software Engineer
86 salaries
unlock blur

₹5.5 L/yr - ₹22 L/yr

Media Associate
85 salaries
unlock blur

₹1.8 L/yr - ₹4.5 L/yr

Video Editor
76 salaries
unlock blur

₹2.3 L/yr - ₹9 L/yr

Executive
47 salaries
unlock blur

₹1.8 L/yr - ₹5.5 L/yr

Explore more salaries
Compare Prime Focus Technologies with

Eros International

2.7
Compare

Reliance Media Works

4.5
Compare

Zee Entertainment Enterprises

3.5
Compare

Balaji Telefilms

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