i
Filter interviews by
I applied via Naukri.com and was interviewed before Dec 2022. There was 1 interview round.
S3 is a scalable storage service provided by AWS. Key-pairs are used for secure access to instances. EBS volumes are block storage volumes for EC2 instances.
S3 is a scalable storage service provided by AWS
Key-pairs are used for secure access to instances
EBS volumes are block storage volumes for EC2 instances
I applied via Naukri.com and was interviewed before Dec 2022. There were 2 interview rounds.
Payroll is the process of calculating and distributing wages to employees for their work.
Payroll involves calculating employee salaries, deductions, and taxes
It includes tracking hours worked, overtime, and bonuses
Payroll also involves distributing paychecks or direct deposits to employees
Employers must comply with labor laws and regulations when processing payroll
Processing payroll involves calculating employee wages, deductions, and taxes, and then distributing payments.
Collect employee time and attendance data
Calculate wages based on hours worked and pay rate
Deduct taxes, benefits, and other deductions
Generate paychecks or direct deposits
Submit payroll taxes to the appropriate authorities
SAP HCM (Human Capital Management) is a software solution that helps organizations manage their HR processes efficiently.
SAP HCM integrates various HR functions such as payroll, time management, and talent management.
It allows organizations to streamline their HR processes and improve workforce management.
SAP HCM provides tools for recruiting, onboarding, training, and performance management.
It helps in tracking employ...
I applied via Naukri.com and was interviewed in Mar 2022. There were 3 interview rounds.
I applied via Referral and was interviewed before May 2022. There were 3 interview rounds.
Test scenarios for a mobile app
Functional testing of app features
Usability testing for user experience
Performance testing for app speed and responsiveness
Compatibility testing for different devices and operating systems
Security testing for data protection
Localization testing for language and cultural differences
The expected CTC depends on the company's budget and the candidate's experience and skills.
The CTC can vary based on the company's location, size, and industry.
The candidate's experience, skills, and qualifications can also impact the CTC.
The CTC may include components like base salary, bonuses, benefits, and stock options.
Research the company's salary range and negotiate based on your experience and skills.
Be prepared...
Posistrength Software Solution Private Limited interview questions for popular designations
Top trending discussions
posted on 31 Jan 2025
posted on 2 Jan 2025
I applied via Referral
Print a specific pattern using any programming language.
A class in OOP is a blueprint for creating objects, defining their properties and behaviors.
Classes are templates for creating objects in OOP
They define the properties (attributes) and behaviors (methods) of objects
Objects are instances of classes, each with its own unique data
Inheritance allows classes to inherit properties and behaviors from other classes
Encapsulation ensures that the data is hidden and can only be a...
Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.
Abstract class can have constructors, fields, and methods, while interface cannot have any implementation.
A class can only extend one abstract class, but can implement multiple interfaces.
Abstract classes are used to define common characteristics of subclasses, while interfaces are used to define contracts for...
Joining is combining data from two or more tables based on a related column, while an inner join query retrieves only the matching records.
Joining is used to combine data from multiple tables in a database.
Inner join query retrieves only the records that have matching values in both tables.
Syntax for inner join: SELECT columns FROM table1 INNER JOIN table2 ON table1.column = table2.column;
Example: SELECT orders.order_i...
I applied via Approached by Company and was interviewed in Sep 2024. There were 3 interview rounds.
I am a Java Developer with 5 years of experience in developing web applications using Java, Spring, and Hibernate.
5 years of experience in Java development
Proficient in Spring and Hibernate frameworks
Strong understanding of web application development
Developed a web-based inventory management system using Java, Spring, and Hibernate
Designed and implemented database schema using Hibernate
Developed RESTful APIs using Spring framework
Worked on front-end development using HTML, CSS, and JavaScript
Collaborated with team members to troubleshoot and resolve issues
Participated in code reviews and testing
Interfaces and Abstract classes in Java are used for achieving abstraction and defining contracts for classes to implement.
Interfaces in Java are like blueprints for classes, defining methods that must be implemented by classes that implement the interface.
Abstract classes are classes that cannot be instantiated and can have both abstract and concrete methods.
Example of an interface in Java: public interface Shape { ...
Reverse the year of birth and name, then print them in that order.
Reverse the year of birth using StringBuilder.reverse() method
Reverse the name using StringBuilder.reverse() method
Print the reversed year of birth followed by the reversed name
Threads in Java are lightweight sub-processes that allow concurrent execution within a single process.
Threads allow multiple tasks to be executed simultaneously in a Java program.
Threads share the same memory space and resources within a process.
Example: Creating a new thread using the Thread class or implementing the Runnable interface.
Developed a web application for inventory management system using Java Spring framework
Used Java Spring framework for backend development
Implemented RESTful APIs for communication between frontend and backend
Utilized MySQL database for storing inventory data
Using Java 8 Streams API to print single occurrences of names in an ArrayList of Strings.
Use stream() method on the ArrayList to create a stream of elements.
Use filter() method to filter out elements that occur more than once.
Use distinct() method to get only unique elements.
Use forEach() method to print each unique element.
Code to print each name and the number of occurrences in an ArrayList of Strings.
Iterate through the ArrayList and use a HashMap to store the count of each name.
Print each name along with its count from the HashMap.
Lambda expressions in Java are a concise way to represent anonymous functions.
Lambda expressions are used to provide implementation of functional interfaces.
They enable you to treat functionality as a method argument, or code as data.
Syntax: (parameters) -> expression or (parameters) -> { statements; }
Example: (int a, int b) -> a + b
Functional interfaces in Java are interfaces with only one abstract method, used for lambda expressions and functional programming.
Functional interfaces have only one abstract method, but can have multiple default or static methods.
They are used for lambda expressions and functional programming in Java.
Examples include java.lang.Runnable, java.util.Comparator, and java.util.function.Function.
Streams in Java are sequences of elements that support functional-style operations such as filter, map, reduce, etc.
Streams are not data structures, but rather a way to interact with collections of objects.
They allow for efficient processing of large amounts of data.
Streams can be sequential or parallel, allowing for concurrent processing.
Example: List
I am a Java Developer with 5 years of experience in developing web applications and implementing solutions using Java technologies.
5 years of experience in Java development
Strong knowledge of web application development
Experience in implementing solutions using Java technologies
My previous CTC was confidential as per company policy.
CTC was confidential as per company policy
I am unable to disclose my previous CTC
Previous CTC information is not available
I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.
Runtime polymorphism allows a subclass to provide a specific implementation of a method that is already provided by its parent class.
Runtime polymorphism is achieved through method overriding, where a subclass provides its own implementation of a method that is already defined in its superclass.
The method to be overridden must have the same name, return type, and parameters in both the superclass and subclass.
When an o...
Streams in Java provide a way to process collections of objects in a functional style.
Streams are sequences of elements that support various operations like filter, map, reduce, etc.
They can be created from collections, arrays, or generate elements dynamically.
Streams can be sequential or parallel, allowing for efficient processing of large datasets.
Example: List<String> names = Arrays.asList("Alice", "Bob", "Cha...
Threads in Java are created by extending the Thread class or implementing the Runnable interface, and invoked using the start() method.
Threads can be created by extending the Thread class and overriding the run() method.
Threads can also be created by implementing the Runnable interface and passing an instance of the class to a Thread object.
Threads are invoked by calling the start() method on the Thread object.
Rest Template is a class in Spring that simplifies making HTTP requests and handling responses.
Rest Template is part of the Spring framework in Java.
It can be used to make HTTP requests to RESTful web services.
It simplifies the process of making HTTP calls and handling responses.
Rest Template can handle GET, POST, PUT, DELETE, etc. requests.
Example: RestTemplate restTemplate = new RestTemplate();
posted on 14 Jan 2025
Interview experience
based on 33 reviews
Rating in categories
Softwaretest Engineer
39
salaries
| ₹3 L/yr - ₹4.6 L/yr |
Quality Analyst
5
salaries
| ₹3.3 L/yr - ₹3.9 L/yr |
Software Engineer
4
salaries
| ₹2.4 L/yr - ₹4.2 L/yr |
Manual Test Engineer
4
salaries
| ₹3.6 L/yr - ₹4.2 L/yr |
Devops Engineer
4
salaries
| ₹5.1 L/yr - ₹7 L/yr |
Softenger
Capital Numbers Infotech
JK Tech
DesignTech Systems