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

Freshers / Beginner level questions & answers

Ques 1. Explain the purpose of an activation function in a neural network.

An activation function introduces non-linearity to the neural network, allowing it to learn complex patterns. It transforms the input signal into an output signal, enabling the network to model and understand more intricate relationships in the 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 2. Explain the concept of a loss function in the context of machine learning models.

A loss function measures the difference between the predicted output and the actual target. It quantifies the model's performance during training and is minimized during the optimization process. Common loss functions include mean squared error, cross-entropy, and hinge loss.

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 difference between a shallow neural network and a deep neural network?

A shallow neural network has only a small number of hidden layers, typically one or two, while a deep neural network has a larger number of hidden layers. Deep networks are better at capturing complex hierarchical features in data but may require more data and computational 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 4. Explain the concept of one-hot encoding and its use in machine learning.

One-hot encoding is a technique to represent categorical variables as binary vectors. Each category is represented by a unique binary value, with all zeros except for the index corresponding to the category, which is set to one. It is commonly used in tasks like natural language processing.

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 is the role of the activation function in a neural network's hidden layers?

The activation function introduces non-linearity to the neural network, enabling it to learn complex patterns. Common activation functions include sigmoid, hyperbolic tangent (tanh), and rectified linear unit (ReLU). They allow the network to capture and model more intricate relationships in the 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 6. What is the role of the softmax function in a neural network's output layer?

The softmax function is used in the output layer of a neural network for multi-class classification. It converts raw output scores into probability distributions, ensuring that the sum of the probabilities across all classes is equal to one. It helps in making a probabilistic prediction for each 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. What is the difference between a regression problem and a classification problem in machine learning?

In a regression problem, the goal is to predict a continuous output, such as a numerical value. In a classification problem, the goal is to assign inputs to one of several predefined categories. Regression models predict quantities, while classification models assign labels.

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 8. What is the fundamental difference between supervised and unsupervised learning?

Supervised learning involves labeled data, where the algorithm learns from input-output pairs. Unsupervised learning deals with unlabeled data, and the algorithm discovers patterns and relationships without explicit guidance.

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 backpropagation in neural networks.

Backpropagation is a supervised learning algorithm used to train neural networks. It involves updating the weights of the network by calculating the gradient of the loss function with respect to the weights and adjusting them to minimize the error.

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. Differentiate between overfitting and underfitting in the context of machine learning models.

Overfitting occurs when a model learns the training data too well, capturing noise and producing poor generalization on new data. Underfitting happens when a model is too simple to capture the underlying patterns in the data, resulting in poor performance on both training and test sets.

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 transfer learning, and how is it used in deep learning?

Transfer learning involves using a pre-trained model on one task as the starting point for a different but related task. It leverages the knowledge gained from the source task to improve the learning of the target task, especially when data for the target task is limited.

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 dropout in neural networks and its purpose.

Dropout is a regularization technique where randomly selected neurons are ignored during training. It helps prevent overfitting by ensuring that no single neuron becomes overly dependent on specific features, promoting a more robust network.

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 a convolutional neural network (CNN), and how is it different from a fully connected neural network?

A CNN is a type of neural network designed for processing grid-like data, such as images. It uses convolutional layers to automatically and adaptively learn hierarchical features. Unlike fully connected networks, CNNs preserve spatial relationships within 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 14. What is the role of the learning rate in training a neural network?

The learning rate determines the size of the steps taken during optimization. A higher learning rate may speed up convergence, but it risks overshooting the minimum. A lower learning rate ensures stability but may slow down convergence. It is a crucial hyperparameter in training neural networks.

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 a recurrent neural network (RNN), and in what scenarios is it commonly used?

An RNN is a type of neural network designed for sequence data, where connections between units form a directed cycle. It is commonly used in natural language processing, speech recognition, and time series analysis, where context and temporal dependencies are essential.

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 hyperparameter and a parameter in the context of machine learning models?

Parameters are internal variables learned by the model during training, such as weights and biases. Hyperparameters are external configuration settings that influence the learning process, like the learning rate or the number of hidden layers. They are set before training and are not learned from the 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 17. What is the concept of regularization in machine learning, and how does it prevent overfitting?

Regularization is a technique to prevent overfitting by adding a penalty term to the loss function based on the complexity of the model. Common regularization methods include L1 and L2 regularization, dropout, and early stopping.

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 role of the optimizer in training a neural network?

The optimizer is responsible for updating the model's parameters during training to minimize the loss function. Common optimizers include stochastic gradient descent (SGD), Adam, and RMSprop. The choice of optimizer can significantly impact the convergence and performance of a model.

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 weight initialization in neural networks and why it is important.

Weight initialization is the process of setting initial values for the weights of a neural network. Proper weight initialization is crucial for preventing issues like vanishing or exploding gradients during training. Common methods include random initialization and Xavier/Glorot initialization.

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 a confusion matrix and its components in the context of classification problems.

A confusion matrix is a table that summarizes the performance of a classification algorithm. It includes metrics such as true positives, true negatives, false positives, and false negatives. These metrics help evaluate the model's accuracy, precision, recall, and F1 score.

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. Explain the concept of fine-tuning in transfer learning and when it is commonly applied.

Fine-tuning in transfer learning involves taking a pre-trained model and further training it on a specific task or dataset. It is commonly applied when the target task is closely related to the source task, and the pre-trained model has already learned useful features. Fine-tuning can improve performance on the target task with less training 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 22. What is the difference between online learning and batch learning in machine learning?

In online learning, the model is updated incrementally as new data becomes available, adapting to changes over time. In batch learning, the model is trained on the entire dataset in one go. Online learning is suitable for scenarios with evolving data, while batch learning is more common in offline or batch processing scenarios.

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 concept of imbalanced classes in classification problems and potential solutions.

Imbalanced classes occur when one class in a classification problem has significantly fewer instances than the others. Solutions include resampling techniques (oversampling or undersampling), using different evaluation metrics (precision, recall, F1 score), and incorporating class weights during training.

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 24. What is the vanishing gradient problem, and how does it affect deep neural networks?

The vanishing gradient problem occurs when gradients become extremely small during backpropagation, leading to negligible weight updates in early layers. This hinders the training of deep networks, as early layers fail to learn meaningful representations.

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 batch normalization and its advantages in training deep neural networks.

Batch normalization normalizes the inputs of a layer within a mini-batch, reducing internal covariate shift. It stabilizes and accelerates the training process, enables the use of higher learning rates, and acts as a form of regularization, reducing the reliance on techniques like dropout.

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. Explain the concept of Long Short-Term Memory (LSTM) networks and their advantages over traditional RNNs.

LSTMs are a type of RNN designed to address the vanishing gradient problem. They use memory cells and gates to selectively store and retrieve information over long sequences, making them more effective at capturing long-range dependencies in 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 27. Explain the concept of a generative adversarial network (GAN) and its applications.

A GAN consists of a generator and a discriminator trained simultaneously through adversarial training. The generator generates synthetic data, while the discriminator distinguishes between real and fake data. GANs are used for image generation, style transfer, and data augmentation.

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 28. What is the curse of dimensionality, and how does it affect machine learning algorithms?

The curse of dimensionality refers to the challenges and increased complexity that arise when dealing with high-dimensional data. As the number of features or dimensions increases, the amount of data required to cover the space adequately grows exponentially. This can lead to issues such as sparsity and increased computational requirements.

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 29. Explain the concept of attention mechanisms in neural networks and their applications.

Attention mechanisms allow a model to focus on specific parts of the input sequence when making predictions. They are commonly used in natural language processing tasks, such as machine translation, where the model needs to selectively attend to relevant words or tokens in the input.

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

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
Python Matplotlib perguntas e respostas de entrevista - Total 30 questions
Django perguntas e respostas de entrevista - Total 50 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

All interview subjects

Microsoft .NET perguntas e respostas de entrevista - Total 60 questions
ASP perguntas e respostas de entrevista - Total 82 questions
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
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
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
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
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
CCNA perguntas e respostas de entrevista - Total 40 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
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
DPDP perguntas e respostas de entrevista - Total 30 questions
PIPEDA perguntas e respostas de entrevista - Total 20 questions
CCPA perguntas e respostas de entrevista - Total 20 questions
GDPR perguntas e respostas de entrevista - Total 30 questions
HITRUST perguntas e respostas de entrevista - Total 20 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
Computer Science perguntas e respostas de entrevista - Total 50 questions
MS Word perguntas e respostas de entrevista - Total 50 questions
Operating System perguntas e respostas de entrevista - Total 22 questions
Tips and Tricks perguntas e respostas de entrevista - Total 30 questions
PoowerPoint perguntas e respostas de entrevista - Total 50 questions
Data Structures perguntas e respostas de entrevista - Total 49 questions
Microsoft Excel perguntas e respostas de entrevista - Total 37 questions
Computer Networking perguntas e respostas de entrevista - Total 65 questions
Computer Basics perguntas e respostas de entrevista - Total 62 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
Python Matplotlib perguntas e respostas de entrevista - Total 30 questions
Django perguntas e respostas de entrevista - Total 50 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
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
Data Mining perguntas e respostas de entrevista - Total 30 questions
Elasticsearch perguntas e respostas de entrevista - Total 61 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
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
DBMS perguntas e respostas de entrevista - Total 73 questions
MariaDB perguntas e respostas de entrevista - Total 40 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
Electrical Engineering perguntas e respostas de entrevista - Total 30 questions
Verilog perguntas e respostas de entrevista - Total 30 questions
Digital Electronics perguntas e respostas de entrevista - Total 38 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
Civil Engineering perguntas e respostas de entrevista - Total 30 questions
Electrical Machines perguntas e respostas de entrevista - Total 29 questions
Data Engineer perguntas e respostas de entrevista - Total 30 questions
Robotics perguntas e respostas de entrevista - Total 28 questions
AutoCAD perguntas e respostas de entrevista - Total 30 questions
Power System perguntas e respostas de entrevista - Total 28 questions
Web API perguntas e respostas de entrevista - Total 31 questions
Dell Boomi perguntas e respostas de entrevista - Total 30 questions
Salesforce perguntas e respostas de entrevista - Total 57 questions
IBM DataStage perguntas e respostas de entrevista - Total 20 questions
Talend perguntas e respostas de entrevista - Total 34 questions
TIBCO perguntas e respostas de entrevista - Total 30 questions
Informatica perguntas e respostas de entrevista - Total 48 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
Java Design Patterns perguntas e respostas de entrevista - Total 15 questions
Spring Framework perguntas e respostas de entrevista - Total 53 questions
Java Swing perguntas e respostas de entrevista - Total 27 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
Java Exception Handling perguntas e respostas de entrevista - Total 30 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 15 perguntas e respostas de entrevista - Total 16 questions
Java Multithreading perguntas e respostas de entrevista - Total 30 questions
Apache Wicket perguntas e respostas de entrevista - Total 26 questions
Core Java perguntas e respostas de entrevista - Total 306 questions
JBoss perguntas e respostas de entrevista - Total 14 questions
Log4j perguntas e respostas de entrevista - Total 35 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
Java Support perguntas e respostas de entrevista - Total 30 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
JAXB perguntas e respostas de entrevista - Total 18 questions
JUnit perguntas e respostas de entrevista - Total 24 questions
Java OOPs perguntas e respostas de entrevista - Total 30 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
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
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
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
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
Ionic perguntas e respostas de entrevista - Total 32 questions
Android perguntas e respostas de entrevista - Total 14 questions
Control System perguntas e respostas de entrevista - Total 28 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
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
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
Docker 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
College Teachers 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
GIT 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
SSB 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
JSON perguntas e respostas de entrevista - Total 16 questions
OSPF perguntas e respostas de entrevista - Total 30 questions
Sqoop perguntas e respostas de entrevista - Total 30 questions
Scrum Master perguntas e respostas de entrevista - Total 30 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
Bitcoin perguntas e respostas de entrevista - Total 30 questions
Active Directory perguntas e respostas de entrevista - Total 30 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
Kubernetes 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
PHP OOPs 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
Yoga Teachers Training 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
School Teachers perguntas e respostas de entrevista - Total 25 questions
Language in C perguntas e respostas de entrevista - Total 80 questions
Behavioral perguntas e respostas de entrevista - Total 29 questions
Apache Spark perguntas e respostas de entrevista - Total 24 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
System Design perguntas e respostas de entrevista - Total 30 questions
VISA perguntas e respostas de entrevista - Total 30 questions
IIS perguntas e respostas de entrevista - Total 30 questions
BPO perguntas e respostas de entrevista - Total 48 questions
ANT perguntas e respostas de entrevista - Total 10 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
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
TypeScript perguntas e respostas de entrevista - Total 38 questions
Knockout JS perguntas e respostas de entrevista - Total 25 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
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
NodeJS perguntas e respostas de entrevista - Total 30 questions
RxJS perguntas e respostas de entrevista - Total 29 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
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
Ethical Hacking perguntas e respostas de entrevista - Total 40 questions
Cyber Security perguntas e respostas de entrevista - Total 50 questions
Weblogic perguntas e respostas de entrevista - Total 30 questions
Unix perguntas e respostas de entrevista - Total 105 questions
Tomcat perguntas e respostas de entrevista - Total 16 questions
Glassfish perguntas e respostas de entrevista - Total 8 questions
Ubuntu perguntas e respostas de entrevista - Total 30 questions
Linux perguntas e respostas de entrevista - Total 43 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
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
Quality Assurance perguntas e respostas de entrevista - Total 56 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
API Testing perguntas e respostas de entrevista - Total 30 questions
Appium perguntas e respostas de entrevista - Total 30 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
GWT perguntas e respostas de entrevista - Total 27 questions
Symfony perguntas e respostas de entrevista - Total 30 questions
Ruby On Rails perguntas e respostas de entrevista - Total 74 questions
CSS 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
PHP perguntas e respostas de entrevista - Total 27 questions
Oracle JET(OJET) perguntas e respostas de entrevista - Total 54 questions
Zend Framework perguntas e respostas de entrevista - Total 24 questions
Frontend Developer perguntas e respostas de entrevista - Total 30 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
Copyright © 2026, WithoutBook.