Upload Button Icon Add office photos

Filter interviews by

Priyam Innovations Full Stack Software Developer Interview Questions and Answers for Experienced

Updated 27 May 2024

Priyam Innovations Full Stack Software Developer Interview Experiences for Experienced

1 interview found

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

I applied via LinkedIn and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Hoisting, closures, classed in javascript
Round 2 - Coding Test 

Task based on the Reactjs on the codesandbox

Interview questions from similar companies

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

(2 Questions)

  • Q1. What is abstract class
  • Ans. 

    Abstract class is a class that cannot be instantiated and is used as a blueprint for other classes to inherit from.

    • Cannot be instantiated directly

    • Can have abstract methods that must be implemented by subclasses

    • Can have non-abstract methods that can be inherited by subclasses

    • Used to define common behavior for subclasses

  • Answered by AI
  • Q2. What are access modifier
  • Ans. 

    Access modifiers are keywords in programming languages that define the accessibility of classes, methods, and variables.

    • Access modifiers control the visibility and accessibility of classes, methods, and variables in a program.

    • Common access modifiers include public, private, protected, and default (package-private).

    • Public access modifier allows access from any other class.

    • Private access modifier restricts access to only...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Git version tool
  • Q2. Project related question
Round 3 - HR 

(1 Question)

  • Q1. Salary expectation

Skills evaluated in this interview

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

(5 Questions)

  • Q1. What is concurrent hashmap
  • Ans. 

    ConcurrentHashMap is a thread-safe implementation of the HashMap class in Java.

    • ConcurrentHashMap allows multiple threads to read and write to the map concurrently without causing any data corruption.

    • It achieves thread-safety by dividing the map into segments, each of which can be locked independently.

    • ConcurrentHashMap is more efficient than using synchronized collections for concurrent access.

    • Example: ConcurrentHashMap

  • Answered by AI
  • Q2. How is dependency injection different from dependency inversion
  • Ans. 

    Dependency injection is a design pattern where dependencies are provided to a class from the outside, while dependency inversion is a principle that states high-level modules should not depend on low-level modules, but both should depend on abstractions.

    • Dependency injection is a technique to achieve dependency inversion.

    • Dependency injection involves providing dependencies to a class from the outside, typically through ...

  • Answered by AI
  • Q3. If I add 2 same attribute values for a object to a set...will I see 2 objects in the set, if yes what changes you make to the code to insert unique objects to a set
  • Ans. 

    No, you will not see 2 objects in the set. To insert unique objects to a set, you can override the equals() and hashCode() methods in the object class.

    • In a set, each element must be unique based on the equals() method. If you add 2 objects with the same attribute values, only one will be stored in the set.

    • To ensure uniqueness, override the equals() and hashCode() methods in the object class. This will define how object...

  • Answered by AI
  • Q4. What is serialisation, externalisation, serializable
  • Ans. 

    Serialisation is the process of converting an object into a format that can be easily stored or transmitted. Externalisation is a way to customize the serialization process. Serializable is an interface in Java that allows objects to be serialized.

    • Serialisation is the process of converting an object into a format that can be easily stored or transmitted

    • Externalisation is a way to customize the serialization process

    • Seri...

  • Answered by AI
  • Q5. Write a Generic method to add string or integer to List or List
  • Ans. 

    Create a generic method to add string or integer to List or List

    • Create a generic method that takes a List and an element as input

    • Use Java generics to specify the type of List and element

    • Check the type of List and element, then add the element to the List

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Preparation of core Java is needed...not even a single minute is used to tell any of your project experience

Skills evaluated in this interview

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Python langauge questions.
Round 2 - One-on-one 

(1 Question)

  • Q1. Related to projects mentioned in my Resume.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. What is closures in JS ?
  • Ans. 

    Closures in JavaScript are functions that have access to variables from their outer scope, even after the outer function has finished executing.

    • Closures are created when a function is defined inside another function.

    • The inner function has access to the outer function's variables, parameters, and even the outer function's return value.

    • Closures are useful for creating private variables and data encapsulation.

    • They can be ...

  • Answered by AI
  • Q2. Diff props and state ?
  • Ans. 

    Props and state are both used in React to manage and pass data, but they have different purposes and behaviors.

    • Props are read-only and passed from parent components to child components.

    • State is mutable and managed within a component.

    • Props are used to pass data from a parent component to a child component.

    • State is used to manage and update data within a component.

    • Props are passed as attributes to a component in JSX.

    • Stat...

  • Answered by AI
  • Q3. How to optimise the performance ?
  • Ans. 

    Performance optimization involves identifying and resolving bottlenecks to improve the efficiency of software.

    • Identify and analyze performance bottlenecks

    • Optimize algorithms and data structures

    • Improve database performance through indexing and query optimization

    • Use caching techniques to reduce database and network calls

    • Minimize network latency by optimizing network requests

    • Optimize front-end code by reducing DOM manipul...

  • Answered by AI
  • Q4. Diff between class based or function based component ?
  • Ans. 

    Class-based components are ES6 classes that extend React.Component, while function-based components are functions that return JSX.

    • Class-based components are more feature-rich and have access to lifecycle methods.

    • Function-based components are simpler and easier to read and test.

    • Class-based components can have state and use lifecycle methods like componentDidMount and componentDidUpdate.

    • Function-based components can use ...

  • Answered by AI
  • Q5. What is es6 features ?
  • Ans. 

    ES6 (ECMAScript 2015) introduced several new features to JavaScript, enhancing its functionality and making it more efficient.

    • Arrow functions: concise syntax for writing functions

    • Let and const: block-scoped variables

    • Template literals: easier string interpolation

    • Destructuring assignment: extracting values from arrays or objects

    • Spread syntax: expanding elements in arrays or objects

    • Classes: syntactical sugar for creating ...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Tell me about yourself
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude test basic on java

Round 2 - HR 

(2 Questions)

  • Q1. Java aptitude questions
  • Q2. Web technologies
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at CVR College of Engineering, Hyderabad and was interviewed before Sep 2022. There were 4 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 - Aptitude Test 

It was Maths problems Aptitude

Round 3 - Coding Test 

@ simple coding questions were asked

Round 4 - One-on-one 

(1 Question)

  • Q1. It was behaviour Round

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions were easy.

I applied via Walk-in and was interviewed in Nov 2020. There were 5 interview rounds.

Interview Questionnaire 

25 Questions

  • Q1. Briefly explain the method you will use to execute an array linked list?
  • Ans. 

    An array linked list can be executed using a loop to traverse through the array and access the linked nodes.

    • Create an array to store the linked nodes

    • Assign the first node to the first element of the array

    • Use a loop to traverse through the array and access the linked nodes

    • To access the next node, use the index of the current node as the index of the next node in the array

    • Stop the loop when the last node is reached

  • Answered by AI
  • Q2. What are character constants in C++?
  • Ans. 

    Character constants are fixed values represented by a single character in C++.

    • They are enclosed in single quotes (' ')

    • Examples include 'a', 'B', '5', '$'

    • They are also known as character literals

  • Answered by AI
  • Q3. Define the terms OSI, TCP & IP.
  • Ans. 

    OSI, TCP & IP are networking protocols used for communication between devices on a network.

    • OSI (Open Systems Interconnection) is a conceptual model that defines how data is transmitted over a network.

    • TCP (Transmission Control Protocol) is a protocol that ensures reliable transmission of data between devices.

    • IP (Internet Protocol) is a protocol that handles the addressing and routing of data packets between devices on a...

  • Answered by AI
  • Q4. What are streams in C++? What are predefined streams in C++?
  • Ans. 

    Streams in C++ are used for input and output operations. Predefined streams in C++ include cin, cout, cerr, and clog.

    • Streams in C++ are objects that allow reading from or writing to external sources or destinations.

    • cin is the standard input stream used for reading input from the user.

    • cout is the standard output stream used for printing output to the console.

    • cerr is the standard error stream used for printing error mess...

  • Answered by AI
  • Q5. Define RDBMS.
  • Ans. 

    RDBMS stands for Relational Database Management System.

    • It is a type of database management system that stores data in tables with relationships between them.

    • It uses SQL (Structured Query Language) to manipulate and retrieve data.

    • Examples include MySQL, Oracle, and Microsoft SQL Server.

  • Answered by AI
  • Q6. What do you mean by normalisation?
  • Ans. 

    Normalisation is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • It involves breaking down a table into smaller tables and defining relationships between them.

    • Normalization helps to eliminate data inconsistencies and anomalies.

    • There are different levels of normalization, with each level having specific rules to follow.

    • Examples of normalization include converting repeating gr...

  • Answered by AI
  • Q7. Where do we generally create INDEX?
  • Ans. 

    INDEX is generally created on columns that are frequently used in WHERE, JOIN, and ORDER BY clauses.

    • INDEX improves the performance of SELECT queries.

    • INDEX should be created on columns with high selectivity.

    • INDEX should not be created on columns with low selectivity.

    • Examples of columns to create INDEX on are primary keys, foreign keys, and columns used in search queries.

  • Answered by AI
  • Q8. What is object oriented model?
  • Ans. 

    Object oriented model is a programming paradigm that uses objects to represent real-world entities.

    • Objects have properties and methods that define their behavior

    • Encapsulation, inheritance, and polymorphism are key concepts in OOP

    • Examples of OOP languages include Java, C++, and Python

  • Answered by AI
  • Q9. What is the "top-n analysis" in DBMS?
  • Ans. 

    Top-n analysis is a technique used in DBMS to retrieve the top n records based on a specific criteria.

    • Used to retrieve top n records

    • Based on specific criteria

    • Commonly used in data analysis and reporting

  • Answered by AI
  • Q10. Why is DML provided?
  • Ans. 

    DML is provided to manipulate data in a database.

    • DML stands for Data Manipulation Language.

    • It is used to insert, update, delete, and retrieve data from a database.

    • DML commands include INSERT, UPDATE, DELETE, and SELECT.

    • DML is essential for managing and maintaining data in a database.

  • Answered by AI
  • Q11. What are reference variables and how is it defined in C++?
  • Ans. 

    Reference variables in C++ are aliases for other variables, allowing direct access and manipulation of the original data.

    • Reference variables are declared using an ampersand (&) symbol.

    • They must be initialized when declared and cannot be reassigned to refer to a different variable.

    • Changes made to a reference variable affect the original variable it refers to.

    • They are commonly used to pass variables by reference to funct...

  • Answered by AI
  • Q12. Differentiate RDBMS and DBMS.
  • Ans. 

    RDBMS is a type of DBMS that stores data in a structured manner using tables with relationships.

    • RDBMS stands for Relational Database Management System

    • Data is stored in tables with predefined relationships

    • Data is accessed using SQL (Structured Query Language)

    • Examples include MySQL, Oracle, and SQL Server

    • DBMS is a broader term that includes all types of database management systems

    • Examples of DBMS include MongoDB, Cassand

  • Answered by AI
  • Q13. What are the various forms of normalisation?
  • Ans. 

    Normalization is a process of organizing data in a database to eliminate redundancy and improve data integrity.

    • First Normal Form (1NF) - Eliminate duplicate data by separating them into multiple tables.

    • Second Normal Form (2NF) - Remove partial dependencies by creating separate tables for sets of attributes.

    • Third Normal Form (3NF) - Eliminate transitive dependencies by creating separate tables for related attributes.

    • Boy...

  • Answered by AI
  • Q14. Can you tell us something about scope rules in C++?
  • Ans. 

    Scope rules in C++ determine the visibility and accessibility of variables and functions within a program.

    • Variables declared within a block have local scope and are only accessible within that block.

    • Global variables have file scope and can be accessed from any function within the file.

    • Function parameters have function scope and are only accessible within that function.

    • Nested blocks can have their own scope, and variabl...

  • Answered by AI
  • Q15. Do you think BCNF is better than 2NF & 3NF? Why?
  • Ans. 

    BCNF is not necessarily better than 2NF & 3NF, it depends on the specific requirements of the database.

    • BCNF is the highest normal form and ensures that there are no non-trivial functional dependencies between any subset of candidate keys.

    • 2NF and 3NF are also important and should be used when appropriate.

    • For example, if a database has a composite primary key and non-key attributes that depend on only one part of the key...

  • Answered by AI
  • Q16. What is Operating System?
  • Ans. 

    An operating system is a software that manages computer hardware and software resources.

    • It acts as an interface between the user and the computer hardware.

    • It provides services to applications and manages system resources.

    • Examples include Windows, macOS, Linux, Android, and iOS.

  • Answered by AI
  • Q17. Differentiate exclusive lock and shared lock.
  • Ans. 

    Exclusive lock is used when a resource is being modified and prevents other processes from accessing it. Shared lock allows multiple processes to read a resource simultaneously.

    • Exclusive lock is used for write operations, while shared lock is used for read operations.

    • Exclusive lock blocks other processes from acquiring both exclusive and shared locks on the same resource.

    • Shared lock allows multiple processes to acquire...

  • Answered by AI
  • Q18. What is difference between rand() and srand()?
  • Ans. 

    rand() generates a random number, srand() seeds the random number generator.

    • rand() generates a pseudo-random number between 0 and RAND_MAX

    • srand() sets the seed for the random number generator used by rand()

    • srand() should be called before rand() to ensure different sequences of random numbers

    • Example: srand(time(NULL)) sets the seed to the current time, ensuring a different sequence each time the program is run

  • Answered by AI
  • Q19. Define subquery.
  • Ans. 

    A subquery is a query within another query used to retrieve data that will be used in the main query.

    • Subqueries are enclosed in parentheses and placed within the WHERE clause of the main query.

    • They can be used to filter results based on a condition that involves data from another table.

    • Subqueries can also be used in the SELECT, FROM, and HAVING clauses.

    • Examples include finding the average salary of employees in a depar...

  • Answered by AI
  • Q20. Explain these terms - Linked List, Stack, Queue.
  • Ans. 

    Linked List is a linear data structure. Stack and Queue are abstract data types.

    • Linked List: A collection of nodes where each node points to the next node.

    • Stack: A data structure where elements are added and removed from the top only.

    • Queue: A data structure where elements are added at the rear and removed from the front only.

    • Example: Browser history can be implemented using a Linked List.

    • Example: Undo/Redo functionalit...

  • Answered by AI
  • Q21. Define triggers. Give its applications.
  • Ans. 

    Triggers are events that initiate an action or set of actions. They are commonly used in databases and automation systems.

    • Triggers are used in databases to automatically execute a set of actions when a certain event occurs, such as inserting or updating data.

    • They can also be used in automation systems to initiate a process or workflow when a specific event occurs, such as receiving an email or a file upload.

    • Triggers ca...

  • Answered by AI
  • Q22. What is the difference between a "semaphore" and a "monitor"?
  • Ans. 

    Semaphore and monitor are synchronization tools used in concurrent programming.

    • Semaphore is a signaling mechanism that allows multiple threads to access a shared resource simultaneously.

    • Monitor is a synchronization construct that allows threads to have both mutual exclusion and the ability to wait (block) for a certain condition to become true.

    • Semaphore is a lower-level primitive, while monitor is a higher-level abstra...

  • Answered by AI
  • Q23. Discuss transparent DBMS.
  • Ans. 

    Transparent DBMS allows users to see and control the underlying database operations.

    • Transparent DBMS provides visibility into the database operations and allows users to monitor and control them.

    • It enables users to see how data is being stored, accessed, and manipulated in real-time.

    • Examples include Oracle Transparent Data Encryption and Microsoft SQL Server Transparent Data Encryption.

    • Transparent DBMS can improve secu...

  • Answered by AI
  • Q24. What is RDBMS KERNEL?
  • Ans. 

    RDBMS KERNEL is not a commonly used term in the industry.

    • There is no widely accepted definition of RDBMS KERNEL.

    • It may refer to the core components of a relational database management system.

    • It could also be a term used by a specific company or product.

    • Without more context, it is difficult to provide a specific answer.

  • Answered by AI
  • Q25. What is the difference between primary key, foreign key, candidate key & super key?
  • Ans. 

    Primary key uniquely identifies a record, foreign key links tables, candidate key can be primary key, super key is a set of attributes.

    • Primary key: Unique identifier for a record in a table

    • Foreign key: Links tables together by referencing the primary key of another table

    • Candidate key: A set of attributes that can be used as a primary key

    • Super key: A set of attributes that can uniquely identify a record

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Re-examine and Apply your Past Experience to the IT Industry.
Get Industry Certifications.
Your Degree in Another Field May Be a Huge Asset.
Be Open to Starting at the Bottom.
Don't Forget the Power of Networking.
Teach Yourself Relevant Tech Skills.
Look for Crossover Positions.
Network with the Right People.
Find the Right Internship.
Create an Effective Resume.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. What is oops
  • Ans. 

    OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects.

    • OOPs is based on the four main concepts: Encapsulation, Inheritance, Polymorphism, and Abstraction.

    • Encapsulation is the process of hiding the implementation details from the user.

    • Inheritance is the process of creating a new class from an existing class.

    • Polymorphism is the ability of an object to take on many forms.

    • ...

  • Answered by AI

Priyam Innovations Interview FAQs

How many rounds are there in Priyam Innovations Full Stack Software Developer interview for experienced candidates?
Priyam Innovations interview process for experienced candidates usually has 2 rounds. The most common rounds in the Priyam Innovations interview process for experienced candidates are Technical and Coding Test.

Tell us how to improve this page.

People are getting interviews through

based on 1 Priyam Innovations interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Front end Developer
3 salaries
unlock blur

₹5 L/yr - ₹6 L/yr

Explore more salaries
Compare Priyam Innovations with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview