Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Pramata Knowledge Solutions Team. If you also belong to the team, you can get access from here

Pramata Knowledge Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Pramata Knowledge Solutions Senior Software Engineer 1 Interview Questions and Answers

Updated 13 Oct 2023

Pramata Knowledge Solutions Senior Software Engineer 1 Interview Experiences

1 interview found

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

I applied via Instahyre and was interviewed before Oct 2022. There were 5 interview rounds.

Round 1 - Coding Test 

Coding questions on data structures and algorithms

Round 2 - Technical 

(1 Question)

  • Q1. Coding questions on data structures and algorithms
Round 3 - Technical 

(1 Question)

  • Q1. Coding questions on data structures and algorithms
Round 4 - One-on-one 

(1 Question)

  • Q1. Project discussion and design problems discussion
Round 5 - HR 

(1 Question)

  • Q1. General questions

Interview Preparation Tips

Topics to prepare for Pramata Knowledge Solutions Senior Software Engineer 1 interview:
  • DSA

Interview questions from similar companies

I applied via Referral and was interviewed in May 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 

(2 Questions)

  • Q1. 1. merge overlapping interval
  • Ans. 

    Merge overlapping intervals

    • Sort the intervals based on their start time

    • Iterate through the intervals and merge overlapping ones

    • Add the merged intervals to the result

  • Answered by AI
  • Q2. 2. Count number of iceland
  • Ans. 

    The question is unclear and lacks context.

    • The question needs to be rephrased or clarified.

    • It is unclear what 'iceland' refers to.

    • Without more information, it is impossible to answer the question.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This is for the backend developer
1. Prepare Data structure and algorithms very well.
2. Have a thorough understanding of System Design.
3. Database knowledge is a must to have

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Fibonacci, swap without 3rd var
  • Q2. Non repetitive char in string
  • Ans. 

    Find the first non-repetitive character in a string.

    • Iterate through the string and count the occurrences of each character.

    • Return the first character with a count of 1.

  • Answered by AI
Round 2 - Case Study 

Scenario based questions

Skills evaluated in this interview

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

Basic OOP questions for python programming language

Round 2 - HR 

(2 Questions)

  • Q1. What's abstraction
  • Ans. 

    Abstraction is the concept of hiding complex implementation details and showing only the necessary information to the user.

    • Abstraction allows users to focus on what an object does instead of how it does it

    • It helps in reducing complexity and improving efficiency in software development

    • Example: In object-oriented programming, abstract classes and interfaces are used to achieve abstraction

  • Answered by AI
  • Q2. What's the difference between SQL and NoSQL database
  • Ans. 

    SQL databases are relational databases with structured data, while NoSQL databases are non-relational databases with flexible, unstructured data.

    • SQL databases use structured query language for defining and manipulating data, while NoSQL databases use different query languages or APIs.

    • SQL databases are table-based, with a predefined schema, while NoSQL databases are document, key-value, wide-column, or graph-based.

    • SQL d...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Reverse a linked list
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start with three pointers: current, prev, and next

    • Iterate through the linked list, updating pointers to reverse the direction

    • Update the head of the linked list to the last node after reversing

  • Answered by AI
  • Q2. Implement binary search algorithm
  • Ans. 

    Binary search algorithm efficiently finds the target value in a sorted array.

    • Start by defining the low and high indices of the array.

    • Calculate the mid index and compare the target value with the value at mid.

    • If target is less than mid value, update high to mid-1; if greater, update low to mid+1.

    • Repeat until target is found or low is greater than high.

  • Answered by AI
Round 4 - One-on-one 

(2 Questions)

  • Q1. Brief Introduction and basic questions
  • Q2. Future plans and how am i going to achieve them

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Basic Logical programs

Round 2 - Technical 

(4 Questions)

  • Q1. Explain laravel Structure
  • Q2. Database migration
  • Q3. What is indexing in database
  • Q4. What is controller ,What is Route
Round 3 - HR 

(2 Questions)

  • Q1. Why you leave your previous Company
  • Q2. What is your role in previous company
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Aug 2024.

Round 1 - Coding Test 

Medium level leetcode question

Round 2 - Technical 

(2 Questions)

  • Q1. Explain about your project
  • Ans. 

    Developed a web application for managing inventory and sales for a retail store.

    • Used React.js for front-end development

    • Implemented RESTful APIs using Node.js and Express for back-end

    • Utilized MongoDB for database management

    • Incorporated authentication and authorization features for secure access

  • Answered by AI
  • Q2. Explain functionalities in detail
  • Ans. 

    Functionalities in software development refer to the specific tasks or actions that a software program can perform.

    • Functionalities are the specific features or capabilities of a software program.

    • They define what the software can do and how it can be used.

    • Examples of functionalities include user authentication, data encryption, and file management.

    • Functionalities can be implemented through code modules or libraries.

    • Test...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via AmbitionBox

Round 1 - Coding Test 

Java, spring,springboot

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

2 Query question and 3 coding questions

Round 2 - Technical 

(4 Questions)

  • Q1. Basic oops , Java script and Networking questions.
  • Q2. What is object orienteered programming.
  • Ans. 

    Object oriented programming is a programming paradigm based on the concept of objects, which can contain data and code.

    • Objects are instances of classes, which define the structure and behavior of the objects.

    • Encapsulation, inheritance, and polymorphism are key principles of object oriented programming.

    • Example: Java, C++, Python are popular languages that support object oriented programming.

  • Answered by AI
  • Q3. Different Events in java script
  • Ans. 

    Events in JavaScript are actions or occurrences that happen in the browser that the code can respond to.

    • Events can be triggered by user actions (like clicking a button), browser actions (like page load), or system events (like a timer expiring)

    • Event listeners are used to listen for and respond to events

    • Common events include click, mouseover, keydown, submit, etc.

  • Answered by AI
  • Q4. Event listeners
Round 3 - Coding Test 

Project , coding question, DBMS

Round 4 - HR 

(1 Question)

  • Q1. Basic personal details

Skills evaluated in this interview

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

2 DSA questions Both are from DP

Round 2 - Technical 

(2 Questions)

  • Q1. 2 Questions , 1 is DSA
  • Q2. Second question is Puzzle

Interview Preparation Tips

Interview preparation tips for other job seekers - Practise DSA more and give more and more interviews.
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

Pramata Knowledge Solutions Interview FAQs

How many rounds are there in Pramata Knowledge Solutions Senior Software Engineer 1 interview?
Pramata Knowledge Solutions interview process usually has 6 rounds. The most common rounds in the Pramata Knowledge Solutions interview process are Technical, Resume Shortlist and Coding Test.
What are the top questions asked in Pramata Knowledge Solutions Senior Software Engineer 1 interview?

Some of the top questions asked at the Pramata Knowledge Solutions Senior Software Engineer 1 interview -

  1. Coding questions on data structures and algorit...read more
  2. Project discussion and design problems discuss...read more

Tell us how to improve this page.

Pramata Knowledge Solutions Senior Software Engineer 1 Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Mu Sigma Interview Questions
2.6
 • 229 Interviews
Tiger Analytics Interview Questions
3.6
 • 221 Interviews
Fractal Analytics Interview Questions
4.0
 • 207 Interviews
BrowserStack Interview Questions
3.6
 • 48 Interviews
C5i Interview Questions
4.0
 • 44 Interviews
Fleetx.io Interview Questions
3.8
 • 26 Interviews
View all
Pramata Knowledge Solutions Senior Software Engineer 1 Salary
based on 8 salaries
₹18 L/yr - ₹23 L/yr
10% more than the average Senior Software Engineer 1 Salary in India
View more details
Contract Analyst
216 salaries
unlock blur

₹2.6 L/yr - ₹6.8 L/yr

Data Associate
122 salaries
unlock blur

₹2 L/yr - ₹4.1 L/yr

Contracts Analyst
110 salaries
unlock blur

₹2.8 L/yr - ₹4.4 L/yr

Data Analyst
21 salaries
unlock blur

₹2.7 L/yr - ₹6 L/yr

Full Stack Developer
16 salaries
unlock blur

₹7.5 L/yr - ₹20 L/yr

Explore more salaries
Compare Pramata Knowledge Solutions with

Mu Sigma

2.6
Compare

Fractal Analytics

4.0
Compare

LatentView Analytics

3.7
Compare

Tiger Analytics

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