Accenture
Primers
Assessments
Accenture Dumps
Coding Bank
Blog
Topics
Must Know
Mock Assessment 2026
Complete Question Index
Browse through all 2134 assessment questions (Page 14 of 15)
[DUMP]
Generative AI • Variational Autoencoders
What is the y-axis label of the chart visualizing the error?
[DUMP]
Generative AI • Variational Autoencoders
What does the VAE attempt to minimize during training?
[DUMP]
Generative AI • Variational Autoencoders
In the VAE, what does the sampling function introduce?
[DUMP]
Generative AI • Variational Autoencoders
How is the data divided for training the VAE?
[DUMP]
Generative AI • Variational Autoencoders
What two components combine to form the VAE's loss?
[DUMP]
Generative AI • Variational Autoencoders
Which of the following is NOT an attribute in the given data?
[DUMP]
Generative AI • Variational Autoencoders - Pre Quiz
Why are autoencoders considered generative models?
[DUMP]
Generative AI • Variational Autoencoders - Pre Quiz
Reparameterization trick is used to... Improve model accuracy Deal with the non-differentiability of sampling in VAEs
[DUMP]
Generative AI • Generative Adversarial Networks
The training process of GANs is often likened to which game?
[DUMP]
Generative AI • Generative Adversarial Networks
What does GAN stand for?
[DUMP]
Generative AI • Generative Adversarial Networks
What is a challenge faced during GAN training due to the minimax game concept?
[DUMP]
Generative AI • Generative Adversarial Networks
In GANs, which component is responsible for evaluating the authenticity of data?
[DUMP]
Generative AI • Generative Adversarial Networks
Which component of a GAN is responsible for generating new data samples?
[DUMP]
Generative AI • Generative Adversarial Networks
Progressive GANs are designed to address which challenge in traditional GANs?
[DUMP]
Generative AI • Generative Adversarial Networks
Which type of GAN allows for generating data based on specific categories?
[DUMP]
Generative AI • Generative Adversarial Networks
In the GAN architecture, what is the primary goal of the Discriminator?
[DUMP]
Generative AI • Generative Adversarial Networks
Which of the following is a real-world application where GANs have shown significant promise?
[DUMP]
Generative AI • Generative Adversarial Networks
What is mode collapse in the context of GANs?
[DUMP]
Generative AI • Generative Adversarial Networks
Which GAN variant focuses on gradually increasing the resolution of generated images?
[DUMP]
Generative AI • Generative Adversarial Networks
Which is NOT a real-world application of GANs?
[DUMP]
Generative AI • Generative Adversarial Networks
In GANs, if the discriminator becomes too powerful, what can happen?
[DUMP]
Generative AI • Generative Adversarial Networks
Which statement about GANs is true?
[DUMP]
Generative AI • Generative Adversarial Networks
Mode collapse is problematic because...
[DUMP]
Generative AI • Generative Adversarial Networks
What is a challenge in evaluating the performance of GANs?
[DUMP]
Generative AI • Generative Adversarial Networks
Which component of a GAN tries to produce fake data?
[DUMP]
Generative AI • Generative Adversarial Networks
The generator's objective in GANs is to...
[DUMP]
Generative AI • Generative Adversarial Networks
In the minimax game of GANs, what is the discriminator's goal?
[DUMP]
Generative AI • Generative Adversarial Networks
Which GAN variant can be conditioned on labels to generate specific outputs?
[DUMP]
Generative AI • Generative Adversarial Networks
How many images are there in each class of the CIFAR-10 dataset?
[DUMP]
Generative AI • Generative Adversarial Networks
What is used to refine the models during training?
[DUMP]
Generative AI • Generative Adversarial Networks
In the provided code, why is discriminator.trainable set to False when setting up the combined system?
[DUMP]
Generative AI • Generative Adversarial Networks
Which of the following is NOT a feedback given to the generator during training?
[DUMP]
Generative AI • Generative Adversarial Networks
Why might someone want to use GANs on the CIFAR-10 dataset?
[DUMP]
Generative AI • Generative Adversarial Networks
Which technique can help in dealing with training instability in GANs?
[DUMP]
Generative AI • Generative Adversarial Networks
Which of the following best describes the role of the generator in a GAN?
[DUMP]
Generative AI • Generative Adversarial Networks
Which challenge refers to the generator producing limited varieties or even the same sample every time?
[DUMP]
Generative AI • Generative Adversarial Networks
Which architecture can help address convergence issues in traditional GANs?
[DUMP]
Generative AI • Generative Adversarial Networks
In the generator code, what is the purpose of the Reshape layer?
[DUMP]
Generative AI • Generative Adversarial Networks
During training, what does the generator use to improve itself?
[DUMP]
Generative AI • Generative Adversarial Networks
What does the discriminator do in a GAN?
[DUMP]
Generative AI • Generative Adversarial Networks
In the discriminator's code, which layer helps in reducing the dimensions of the input image?
[DUMP]
Generative AI • Generative Adversarial Networks
Which activation function is used in the final layer of the generator model?
[DUMP]
Generative AI • Sequence Generation with RNNs
RNNs are primarily used for which type of data?
[DUMP]
Generative AI • Sequence Generation with RNNs
What is the key advantage of using LSTMs over basic RNNs in sequence generation tasks?
[DUMP]
Generative AI • Sequence Generation with RNNs
Which problem in RNNs does LSTM help to address?
[DUMP]
Generative AI • Sequence Generation with RNNs
When using RNNs for music generation, what does each neuron in the output layer typically represent?
[DUMP]
Generative AI • Sequence Generation with RNNs
In NLP, what does RNNs help to predict?
[DUMP]
Generative AI • Sequence Generation with RNNs
Which RNN architecture utilizes update and reset gates to manage memory?
[DUMP]
Generative AI • Sequence Generation with RNNs
What does RNN stand for?
[DUMP]
Generative AI • Sequence Generation with RNNs
During the training of RNNs for sequence generation, what is the common technique used to mitigate the vanishing gradient problem?
[DUMP]
Generative AI • Sequence Generation with RNNs
Which of the following is NOT a type of RNN architecture?
[DUMP]
Generative AI • Sequence Generation with RNNs
Which of the following is NOT a typical use case for RNNs?
[DUMP]
Generative AI • Sequence Generation with RNNs
Which of the following is a common application of RNNs in NLP?
[DUMP]
Generative AI • Sequence Generation with RNNs
Why might one use GRU over LSTM?
[DUMP]
Generative AI • Sequence Generation with RNNs
In sequence generation tasks, what is the primary input to an RNN at each time step?
[DUMP]
Generative AI • Sequence Generation with RNNs
Which RNN architecture uses a reset and update gate?
[DUMP]
Generative AI • Sequence Generation with RNNs
How do RNNs handle variable-length sequences in NLP?
[DUMP]
Generative AI • Sequence Generation with RNNs
Which problem arises when training RNNs on long sequences?
[DUMP]
Generative AI • Sequence Generation with RNNs
What is the main advantage of LSTM over basic RNN?
[DUMP]
Generative AI • Sequence Generation with RNNs
What is the role of the `<OOV>` token?
[DUMP]
Generative AI • Sequence Generation with RNNs
Which layer in the RNN model represents words as detailed feature lists?
[DUMP]
Generative AI • Sequence Generation with RNNs
Why is padding used in the preprocessing step?
[DUMP]
Generative AI • Sequence Generation with RNNs
What advantage does LSTM have over traditional RNNs?
[DUMP]
Generative AI • Sequence Generation with RNNs
What is the purpose of the Dropout layer in the LSTM with Dropout model?
[DUMP]
Generative AI • Sequence Generation with RNNs
What might be a concern if the training accuracy is high but validation accuracy is significantly low?
[DUMP]
Generative AI • Sequence Generation with RNNs
In which scenario might you prefer a simple RNN over an LSTM?
[DUMP]
Generative AI • Sequence Generation with RNNs
Which parameter in `model.fit()` signifies the number of times the model is exposed to the dataset?
[DUMP]
Generative AI • Sequence Generation with RNNs
Why is the loss function important during model compilation?
[DUMP]
Generative AI • Sequence Generation with RNNs
How does the model handle reviews of varying lengths?
[DUMP]
Generative AI • Sequence Generation with RNNs
Why might the vanishing gradient problem be a challenge in RNNs?
[DUMP]
Generative AI • Sequence Generation with RNNs
In the given LSTM model, which layer(s) help in retaining memory and context?
[DUMP]
Generative AI • Sequence Generation with RNNs
When using a tokenizer with a fixed number of words, what could be a potential drawback?
[DUMP]
Generative AI • Sequence Generation with RNNs
What is the primary function of an Embedding Layer?
[DUMP]
Generative AI • Sequence Generation with RNNs
After training, what can be inferred if the validation loss keeps decreasing but training loss remains high?
[DUMP]
Generative AI • Sequence Generation with RNNs - Pre Quiz
In the context of natural language processing, how are RNNs typically utilized for machine translation?
[DUMP]
Generative AI • Sequence Generation with RNNs - Post Quiz
What is the primary difference between LSTM and GRU?
[DUMP]
Generative AI • Sequence Generation with RNNs - Post Quiz
In music generation, what might an RNN be trained to predict?
[DUMP]
Generative AI • Transformers and Attention Mechanisms - Pre Quiz
The Transformer architecture introduced the concept of self- attention to handle which primary challenge in sequence modeling?
[DUMP]
Generative AI • Transformers and Attention Mechanisms - Pre Quiz
What is the primary advantage of pretraining a Transformer on a large corpus before fine-tuning on a specific task?
[DUMP]
Generative AI • Transformers and Attention Mechanisms - Pre Quiz
Why is attention particularly crucial in sequence-to-sequence tasks like translation?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
Which of the following is NOT a sequence-to-sequence task?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
In the context of Transformers for language translation, what does the encoder primarily focus on?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
What is the primary component of the Transformer architecture that helps it handle sequences?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
What is the first step in training a Transformer model for a specific task?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
Which application showcases the use of Transformers in image tasks?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
Which Transformer model is specifically designed for language translation?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
What does the Multi-head attention mechanism in Transformers help with?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
Which model can be used for both image and text tasks?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
Which mechanism allows Transformers to weigh the importance of different words in a sequence?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
What is the primary task BERT is designed for?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
In sequence-to-sequence tasks, why is attention important?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
In the context of Transformers, what does "seq to seq" stand for?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
Which of the following models is designed for image generation?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
Which Transformer model is known for generating coherent paragraphs of text?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
For which task might you use a Transformer to generate a concise summary of a long article?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
How did the processing capabilities of Transformers affect GlobeTech's translation time?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
Traditional MT models required extensive what for each new language?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
The attention mechanism in Transformers allows the model to focus on what?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
How did GlobeTech offer real-time customer support in multiple languages?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
What technology does GlobeTech plan to integrate with Transformers for customer support in the future?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
Why can we say that Transformers brought a paradigm shift in machine translation?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
How did Transformers improve GlobeTech's user interface experience for users of different languages?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
How did Transformers improve GlobeTech's scalability issue for new languages?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
Combining voice recognition and Transformers will help GlobeTech offer what?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
What was a major challenge faced by GlobeTech in their previous MT methods?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
What unique mechanism in Transformers aids in understanding context?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
After adopting Transformer-based MT, by how much did GlobeTech reduce translation-related complaints?
[DUMP]
Generative AI • Transformers and Attention Mechanisms
Which paper introduced the Transformer architecture?
[DUMP]
Generative AI • Transformers and Attention Mechanisms –PostQuiz
How does Multi-head attention differ from standard attention?
[DUMP]
Generative AI • Transformers and Attention Mechanisms –PostQuiz
What is the main difference between pre-training and fine- tuning in Transformers?
[DUMP]
Generative AI • Case Study - Transformers in Machine Translation – Quiz
Why did GlobeTech's product descriptions sound off with earlier MT models?
[DUMP]
Generative AI • Case Study - Transformers in Machine Translation – Quiz
What unique aspect is GlobeTech exploring to further enhance translations using Transformers?
[DUMP]
Generative AI • Generative AI in Industry and Real-World Applications
What differentiates Google Bard's data access from ChatGPT?
[DUMP]
Generative AI • Generative AI in Industry and Real-World Applications
DALL-E's image generation can be optimal for which of the following applications?
[DUMP]
Generative AI • Generative AI in Industry and Real-World Applications
Which industry utilizes AI for personalized care programs enhancing patient recovery?
[DUMP]
Generative AI • Generative AI in Industry and Real-World Applications
In the realm of manufacturing, how does generative AI impact the design process?
[DUMP]
Generative AI • Generative AI in Industry and Real-World Applications
During the harvesting phase, how does AI offer a boon to the agricultural sector?
[DUMP]
Generative AI • Generative AI in Industry and Real-World Applications
Which conversational AI is not constructed on the Transformer neural network foundation?
[DUMP]
Generative AI • Generative AI in Industry and Real-World Applications
Which AI platform, integrated into Microsoft's Bing, delivers instant query answers?
[DUMP]
Generative AI • Generative AI in Industry and Real-World Applications
For which sector does generative AI replicate potential threat environments to bolster proactive defense?
[DUMP]
Generative AI • Generative AI in Industry and Real-World Applications
Which AI model, developed by Google, is designed to engage in open-ended conversations, often generating creative responses to user prompts?
[DUMP]
Generative AI • Generative AI in Industry and Real-World Applications
Compared to its predecessor, DALL-E, what is an improved feature of DALL-E 2?
[DUMP]
Generative AI • Generative AI in Industry and Real-World Applications
What is a unique feature of ChatGPT that distinguishes it from Bard by Google?
[DUMP]
Generative AI • Generative AI in Industry and Real-World Applications
For which feature might users of the basic plans of Synthesia encounter quality concerns?
[DUMP]
Generative AI • Generative AI in Industry and Real-World Applications
Bard by Google has limitations in which of the following aspects?
[DUMP]
Generative AI • Generative AI in Industry and Real-World Applications
Cohere Generate primarily targets which type of content?
[DUMP]
Generative AI • Generative AI in Industry and Real-World Applications
Which of the following is NOT an attribute of GPT-4 by OpenAI?
[DUMP]
Generative AI • Generative AI in Industry and Real-World Applications
Which database does GitHub Copilot ground its data on?
[DUMP]
Generative AI • Generative AI in Industry and Real-World Applications
What is a potential concern when using Code Whisperer by AWS with open-source projects?
[DUMP]
Generative AI • Generative AI in Industry and Real-World Applications
How does Claude by Anthropic enhance its safety features?
[DUMP]
Generative AI • Generative AI in Industry and Real-World Applications
Approximately what percentage of false positive rate does AlphaCode by DeepMind have?
[DUMP]
Generative AI • Generative AI Applications in Key Industries:Quiz
Which AI methodology specializes in data set differentiation?
[DUMP]
Generative AI • Introduction to Generative AI - Post quiz
If an AI system is designed to label images of cats and dogs, it is primarily a _______ model. Unsupervised
[DUMP]
Generative AI • Generative Adversarial Networks - Post Quiz
The generator's objective in GANs is to... Reduce mode collapse None of the given options
[DUMP]
Generative AI • Generative Adversarial Networks - Post Quiz
Mode collapse is problematic because... It requires more data It makes the discriminator weak
[MOCK 2026]
May 2026 Primers • SDLC
In which phase of SDLC is the software constructed/developed?
[MOCK 2026]
May 2026 Primers • Arrays
Elements stored in an array can be accessed ________.
[MOCK 2026]
May 2026 Primers • HTML5 Tags
Which of the following are self-closing/void tags in HTML5?
[MOCK 2026]
May 2026 Primers • Functions
What will be the output of the given JavaScript code for calculating the area of a square?
[MOCK 2026]
May 2026 Primers • Functions
Predict the output: select ABS(45.926,2) from dual.
[MOCK 2026]
May 2026 Primers • GANs
What condition is essential for stable training in Generative Adversarial Networks (GANs)?
[MOCK 2026]
May 2026 Primers • Model Complexity
As the complexity of a generative AI model increases, the risk of ________ also increases.
[MOCK 2026]
May 2026 Primers • Continuous Integration
Which stage in DevOps involves integrating small code changes frequently?
[MOCK 2026]
May 2026 Primers • Agile Manifesto
Which principle is central to Agile methodology?
[MOCK 2026]
May 2026 Primers • Command Line
Which command allows you to check whether Python is installed from the command prompt?
[MOCK 2026]
May 2026 Primers • Standard Library
Which Python module offers functions for generating random numbers for statistical simulations?
[MOCK 2026]
May 2026 Primers • Data Types
Select the correct statements.
[MOCK 2026]
May 2026 Primers • File Handling
What will be the content of file shop.txt after executing the shown Python code that writes Apple, Orange, Banana and then swaps the first and third l...
[MOCK 2026]
May 2026 Primers • SELECT Expressions
Which query displays employee names and the new salary after an increment of Rs. 1000?
[MOCK 2026]
May 2026 Primers • Transactions
Select the command that will revert back all the updates performed by the SQL in the transaction.
Previous
Page 14 of 15
Next