Principais perguntas e respostas de entrevista e testes online
Plataforma educacional para preparacao de entrevistas, testes online, tutoriais e pratica ao vivo

Desenvolva habilidades com trilhas de aprendizado focadas, simulados e conteudo pronto para entrevistas.

WithoutBook reune perguntas de entrevista por assunto, testes praticos online, tutoriais e guias comparativos em um unico espaco de aprendizado responsivo.

Preparar entrevista

Simulados

Definir como pagina inicial

Adicionar esta pagina aos favoritos

Assinar endereco de e-mail
WithoutBook LIVE Mock Interviews
The Best LIVE Mock Interview - You should go through before interview
Test your skills through the online practice test: Software Engineering Quiz Online Practice Test

Freshers / Beginner level questions & answers

Ques 1. What is the Software Engineering?

Software engineering is a systematic approach to developing, testing, and maintaining software applications. Software engineering is a complex and challenging field, but it is also an incredibly rewarding one. By following a systematic approach, software engineers can create high-quality software that meets the needs of users and stakeholders.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 2. What is the difference between synchronous and asynchronous programming?

Synchronous programming executes tasks sequentially, blocking until each task completes. Asynchronous programming allows tasks to run independently, and the program doesn't wait for them to finish.

Example:

Synchronous: Blocking I/O operations. Asynchronous: Using callbacks or promises in JavaScript.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 3. What is the purpose of the 'this' keyword in object-oriented programming?

The 'this' keyword refers to the current instance of a class and is used to distinguish instance variables from local variables when they have the same name.

Example:

In Java, using 'this' to refer to instance variables in a constructor.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 4. What is the purpose of the 'try-catch' block in exception handling?

The 'try-catch' block is used to handle exceptions in a program. Code inside the 'try' block is executed, and if an exception occurs, it is caught and handled in the 'catch' block.

Example:

In Java, catching an 'IOException' when reading from a file within a 'try-catch' block.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 5. What are the phases in Software Engineering?

  • Requirements gathering and analysis: This involves understanding the needs of the users and stakeholders, and translating those needs into a set of requirements that the software must meet.
  • Design: This involves creating a blueprint for the software, including the overall architecture, the user interface, and the data structures.
  • Implementation: This involves writing the actual code for the software.
  • Testing: This involves verifying that the software meets the requirements and is free of defects.
  • Maintenance: This involves updating and fixing the software as needed, and responding to user feedback.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Intermediate / 1 to 5 years experienced level questions & answers

Ques 6. What is the difference between abstraction and encapsulation?

Abstraction is the process of hiding the implementation details and showing only the functionality. Encapsulation is the bundling of data and the methods that operate on the data into a single unit.

Example:

Abstraction: Using abstract classes in Java to define common interfaces. Encapsulation: Using private access modifiers to protect the internal state of a class.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 7. Explain the concept of polymorphism in object-oriented programming.

Polymorphism allows objects of different types to be treated as objects of a common type. It enables a single interface to represent different types of objects.

Example:

Inheritance-based polymorphism: Overriding a method in a subclass. Interface-based polymorphism: Implementing multiple interfaces in a class.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 8. Explain the concept of a design pattern. Provide an example.

A design pattern is a reusable solution to a common problem in software design. Example: The Observer pattern, where an object maintains a list of its dependents (observers) that are notified of state changes.

Example:

Implementing the Observer pattern in a GUI framework to update multiple UI components when a data model changes.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 9. Explain the concept of a thread in programming. What is the difference between a thread and a process?

A thread is the smallest unit of execution in a program. A process is an independent program that runs in its own memory space. Threads within a process share the same memory space.

Example:

Creating and running threads in Java using the Thread class or implementing the Runnable interface.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 10. Explain the concept of garbage collection in programming languages. How does it work?

Garbage collection is the automatic process of reclaiming memory occupied by objects that are no longer in use. It involves identifying and freeing up memory that is no longer reachable.

Example:

In Java, objects that are no longer referenced are automatically identified and reclaimed by the garbage collector.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 11. What is the difference between a stack and a queue? Provide an example use case for each.

A stack is a last-in, first-out (LIFO) data structure, while a queue is a first-in, first-out (FIFO) data structure. Stacks are used for function calls and managing local variables. Queues are used in scenarios like task scheduling.

Example:

Using a stack to implement function call management. Using a queue for printing tasks in the order they are received.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 12. Explain the concept of a RESTful API. What are the key principles of REST?

REST (Representational State Transfer) is an architectural style for designing networked applications. Key principles include statelessness, client-server architecture, and the use of standard HTTP methods (GET, POST, PUT, DELETE).

Example:

Designing a web API that uses HTTP methods for CRUD operations on resources.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 13. What is the difference between a stack and a heap in memory management?

The stack is used for static memory allocation and stores function call information, local variables, etc. The heap is used for dynamic memory allocation and stores objects with varying lifetimes.

Example:

Allocating memory for a local variable on the stack. Allocating memory for an object with 'new' in C++ on the heap.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 14. Explain the concept of dependency injection. How does it improve code maintainability?

Dependency injection is a design pattern where dependencies are injected into a class rather than being created within the class. It improves code maintainability by making classes more modular and easier to test.

Example:

Injecting a database dependency into a service class rather than creating it inside the class.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 15. What is the purpose of version control systems like Git? Explain the difference between Git and SVN.

Version control systems track changes to source code over time, allowing collaboration and providing a history of changes. Git is distributed, while SVN is centralized.

Example:

Using Git to create branches for feature development and merging changes back into the main branch.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 16. What is the difference between a shallow copy and a deep copy of an object?

A shallow copy creates a new object but does not duplicate the nested objects. A deep copy creates a new object and recursively duplicates all objects referenced by the original.

Example:

Creating a shallow copy of an array in Python using 'copy.copy()'. Creating a deep copy using 'copy.deepcopy()'.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 17. What is the role of a container in the context of virtualization and containerization?

Containers provide a lightweight and portable way to package and run applications with their dependencies. They encapsulate the application, runtime, libraries, and other settings, ensuring consistency across different environments.

Example:

Using Docker to containerize a web application and deploy it across different environments.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 18. What is the purpose of the 'finalize' method in Java? Why is it not recommended for cleanup operations?

The 'finalize' method is called by the garbage collector before an object is reclaimed. It's not recommended for cleanup operations because there's no guarantee when it will be called, and it may not be called at all.

Example:

Implementing the 'finalize' method in a class for resource cleanup, but not relying on it for critical cleanup tasks.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 19. Explain the concept of a design pattern. Provide an example of a creational design pattern.

Design patterns are reusable solutions to common problems in software design. A creational design pattern is concerned with object creation mechanisms. Example: The Singleton pattern ensures a class has only one instance and provides a global point of access to it.

Example:

Implementing the Singleton pattern in Java to create a single instance of a configuration manager.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 20. Explain the concept of Big-O notation. Why is it important in algorithm analysis?

Big-O notation describes the upper bound on the growth rate of an algorithm's running time or space requirements. It helps analyze and compare the efficiency of algorithms, especially as input sizes become large.

Example:

Expressing the time complexity of a sorting algorithm as O(n log n) based on the size of the input data.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 21. What is the difference between a shallow copy and a deep copy of an object?

A shallow copy creates a new object but does not duplicate the nested objects. A deep copy creates a new object and recursively duplicates all objects referenced by the original.

Example:

Creating a shallow copy of an array in Python using 'copy.copy()'. Creating a deep copy using 'copy.deepcopy()'.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Experienced / Expert level questions & answers

Ques 22. What is the SOLID principle? Explain each principle briefly.

SOLID is an acronym for five design principles: Single Responsibility, Open-Closed, Liskov Substitution, Interface Segregation, and Dependency Inversion.

Example:

Single Responsibility: A class should have only one reason to change. Open-Closed: Software entities should be open for extension but closed for modification.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 23. Explain the term 'database normalization.' Why is it important?

Database normalization is the process of organizing data in a database to reduce redundancy and dependency. It ensures data integrity and reduces the chances of anomalies during data manipulation.

Example:

Breaking down a large table into smaller tables and establishing relationships to eliminate redundant data in a relational database.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 24. Explain the concept of virtual functions in C++. How do they contribute to polymorphism?

Virtual functions in C++ allow dynamic method binding, enabling the selection of the appropriate method at runtime based on the object's type. They contribute to polymorphism by enabling runtime method resolution.

Example:

Declaring a virtual function in a base class and providing specific implementations in derived classes.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 25. Explain the concept of a deadlock in concurrent programming. How can deadlocks be prevented?

A deadlock occurs when two or more threads are blocked forever, each waiting for the other to release a resource. Deadlocks can be prevented by using techniques such as resource allocation graphs and avoiding circular wait conditions.

Example:

Illustrating a deadlock scenario with two threads competing for resources without proper synchronization.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 26. What is the purpose of the 'volatile' keyword in Java? How does it differ from other synchronization mechanisms?

The 'volatile' keyword in Java is used to indicate that a variable's value may be changed by multiple threads simultaneously. It differs from other synchronization mechanisms by ensuring visibility without acquiring locks.

Example:

Declaring a variable as 'volatile' in Java to ensure proper visibility in a multithreaded environment.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 27. Explain the concept of the MVC (Model-View-Controller) design pattern. How does it facilitate modular software design?

MVC separates an application into three interconnected components: Model (data and business logic), View (user interface), and Controller (handles user input and updates the model). It facilitates modular design by isolating concerns and promoting code reusability.

Example:

Implementing an MVC architecture in a web application with separate classes for the model, view, and controller.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Most helpful rated by users:

Related interview subjects

Data Engineer perguntas e respostas de entrevista - Total 30 questions
AutoCAD perguntas e respostas de entrevista - Total 30 questions
Robotics perguntas e respostas de entrevista - Total 28 questions
Power System perguntas e respostas de entrevista - Total 28 questions
Electrical Engineering perguntas e respostas de entrevista - Total 30 questions
Verilog perguntas e respostas de entrevista - Total 30 questions
VLSI perguntas e respostas de entrevista - Total 30 questions
Software Engineering perguntas e respostas de entrevista - Total 27 questions
MATLAB perguntas e respostas de entrevista - Total 25 questions
Digital Electronics perguntas e respostas de entrevista - Total 38 questions
Civil Engineering perguntas e respostas de entrevista - Total 30 questions
Electrical Machines perguntas e respostas de entrevista - Total 29 questions

All interview subjects

LINQ perguntas e respostas de entrevista - Total 20 questions
C# perguntas e respostas de entrevista - Total 41 questions
ASP .NET perguntas e respostas de entrevista - Total 31 questions
Microsoft .NET perguntas e respostas de entrevista - Total 60 questions
ASP perguntas e respostas de entrevista - Total 82 questions
Google Cloud AI perguntas e respostas de entrevista - Total 30 questions
IBM Watson perguntas e respostas de entrevista - Total 30 questions
Perplexity AI perguntas e respostas de entrevista - Total 40 questions
ChatGPT perguntas e respostas de entrevista - Total 20 questions
NLP perguntas e respostas de entrevista - Total 30 questions
AI Agents (Agentic AI) perguntas e respostas de entrevista - Total 50 questions
OpenCV perguntas e respostas de entrevista - Total 36 questions
Amazon SageMaker perguntas e respostas de entrevista - Total 30 questions
TensorFlow perguntas e respostas de entrevista - Total 30 questions
Hugging Face perguntas e respostas de entrevista - Total 30 questions
Gemini AI perguntas e respostas de entrevista - Total 50 questions
Oracle AI Agents perguntas e respostas de entrevista - Total 50 questions
Artificial Intelligence (AI) perguntas e respostas de entrevista - Total 47 questions
Machine Learning perguntas e respostas de entrevista - Total 30 questions
Python Coding perguntas e respostas de entrevista - Total 20 questions
Scala perguntas e respostas de entrevista - Total 48 questions
Swift perguntas e respostas de entrevista - Total 49 questions
Golang perguntas e respostas de entrevista - Total 30 questions
Embedded C perguntas e respostas de entrevista - Total 30 questions
C++ perguntas e respostas de entrevista - Total 142 questions
VBA perguntas e respostas de entrevista - Total 30 questions
COBOL perguntas e respostas de entrevista - Total 50 questions
R Language perguntas e respostas de entrevista - Total 30 questions
CCNA perguntas e respostas de entrevista - Total 40 questions
Oracle APEX perguntas e respostas de entrevista - Total 23 questions
Oracle Cloud Infrastructure (OCI) perguntas e respostas de entrevista - Total 100 questions
AWS perguntas e respostas de entrevista - Total 87 questions
Microsoft Azure perguntas e respostas de entrevista - Total 35 questions
Azure Data Factory perguntas e respostas de entrevista - Total 30 questions
OpenStack perguntas e respostas de entrevista - Total 30 questions
ServiceNow perguntas e respostas de entrevista - Total 30 questions
Snowflake perguntas e respostas de entrevista - Total 30 questions
LGPD perguntas e respostas de entrevista - Total 20 questions
PDPA perguntas e respostas de entrevista - Total 20 questions
OSHA perguntas e respostas de entrevista - Total 20 questions
HIPPA perguntas e respostas de entrevista - Total 20 questions
PHIPA perguntas e respostas de entrevista - Total 20 questions
FERPA perguntas e respostas de entrevista - Total 20 questions
DPDP perguntas e respostas de entrevista - Total 30 questions
PIPEDA perguntas e respostas de entrevista - Total 20 questions
GDPR perguntas e respostas de entrevista - Total 30 questions
CCPA perguntas e respostas de entrevista - Total 20 questions
HITRUST perguntas e respostas de entrevista - Total 20 questions
PoowerPoint perguntas e respostas de entrevista - Total 50 questions
Data Structures perguntas e respostas de entrevista - Total 49 questions
Computer Networking perguntas e respostas de entrevista - Total 65 questions
Microsoft Excel perguntas e respostas de entrevista - Total 37 questions
Computer Basics perguntas e respostas de entrevista - Total 62 questions
Computer Science perguntas e respostas de entrevista - Total 50 questions
Operating System perguntas e respostas de entrevista - Total 22 questions
MS Word perguntas e respostas de entrevista - Total 50 questions
Tips and Tricks perguntas e respostas de entrevista - Total 30 questions
Pandas perguntas e respostas de entrevista - Total 30 questions
Deep Learning perguntas e respostas de entrevista - Total 29 questions
Flask perguntas e respostas de entrevista - Total 40 questions
PySpark perguntas e respostas de entrevista - Total 30 questions
PyTorch perguntas e respostas de entrevista - Total 25 questions
Data Science perguntas e respostas de entrevista - Total 23 questions
SciPy perguntas e respostas de entrevista - Total 30 questions
Generative AI perguntas e respostas de entrevista - Total 30 questions
NumPy perguntas e respostas de entrevista - Total 30 questions
Python perguntas e respostas de entrevista - Total 106 questions
Python Pandas perguntas e respostas de entrevista - Total 48 questions
Django perguntas e respostas de entrevista - Total 50 questions
Python Matplotlib perguntas e respostas de entrevista - Total 30 questions
Redis Cache perguntas e respostas de entrevista - Total 20 questions
MySQL perguntas e respostas de entrevista - Total 108 questions
Data Modeling perguntas e respostas de entrevista - Total 30 questions
MariaDB perguntas e respostas de entrevista - Total 40 questions
DBMS perguntas e respostas de entrevista - Total 73 questions
Apache Hive perguntas e respostas de entrevista - Total 30 questions
PostgreSQL perguntas e respostas de entrevista - Total 30 questions
SSIS perguntas e respostas de entrevista - Total 30 questions
Teradata perguntas e respostas de entrevista - Total 20 questions
SQL Query perguntas e respostas de entrevista - Total 70 questions
SQLite perguntas e respostas de entrevista - Total 53 questions
Cassandra perguntas e respostas de entrevista - Total 25 questions
Neo4j perguntas e respostas de entrevista - Total 44 questions
MSSQL perguntas e respostas de entrevista - Total 50 questions
OrientDB perguntas e respostas de entrevista - Total 46 questions
Data Warehouse perguntas e respostas de entrevista - Total 20 questions
SQL perguntas e respostas de entrevista - Total 152 questions
IBM DB2 perguntas e respostas de entrevista - Total 40 questions
Elasticsearch perguntas e respostas de entrevista - Total 61 questions
Data Mining perguntas e respostas de entrevista - Total 30 questions
Oracle perguntas e respostas de entrevista - Total 34 questions
MongoDB perguntas e respostas de entrevista - Total 27 questions
AWS DynamoDB perguntas e respostas de entrevista - Total 46 questions
Entity Framework perguntas e respostas de entrevista - Total 46 questions
Data Engineer perguntas e respostas de entrevista - Total 30 questions
AutoCAD perguntas e respostas de entrevista - Total 30 questions
Robotics perguntas e respostas de entrevista - Total 28 questions
Power System perguntas e respostas de entrevista - Total 28 questions
Electrical Engineering perguntas e respostas de entrevista - Total 30 questions
Verilog perguntas e respostas de entrevista - Total 30 questions
VLSI perguntas e respostas de entrevista - Total 30 questions
Software Engineering perguntas e respostas de entrevista - Total 27 questions
MATLAB perguntas e respostas de entrevista - Total 25 questions
Digital Electronics perguntas e respostas de entrevista - Total 38 questions
Civil Engineering perguntas e respostas de entrevista - Total 30 questions
Electrical Machines perguntas e respostas de entrevista - Total 29 questions
Oracle CXUnity perguntas e respostas de entrevista - Total 29 questions
Web Services perguntas e respostas de entrevista - Total 10 questions
Salesforce Lightning perguntas e respostas de entrevista - Total 30 questions
IBM Integration Bus perguntas e respostas de entrevista - Total 30 questions
Power BI perguntas e respostas de entrevista - Total 24 questions
OIC perguntas e respostas de entrevista - Total 30 questions
Dell Boomi perguntas e respostas de entrevista - Total 30 questions
Web API perguntas e respostas de entrevista - Total 31 questions
IBM DataStage perguntas e respostas de entrevista - Total 20 questions
Talend perguntas e respostas de entrevista - Total 34 questions
Salesforce perguntas e respostas de entrevista - Total 57 questions
TIBCO perguntas e respostas de entrevista - Total 30 questions
Informatica perguntas e respostas de entrevista - Total 48 questions
Log4j perguntas e respostas de entrevista - Total 35 questions
JBoss perguntas e respostas de entrevista - Total 14 questions
Java Mail perguntas e respostas de entrevista - Total 27 questions
Java Applet perguntas e respostas de entrevista - Total 29 questions
Google Gson perguntas e respostas de entrevista - Total 8 questions
Java 21 perguntas e respostas de entrevista - Total 21 questions
Apache Camel perguntas e respostas de entrevista - Total 20 questions
Struts perguntas e respostas de entrevista - Total 84 questions
RMI perguntas e respostas de entrevista - Total 31 questions
Java Support perguntas e respostas de entrevista - Total 30 questions
JAXB perguntas e respostas de entrevista - Total 18 questions
Apache Tapestry perguntas e respostas de entrevista - Total 9 questions
JSP perguntas e respostas de entrevista - Total 49 questions
Java Concurrency perguntas e respostas de entrevista - Total 30 questions
J2EE perguntas e respostas de entrevista - Total 25 questions
JUnit perguntas e respostas de entrevista - Total 24 questions
Java OOPs perguntas e respostas de entrevista - Total 30 questions
Java 11 perguntas e respostas de entrevista - Total 24 questions
JDBC perguntas e respostas de entrevista - Total 27 questions
Java Garbage Collection perguntas e respostas de entrevista - Total 30 questions
Spring Framework perguntas e respostas de entrevista - Total 53 questions
Java Swing perguntas e respostas de entrevista - Total 27 questions
Java Design Patterns perguntas e respostas de entrevista - Total 15 questions
JPA perguntas e respostas de entrevista - Total 41 questions
Java 8 perguntas e respostas de entrevista - Total 30 questions
Hibernate perguntas e respostas de entrevista - Total 52 questions
JMS perguntas e respostas de entrevista - Total 64 questions
JSF perguntas e respostas de entrevista - Total 24 questions
Java 17 perguntas e respostas de entrevista - Total 20 questions
Spring Boot perguntas e respostas de entrevista - Total 50 questions
Servlets perguntas e respostas de entrevista - Total 34 questions
Kotlin perguntas e respostas de entrevista - Total 30 questions
EJB perguntas e respostas de entrevista - Total 80 questions
Java Beans perguntas e respostas de entrevista - Total 57 questions
Java Exception Handling perguntas e respostas de entrevista - Total 30 questions
Java 15 perguntas e respostas de entrevista - Total 16 questions
Apache Wicket perguntas e respostas de entrevista - Total 26 questions
Core Java perguntas e respostas de entrevista - Total 306 questions
Java Multithreading perguntas e respostas de entrevista - Total 30 questions
Pega perguntas e respostas de entrevista - Total 30 questions
ITIL perguntas e respostas de entrevista - Total 25 questions
Finance perguntas e respostas de entrevista - Total 30 questions
JIRA perguntas e respostas de entrevista - Total 30 questions
SAP MM perguntas e respostas de entrevista - Total 30 questions
SAP ABAP perguntas e respostas de entrevista - Total 24 questions
SCCM perguntas e respostas de entrevista - Total 30 questions
Tally perguntas e respostas de entrevista - Total 30 questions
Ionic perguntas e respostas de entrevista - Total 32 questions
Android perguntas e respostas de entrevista - Total 14 questions
Mobile Computing perguntas e respostas de entrevista - Total 20 questions
Xamarin perguntas e respostas de entrevista - Total 31 questions
iOS perguntas e respostas de entrevista - Total 52 questions
Laravel perguntas e respostas de entrevista - Total 30 questions
XML perguntas e respostas de entrevista - Total 25 questions
GraphQL perguntas e respostas de entrevista - Total 32 questions
Bitcoin perguntas e respostas de entrevista - Total 30 questions
Active Directory perguntas e respostas de entrevista - Total 30 questions
Microservices perguntas e respostas de entrevista - Total 30 questions
Apache Kafka perguntas e respostas de entrevista - Total 38 questions
Tableau perguntas e respostas de entrevista - Total 20 questions
Adobe AEM perguntas e respostas de entrevista - Total 50 questions
Kubernetes perguntas e respostas de entrevista - Total 30 questions
OOPs perguntas e respostas de entrevista - Total 30 questions
Fashion Designer perguntas e respostas de entrevista - Total 20 questions
Desktop Support perguntas e respostas de entrevista - Total 30 questions
IAS perguntas e respostas de entrevista - Total 56 questions
PHP OOPs perguntas e respostas de entrevista - Total 30 questions
Nursing perguntas e respostas de entrevista - Total 40 questions
Linked List perguntas e respostas de entrevista - Total 15 questions
Dynamic Programming perguntas e respostas de entrevista - Total 30 questions
SharePoint perguntas e respostas de entrevista - Total 28 questions
CICS perguntas e respostas de entrevista - Total 30 questions
Yoga Teachers Training perguntas e respostas de entrevista - Total 30 questions
Language in C perguntas e respostas de entrevista - Total 80 questions
Behavioral perguntas e respostas de entrevista - Total 29 questions
School Teachers perguntas e respostas de entrevista - Total 25 questions
Full-Stack Developer perguntas e respostas de entrevista - Total 60 questions
Statistics perguntas e respostas de entrevista - Total 30 questions
Digital Marketing perguntas e respostas de entrevista - Total 40 questions
Apache Spark perguntas e respostas de entrevista - Total 24 questions
VISA perguntas e respostas de entrevista - Total 30 questions
IIS perguntas e respostas de entrevista - Total 30 questions
System Design perguntas e respostas de entrevista - Total 30 questions
SEO perguntas e respostas de entrevista - Total 51 questions
Google Analytics perguntas e respostas de entrevista - Total 30 questions
Cloud Computing perguntas e respostas de entrevista - Total 42 questions
BPO perguntas e respostas de entrevista - Total 48 questions
ANT perguntas e respostas de entrevista - Total 10 questions
Agile Methodology perguntas e respostas de entrevista - Total 30 questions
HR Questions perguntas e respostas de entrevista - Total 49 questions
REST API perguntas e respostas de entrevista - Total 52 questions
Content Writer perguntas e respostas de entrevista - Total 30 questions
SAS perguntas e respostas de entrevista - Total 24 questions
Control System perguntas e respostas de entrevista - Total 28 questions
Mainframe perguntas e respostas de entrevista - Total 20 questions
Hadoop perguntas e respostas de entrevista - Total 40 questions
Banking perguntas e respostas de entrevista - Total 20 questions
Checkpoint perguntas e respostas de entrevista - Total 20 questions
Blockchain perguntas e respostas de entrevista - Total 29 questions
Technical Support perguntas e respostas de entrevista - Total 30 questions
Sales perguntas e respostas de entrevista - Total 30 questions
Nature perguntas e respostas de entrevista - Total 20 questions
Chemistry perguntas e respostas de entrevista - Total 50 questions
Docker perguntas e respostas de entrevista - Total 30 questions
SDLC perguntas e respostas de entrevista - Total 75 questions
Cryptography perguntas e respostas de entrevista - Total 40 questions
RPA perguntas e respostas de entrevista - Total 26 questions
Interview Tips perguntas e respostas de entrevista - Total 30 questions
College Teachers perguntas e respostas de entrevista - Total 30 questions
Blue Prism perguntas e respostas de entrevista - Total 20 questions
Memcached perguntas e respostas de entrevista - Total 28 questions
GIT perguntas e respostas de entrevista - Total 30 questions
Algorithm perguntas e respostas de entrevista - Total 50 questions
Business Analyst perguntas e respostas de entrevista - Total 40 questions
Splunk perguntas e respostas de entrevista - Total 30 questions
DevOps perguntas e respostas de entrevista - Total 45 questions
Accounting perguntas e respostas de entrevista - Total 30 questions
SSB perguntas e respostas de entrevista - Total 30 questions
OSPF perguntas e respostas de entrevista - Total 30 questions
Sqoop perguntas e respostas de entrevista - Total 30 questions
JSON perguntas e respostas de entrevista - Total 16 questions
Accounts Payable perguntas e respostas de entrevista - Total 30 questions
Computer Graphics perguntas e respostas de entrevista - Total 25 questions
IoT perguntas e respostas de entrevista - Total 30 questions
Insurance perguntas e respostas de entrevista - Total 30 questions
Scrum Master perguntas e respostas de entrevista - Total 30 questions
Express.js perguntas e respostas de entrevista - Total 30 questions
Ansible perguntas e respostas de entrevista - Total 30 questions
ES6 perguntas e respostas de entrevista - Total 30 questions
Electron.js perguntas e respostas de entrevista - Total 24 questions
RxJS perguntas e respostas de entrevista - Total 29 questions
NodeJS perguntas e respostas de entrevista - Total 30 questions
ExtJS perguntas e respostas de entrevista - Total 50 questions
jQuery perguntas e respostas de entrevista - Total 22 questions
Vue.js perguntas e respostas de entrevista - Total 30 questions
Svelte.js perguntas e respostas de entrevista - Total 30 questions
Shell Scripting perguntas e respostas de entrevista - Total 50 questions
Next.js perguntas e respostas de entrevista - Total 30 questions
Knockout JS perguntas e respostas de entrevista - Total 25 questions
TypeScript perguntas e respostas de entrevista - Total 38 questions
PowerShell perguntas e respostas de entrevista - Total 27 questions
Terraform perguntas e respostas de entrevista - Total 30 questions
JCL perguntas e respostas de entrevista - Total 20 questions
JavaScript perguntas e respostas de entrevista - Total 59 questions
Ajax perguntas e respostas de entrevista - Total 58 questions
Ethical Hacking perguntas e respostas de entrevista - Total 40 questions
Cyber Security perguntas e respostas de entrevista - Total 50 questions
PII perguntas e respostas de entrevista - Total 30 questions
Data Protection Act perguntas e respostas de entrevista - Total 20 questions
BGP perguntas e respostas de entrevista - Total 30 questions
Ubuntu perguntas e respostas de entrevista - Total 30 questions
Linux perguntas e respostas de entrevista - Total 43 questions
Unix perguntas e respostas de entrevista - Total 105 questions
Weblogic perguntas e respostas de entrevista - Total 30 questions
Tomcat perguntas e respostas de entrevista - Total 16 questions
Glassfish perguntas e respostas de entrevista - Total 8 questions
TestNG perguntas e respostas de entrevista - Total 38 questions
Postman perguntas e respostas de entrevista - Total 30 questions
SDET perguntas e respostas de entrevista - Total 30 questions
Selenium perguntas e respostas de entrevista - Total 40 questions
Kali Linux perguntas e respostas de entrevista - Total 29 questions
Mobile Testing perguntas e respostas de entrevista - Total 30 questions
UiPath perguntas e respostas de entrevista - Total 38 questions
Quality Assurance perguntas e respostas de entrevista - Total 56 questions
API Testing perguntas e respostas de entrevista - Total 30 questions
Appium perguntas e respostas de entrevista - Total 30 questions
ETL Testing perguntas e respostas de entrevista - Total 20 questions
Cucumber perguntas e respostas de entrevista - Total 30 questions
QTP perguntas e respostas de entrevista - Total 44 questions
PHP perguntas e respostas de entrevista - Total 27 questions
Oracle JET(OJET) perguntas e respostas de entrevista - Total 54 questions
Frontend Developer perguntas e respostas de entrevista - Total 30 questions
Zend Framework perguntas e respostas de entrevista - Total 24 questions
RichFaces perguntas e respostas de entrevista - Total 26 questions
HTML perguntas e respostas de entrevista - Total 27 questions
Flutter perguntas e respostas de entrevista - Total 25 questions
CakePHP perguntas e respostas de entrevista - Total 30 questions
React perguntas e respostas de entrevista - Total 40 questions
React Native perguntas e respostas de entrevista - Total 26 questions
Angular JS perguntas e respostas de entrevista - Total 21 questions
Web Developer perguntas e respostas de entrevista - Total 50 questions
Angular 8 perguntas e respostas de entrevista - Total 32 questions
Dojo perguntas e respostas de entrevista - Total 23 questions
Symfony perguntas e respostas de entrevista - Total 30 questions
GWT perguntas e respostas de entrevista - Total 27 questions
CSS perguntas e respostas de entrevista - Total 74 questions
Ruby On Rails perguntas e respostas de entrevista - Total 74 questions
Yii perguntas e respostas de entrevista - Total 30 questions
Angular perguntas e respostas de entrevista - Total 50 questions
Copyright © 2026, WithoutBook.