Upload Button Icon Add office photos

Filter interviews by

Prime Focus Technologies DOT NET Developer Interview Questions and Answers

Updated 7 Jun 2024

Prime Focus Technologies DOT NET Developer Interview Experiences

Interview questions from similar companies

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

It was combination of mcqs and 2 coding questions

Round 2 - Technical 

(3 Questions)

  • Q1. What is oops concepts
  • Ans. 

    Object-oriented programming concepts that focus on objects and classes for better code organization and reusability.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Ability of a class to inherit properties and behavior from another class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation det...

  • Answered by AI
  • Q2. Difference between java nd putjon
  • Ans. 

    Java is a programming language while Putjon is not a recognized term in software development.

    • Java is a widely used programming language for developing applications.

    • Putjon is not a recognized term in software development, it may be a typo or a specific term not commonly used.

    • There is no direct comparison between Java and Putjon as they are not related.

  • Answered by AI
  • Q3. Tell about ur project
Round 3 - One-on-one 

(2 Questions)

  • Q1. What are your strengths
  • Q2. What is ur greatest comeback

Skills evaluated in this interview

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

Coding test was medium to hard leetcode problems.

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

Interview for backend developer with experience in django

Round 2 - HR 

(3 Questions)

  • Q1. Writing ORM queries in django
  • Q2. Database design with foregin and many to many fields
  • Q3. Explain django's request response flow
  • Ans. 

    Django's request response flow involves the request being handled by URL dispatcher, views, middleware, and templates before generating a response.

    • Request is received by URL dispatcher which maps the URL to a view function

    • View function processes the request, interacts with models if needed, and returns a response

    • Middleware can intercept the request and response for additional processing

    • Templates are used to generate HT

  • Answered by AI

Skills evaluated in this interview

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 - Coding Test 

Python interview question and coding

Round 3 - Technical 

(1 Question)

  • Q1. Python related question

Interview Preparation Tips

Interview preparation tips for other job seekers - Best for fresher and experience
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 Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Oops? .net core features
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Feb 2022.

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 - Technical 

(1 Question)

  • Q1. Linked list (detect loop, reverse, delte a node) tree (height, DFS) graph theory concept C++ basic questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Total 3 round of Technical interviews.

Interview Preparation Tips

Interview preparation tips for other job seekers - C++ basics, Algo and Data structure and some basic concept of graph theory.

Interview Questionnaire 

1 Question

  • Q1. Mostly questions in arrays, string operations

I was interviewed before Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

The second round is also written but you need to write programming based on their concept.

  • Q1. 

    Prime Numbers Identification

    Given a positive integer N, your task is to identify all prime numbers less than or equal to N.

    Explanation:

    A prime number is a natural number greater than 1 that has no po...

  • Ans. 

    The naïve approach for this question is to run a loop from the start to the end number. And for each number, check if it is prime or not. If the number is prime, we print it otherwise skip it.

    One optimization to this approach would be to skip all even numbers (except 2 if present in interval) since even numbers are not prime.
    Function to check if a number is prime or not :
    isPrime(n):
    if (n <= 1) return false
    for (i=2;

  • Answered Anonymously
  • Q2. 

    Palindrome String Validation

    Determine if a given string 'S' is a palindrome, considering only alphanumeric characters and ignoring spaces and symbols.

    Note:
    The string 'S' should be evaluated in a case...
  • Ans. 

    The idea is to create a copy of num and recursively pass the copy by reference, and pass num by value. In the recursive calls, divide num by 10 while moving down the recursion tree. While moving up the recursion tree, divide the copy by 10. When they meet in a function for which all child calls are over, the last digit of num will be ith digit from the beginning and the last digit of copy will be ith digit from the end

  • Answered Anonymously
Round 2 - Face to Face 

(6 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical round with questions mainly on Java and OOPS concepts.

  • Q1. What is the difference between static methods and instance methods in Java?
  • Ans. 

    Instance method can access the instance methods and instance variables directly.
    Instance method can access static variables and static methods directly.
    Static methods can access the static variables and static methods directly.
    Static methods can’t access instance methods and instance variables directly. They must use reference to object. And static method can’t use this keyword as there is no instance for ‘this’ to ref

  • Answered Anonymously
  • Q2. What is the difference between an abstract class and an interface in Java?
  • Ans. 

    1) Abstract class can have abstract and non-abstract methods. Interface can have only abstract methods. Since Java 8, it can have default and static methods also.
    2) Abstract class doesn't support multiple inheritance. Interface supports multiple inheritance.
    3) Abstract class can have final, non-final, static and non-static variables. Interface has only static and final variables.
    4) Abstract class can provide the implem...

  • Answered Anonymously
  • Q3. What is the difference between ClassNotFoundException and NoClassDefFoundError in Java?
  • Ans. 

    1. As the name suggests, ClassNotFoundException is an exception while NoClassDefFoundError is an error.
    2. ClassNotFoundException occurs when classpath does not get updated with required JAR files while error occurs when the required class definition is not present at runtime.

  • Answered Anonymously
  • Q4. What is the difference between an Error and an Exception in Java?
  • Ans. 

    1 Type : 
    Error : Classified as an unchecked type 
    Exception : Classified as checked and unchecked 
    2 Package :
    Error : It belongs to java.lang.error 
    Exception : It belongs to java.lang.Exception 
    3 Recoverable/ Irrecoverable : 
    Error : It is irrecoverable
    Exception : It is recoverable
    4 Error : It can't be occur at compile time 
    Exception : It can occur at run time compile time both 
    5 Ex...

  • Answered Anonymously
  • Q5. What is SerialVersionUID in Java?
  • Ans. 

    The serialization at runtime associates with each serializable class a version number called a serialVersionUID, which is used during deserialization to verify that the sender and receiver of a serialized object have loaded classes for that object that are compatible with respect to serialization.

  • Answered Anonymously
  • Q6. What are the requirements for creating an immutable class in Java?
  • Ans. 

    Following are the requirements: 

    The class must be declared as final so that child classes can’t be created.
    Data members in the class must be declared private so that direct access is not allowed.
    Data members in the class must be declared as final so that we can’t change the value of it after object creation.
    A parameterized constructor should initialize all the fields performing a deep copy so that data members can...

  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAYodlee interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime 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

I was interviewed in Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

I was MCQ + Coding round, Their were MCQ Based on DSA, Aptitude and 2 easy coding questions.

  • Q1. 

    Ninja Competition Problem Statement

    Ninja is organizing a coding competition where two teams compete at a time. To keep it fair and interesting, both teams must have an equal number of members. Ninja’s ta...

  • Ans. Brute Force

    We will iterate from 1 to ‘N’ and count the number of even divisors and odd divisors. If they are equal, we will return true, else false.

     

    Algorithm:

     

    1. Declare two variables, ‘Odd_Count’ and ‘Even_Count’, and initialize them with zero.
    2. Start iterating from 1 to ‘N’.
    3. If the current iterator ( say i ) is a divisor of ‘N’ ( N % i == 0 ):
      1. If ‘i’ is odd, increase the ‘Odd_Count’ by 1.
      2. If ‘i’ is even, increase ...
  • Answered Anonymously
  • Q2. 

    Help Bob Out! - Validating IFSC Code

    Bob has just turned 18 and opened a bank account. Being inexperienced with banking, Bob needs your help to validate whether an IFSC code provided by his bank is valid.

    ...
  • Ans. Brute Force

    To check whether the string is a valid IFSC Code or not we can check every character of the string explicitly and check whether the string is in the correct format or not.

     

    Algorithm:-

    1. If the length of the string is not equal to 11, return False.
    2. Else, iterate from the first index to the fourth index.
      1. Check whether the ASCII values of the characters lie between 65 - 90. If not, return False.
    3. If yes, check wh...
  • Answered Anonymously
Round 2 - Video Call 

Round duration - 50 Minutes
Round difficulty - Easy

The nature of the interviewer was very kind. The test was proctored, our webcam and mic were on, and shared my screen.

Round 3 - Video Call 

Round duration - 50 minutes
Round difficulty - Easy

The nature of the interviewer was very kind. The test was proctored, our webcam and mic were on, and shared my screen.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNo criteriaBottomline Technologies interview preparation:Topics to prepare for the interview - Data Structure, Algorithms, Development, Programming Languages, OOPsTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Be strong at your basics.
Tip 2 : Do at least 2 projects and ask to find answers like why are you choosing this tech stack? why did not you choose its alternatives Know your project in and out because they might ask you for a modification in your project?

Application resume tips for other job seekers

Tip 1 : Have some projects on your resume.
Tip 2 : Do not put false things on your resume.
Tip 3 : Try to keep a single-page resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Prime Focus Technologies Interview FAQs

How many rounds are there in Prime Focus Technologies DOT NET Developer interview?
Prime Focus Technologies interview process usually has 1 rounds. The most common rounds in the Prime Focus Technologies interview process are Coding Test.
How to prepare for Prime Focus Technologies DOT NET Developer 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 Javascript, ASP.Net, SQL Server, WCF and C#.

Tell us how to improve this page.

Prime Focus Technologies DOT NET Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

MapmyIndia Interview Questions
3.8
 • 24 Interviews
RGBSI Interview Questions
3.5
 • 23 Interviews
Technicolor Interview Questions
4.0
 • 21 Interviews
Backbase Interview Questions
4.1
 • 21 Interviews
Mentor Graphics Interview Questions
4.0
 • 19 Interviews
3Pillar Global Interview Questions
3.4
 • 18 Interviews
Yodlee Interview Questions
3.8
 • 17 Interviews
Bottomline Interview Questions
3.3
 • 17 Interviews
View all

Fast track your campus placements

View all
Prime Focus Technologies DOT NET Developer Salary
based on 4 salaries
₹4 L/yr - ₹8 L/yr
At par with the average DOT NET Developer Salary in India
View more details
Software Engineer
97 salaries
unlock blur

₹2.6 L/yr - ₹10 L/yr

Senior Software Engineer
84 salaries
unlock blur

₹5.5 L/yr - ₹20.5 L/yr

Video Editor
76 salaries
unlock blur

₹2.3 L/yr - ₹9 L/yr

Media Associate
75 salaries
unlock blur

₹2 L/yr - ₹4.5 L/yr

Content Writer
48 salaries
unlock blur

₹1.8 L/yr - ₹3.2 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.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview