Upload Button Icon Add office photos

Filter interviews by

Pratham Software Software Engineer Interview Questions and Answers

Updated 17 Feb 2024

Pratham Software Software Engineer Interview Experiences

1 interview found

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

I applied via campus placement at Centre for Development of Advanced Computing (CDAC) and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Online Basic aptitude questions test.

Round 2 - Technical 

(1 Question)

  • Q1. OOP concepts Write a class.
  • Ans. 

    A class representing a car with properties and methods.

    • Create a class named Car

    • Add properties like make, model, year, color

    • Include methods like start(), stop(), accelerate(speed), brake()

    • Example: class Car { constructor(make, model, year, color) { this.make = make; this.model = model; this.year = year; this.color = color; } start() { console.log('Car started'); } stop() { console.log('Car stopped'); } accelerate(speed)...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. General discussions Background, education

Interview questions from similar companies

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

I applied via campus placement at Sri Indu College of Engineering & Technology, Hyderabad and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Arithmetic, verbal, and verbal skills.

Round 2 - Coding Test 

Please write a code for generating the Fibonacci sequence.

Round 3 - Technical 

(2 Questions)

  • Q1. What are the key features and concepts of the C programming language?
  • Q2. What is an array
Round 4 - HR 

(1 Question)

  • Q1. When would you be able to join?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare thoroughly when you are searching.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Write a Simple GET, POST Flask Application?
  • Q2. Assign Values to a Cookie - Flask Application
Round 2 - Coding Test 

- Convert a given input of keys-values to value-keys using Python

Interview Preparation Tips

Interview preparation tips for other job seekers - Know Python well, Solve some DSA problems
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
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
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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Company overview, salary + perks and bonuses, team, project and culture

Interview Preparation Tips

Interview preparation tips for other job seekers - I had an intro call from HR. It was so nice to speak with her. She told me about the company, culture and team. We have covered everything. Then I have introduced myself, told her my preferences etc. Overall, I left really satisfied! Recommended!
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Storage types, structures, padding
  • Q2. Bit operations in C language
  • Ans. 

    Bit operations in C language involve manipulating individual bits within a data structure.

    • Bitwise AND (&) - sets a bit to 1 only if both input bits are 1

    • Bitwise OR (|) - sets a bit to 1 if either input bit is 1

    • Bitwise XOR (^) - sets a bit to 1 if the input bits are different

    • Bitwise NOT (~) - inverts all bits in a number

    • Left shift (<<) - shifts bits to the left by a specified number of positions

    • Right shift (>>) - shifts

  • Answered by AI

Skills evaluated in this interview

I applied via Campus Placement

Round 1 - HackerEarth Frontend Development 

(1 Question)

  • Q1. It was a file upload challenge in which contestants had to build a frontend using ReactJs.
Round 2 - Technical 

(1 Question)

  • Q1. It was a brief technical interview in which they emphasized practicality above explanations. I was asked fundamental javascript questions.
Round 3 - HR 

(1 Question)

  • Q1. I was questioned on the fundamentals like my experience, resume, and my future plans.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with your resume and be confident.
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

Pratham Software Interview FAQs

How many rounds are there in Pratham Software Software Engineer interview?
Pratham Software interview process usually has 3 rounds. The most common rounds in the Pratham Software interview process are Aptitude Test, Technical and HR.
How to prepare for Pratham Software 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 Pratham Software. The most common topics and skills that interviewers at Pratham Software expect are AWS, Agile, B2B, Devops and Entity Framework.

Tell us how to improve this page.

Pratham Software Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Pratham Software Software Engineer Salary
based on 122 salaries
₹5.2 L/yr - ₹14.2 L/yr
21% more than the average Software Engineer Salary in India
View more details

Pratham Software Software Engineer Reviews and Ratings

based on 16 reviews

4.5/5

Rating in categories

4.1

Skill development

4.3

Work-life balance

4.2

Salary

4.5

Job security

4.8

Company culture

3.8

Promotions

4.3

Work satisfaction

Explore 16 Reviews and Ratings
Software Engineer
122 salaries
unlock blur

₹5.2 L/yr - ₹14.2 L/yr

Senior Software Engineer
113 salaries
unlock blur

₹6.5 L/yr - ₹18.6 L/yr

System Analyst
54 salaries
unlock blur

₹10 L/yr - ₹22 L/yr

Lead Software Engineer
20 salaries
unlock blur

₹15 L/yr - ₹24.5 L/yr

Senior System Analyst
20 salaries
unlock blur

₹13 L/yr - ₹24 L/yr

Explore more salaries
Compare Pratham Software with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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