Complete Question Index

Browse through all 2134 assessment questions (Page 14 of 15)

[DUMP]Generative AIVariational Autoencoders

What is the y-axis label of the chart visualizing the error?

[DUMP]Generative AIVariational Autoencoders

What does the VAE attempt to minimize during training?

[DUMP]Generative AIVariational Autoencoders

In the VAE, what does the sampling function introduce?

[DUMP]Generative AIVariational Autoencoders

How is the data divided for training the VAE?

[DUMP]Generative AIVariational Autoencoders

What two components combine to form the VAE's loss?

[DUMP]Generative AIVariational Autoencoders

Which of the following is NOT an attribute in the given data?

[DUMP]Generative AIVariational Autoencoders - Pre Quiz

Why are autoencoders considered generative models?

[DUMP]Generative AIVariational Autoencoders - Pre Quiz

Reparameterization trick is used to... Improve model accuracy Deal with the non-differentiability of sampling in VAEs

[DUMP]Generative AIGenerative Adversarial Networks

The training process of GANs is often likened to which game?

[DUMP]Generative AIGenerative Adversarial Networks

What does GAN stand for?

[DUMP]Generative AIGenerative Adversarial Networks

What is a challenge faced during GAN training due to the minimax game concept?

[DUMP]Generative AIGenerative Adversarial Networks

In GANs, which component is responsible for evaluating the authenticity of data?

[DUMP]Generative AIGenerative Adversarial Networks

Which component of a GAN is responsible for generating new data samples?

[DUMP]Generative AIGenerative Adversarial Networks

Progressive GANs are designed to address which challenge in traditional GANs?

[DUMP]Generative AIGenerative Adversarial Networks

Which type of GAN allows for generating data based on specific categories?

[DUMP]Generative AIGenerative Adversarial Networks

In the GAN architecture, what is the primary goal of the Discriminator?

[DUMP]Generative AIGenerative Adversarial Networks

Which of the following is a real-world application where GANs have shown significant promise?

[DUMP]Generative AIGenerative Adversarial Networks

What is mode collapse in the context of GANs?

[DUMP]Generative AIGenerative Adversarial Networks

Which GAN variant focuses on gradually increasing the resolution of generated images?

[DUMP]Generative AIGenerative Adversarial Networks

Which is NOT a real-world application of GANs?

[DUMP]Generative AIGenerative Adversarial Networks

In GANs, if the discriminator becomes too powerful, what can happen?

[DUMP]Generative AIGenerative Adversarial Networks

Which statement about GANs is true?

[DUMP]Generative AIGenerative Adversarial Networks

Mode collapse is problematic because...

[DUMP]Generative AIGenerative Adversarial Networks

What is a challenge in evaluating the performance of GANs?

[DUMP]Generative AIGenerative Adversarial Networks

Which component of a GAN tries to produce fake data?

[DUMP]Generative AIGenerative Adversarial Networks

The generator's objective in GANs is to...

[DUMP]Generative AIGenerative Adversarial Networks

In the minimax game of GANs, what is the discriminator's goal?

[DUMP]Generative AIGenerative Adversarial Networks

Which GAN variant can be conditioned on labels to generate specific outputs?

[DUMP]Generative AIGenerative Adversarial Networks

How many images are there in each class of the CIFAR-10 dataset?

[DUMP]Generative AIGenerative Adversarial Networks

What is used to refine the models during training?

[DUMP]Generative AIGenerative Adversarial Networks

In the provided code, why is discriminator.trainable set to False when setting up the combined system?

[DUMP]Generative AIGenerative Adversarial Networks

Which of the following is NOT a feedback given to the generator during training?

[DUMP]Generative AIGenerative Adversarial Networks

Why might someone want to use GANs on the CIFAR-10 dataset?

[DUMP]Generative AIGenerative Adversarial Networks

Which technique can help in dealing with training instability in GANs?

[DUMP]Generative AIGenerative Adversarial Networks

Which of the following best describes the role of the generator in a GAN?

[DUMP]Generative AIGenerative Adversarial Networks

Which challenge refers to the generator producing limited varieties or even the same sample every time?

[DUMP]Generative AIGenerative Adversarial Networks

Which architecture can help address convergence issues in traditional GANs?

[DUMP]Generative AIGenerative Adversarial Networks

In the generator code, what is the purpose of the Reshape layer?

[DUMP]Generative AIGenerative Adversarial Networks

During training, what does the generator use to improve itself?

[DUMP]Generative AIGenerative Adversarial Networks

What does the discriminator do in a GAN?

[DUMP]Generative AIGenerative Adversarial Networks

In the discriminator's code, which layer helps in reducing the dimensions of the input image?

[DUMP]Generative AIGenerative Adversarial Networks

Which activation function is used in the final layer of the generator model?

[DUMP]Generative AISequence Generation with RNNs

RNNs are primarily used for which type of data?

[DUMP]Generative AISequence Generation with RNNs

What is the key advantage of using LSTMs over basic RNNs in sequence generation tasks?

[DUMP]Generative AISequence Generation with RNNs

Which problem in RNNs does LSTM help to address?

[DUMP]Generative AISequence Generation with RNNs

When using RNNs for music generation, what does each neuron in the output layer typically represent?

[DUMP]Generative AISequence Generation with RNNs

In NLP, what does RNNs help to predict?

[DUMP]Generative AISequence Generation with RNNs

Which RNN architecture utilizes update and reset gates to manage memory?

[DUMP]Generative AISequence Generation with RNNs

What does RNN stand for?

[DUMP]Generative AISequence 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 AISequence Generation with RNNs

Which of the following is NOT a type of RNN architecture?

[DUMP]Generative AISequence Generation with RNNs

Which of the following is NOT a typical use case for RNNs?

[DUMP]Generative AISequence Generation with RNNs

Which of the following is a common application of RNNs in NLP?

[DUMP]Generative AISequence Generation with RNNs

Why might one use GRU over LSTM?

[DUMP]Generative AISequence Generation with RNNs

In sequence generation tasks, what is the primary input to an RNN at each time step?

[DUMP]Generative AISequence Generation with RNNs

Which RNN architecture uses a reset and update gate?

[DUMP]Generative AISequence Generation with RNNs

How do RNNs handle variable-length sequences in NLP?

[DUMP]Generative AISequence Generation with RNNs

Which problem arises when training RNNs on long sequences?

[DUMP]Generative AISequence Generation with RNNs

What is the main advantage of LSTM over basic RNN?

[DUMP]Generative AISequence Generation with RNNs

What is the role of the `<OOV>` token?

[DUMP]Generative AISequence Generation with RNNs

Which layer in the RNN model represents words as detailed feature lists?

[DUMP]Generative AISequence Generation with RNNs

Why is padding used in the preprocessing step?

[DUMP]Generative AISequence Generation with RNNs

What advantage does LSTM have over traditional RNNs?

[DUMP]Generative AISequence Generation with RNNs

What is the purpose of the Dropout layer in the LSTM with Dropout model?

[DUMP]Generative AISequence Generation with RNNs

What might be a concern if the training accuracy is high but validation accuracy is significantly low?

[DUMP]Generative AISequence Generation with RNNs

In which scenario might you prefer a simple RNN over an LSTM?

[DUMP]Generative AISequence Generation with RNNs

Which parameter in `model.fit()` signifies the number of times the model is exposed to the dataset?

[DUMP]Generative AISequence Generation with RNNs

Why is the loss function important during model compilation?

[DUMP]Generative AISequence Generation with RNNs

How does the model handle reviews of varying lengths?

[DUMP]Generative AISequence Generation with RNNs

Why might the vanishing gradient problem be a challenge in RNNs?

[DUMP]Generative AISequence Generation with RNNs

In the given LSTM model, which layer(s) help in retaining memory and context?

[DUMP]Generative AISequence Generation with RNNs

When using a tokenizer with a fixed number of words, what could be a potential drawback?

[DUMP]Generative AISequence Generation with RNNs

What is the primary function of an Embedding Layer?

[DUMP]Generative AISequence Generation with RNNs

After training, what can be inferred if the validation loss keeps decreasing but training loss remains high?

[DUMP]Generative AISequence Generation with RNNs - Pre Quiz

In the context of natural language processing, how are RNNs typically utilized for machine translation?

[DUMP]Generative AISequence Generation with RNNs - Post Quiz

What is the primary difference between LSTM and GRU?

[DUMP]Generative AISequence Generation with RNNs - Post Quiz

In music generation, what might an RNN be trained to predict?

[DUMP]Generative AITransformers and Attention Mechanisms - Pre Quiz

The Transformer architecture introduced the concept of self- attention to handle which primary challenge in sequence modeling?

[DUMP]Generative AITransformers 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 AITransformers and Attention Mechanisms - Pre Quiz

Why is attention particularly crucial in sequence-to-sequence tasks like translation?

[DUMP]Generative AITransformers and Attention Mechanisms

Which of the following is NOT a sequence-to-sequence task?

[DUMP]Generative AITransformers and Attention Mechanisms

In the context of Transformers for language translation, what does the encoder primarily focus on?

[DUMP]Generative AITransformers and Attention Mechanisms

What is the primary component of the Transformer architecture that helps it handle sequences?

[DUMP]Generative AITransformers and Attention Mechanisms

What is the first step in training a Transformer model for a specific task?

[DUMP]Generative AITransformers and Attention Mechanisms

Which application showcases the use of Transformers in image tasks?

[DUMP]Generative AITransformers and Attention Mechanisms

Which Transformer model is specifically designed for language translation?

[DUMP]Generative AITransformers and Attention Mechanisms

What does the Multi-head attention mechanism in Transformers help with?

[DUMP]Generative AITransformers and Attention Mechanisms

Which model can be used for both image and text tasks?

[DUMP]Generative AITransformers and Attention Mechanisms

Which mechanism allows Transformers to weigh the importance of different words in a sequence?

[DUMP]Generative AITransformers and Attention Mechanisms

What is the primary task BERT is designed for?

[DUMP]Generative AITransformers and Attention Mechanisms

In sequence-to-sequence tasks, why is attention important?

[DUMP]Generative AITransformers and Attention Mechanisms

In the context of Transformers, what does "seq to seq" stand for?

[DUMP]Generative AITransformers and Attention Mechanisms

Which of the following models is designed for image generation?

[DUMP]Generative AITransformers and Attention Mechanisms

Which Transformer model is known for generating coherent paragraphs of text?

[DUMP]Generative AITransformers and Attention Mechanisms

For which task might you use a Transformer to generate a concise summary of a long article?

[DUMP]Generative AITransformers and Attention Mechanisms

How did the processing capabilities of Transformers affect GlobeTech's translation time?

[DUMP]Generative AITransformers and Attention Mechanisms

Traditional MT models required extensive what for each new language?

[DUMP]Generative AITransformers and Attention Mechanisms

The attention mechanism in Transformers allows the model to focus on what?

[DUMP]Generative AITransformers and Attention Mechanisms

How did GlobeTech offer real-time customer support in multiple languages?

[DUMP]Generative AITransformers and Attention Mechanisms

What technology does GlobeTech plan to integrate with Transformers for customer support in the future?

[DUMP]Generative AITransformers and Attention Mechanisms

Why can we say that Transformers brought a paradigm shift in machine translation?

[DUMP]Generative AITransformers and Attention Mechanisms

How did Transformers improve GlobeTech's user interface experience for users of different languages?

[DUMP]Generative AITransformers and Attention Mechanisms

How did Transformers improve GlobeTech's scalability issue for new languages?

[DUMP]Generative AITransformers and Attention Mechanisms

Combining voice recognition and Transformers will help GlobeTech offer what?

[DUMP]Generative AITransformers and Attention Mechanisms

What was a major challenge faced by GlobeTech in their previous MT methods?

[DUMP]Generative AITransformers and Attention Mechanisms

What unique mechanism in Transformers aids in understanding context?

[DUMP]Generative AITransformers and Attention Mechanisms

After adopting Transformer-based MT, by how much did GlobeTech reduce translation-related complaints?

[DUMP]Generative AITransformers and Attention Mechanisms

Which paper introduced the Transformer architecture?

[DUMP]Generative AITransformers and Attention Mechanisms –PostQuiz

How does Multi-head attention differ from standard attention?

[DUMP]Generative AITransformers and Attention Mechanisms –PostQuiz

What is the main difference between pre-training and fine- tuning in Transformers?

[DUMP]Generative AICase Study - Transformers in Machine Translation – Quiz

Why did GlobeTech's product descriptions sound off with earlier MT models?

[DUMP]Generative AICase Study - Transformers in Machine Translation – Quiz

What unique aspect is GlobeTech exploring to further enhance translations using Transformers?

[DUMP]Generative AIGenerative AI in Industry and Real-World Applications

What differentiates Google Bard's data access from ChatGPT?

[DUMP]Generative AIGenerative AI in Industry and Real-World Applications

DALL-E's image generation can be optimal for which of the following applications?

[DUMP]Generative AIGenerative AI in Industry and Real-World Applications

Which industry utilizes AI for personalized care programs enhancing patient recovery?

[DUMP]Generative AIGenerative AI in Industry and Real-World Applications

In the realm of manufacturing, how does generative AI impact the design process?

[DUMP]Generative AIGenerative AI in Industry and Real-World Applications

During the harvesting phase, how does AI offer a boon to the agricultural sector?

[DUMP]Generative AIGenerative AI in Industry and Real-World Applications

Which conversational AI is not constructed on the Transformer neural network foundation?

[DUMP]Generative AIGenerative AI in Industry and Real-World Applications

Which AI platform, integrated into Microsoft's Bing, delivers instant query answers?

[DUMP]Generative AIGenerative AI in Industry and Real-World Applications

For which sector does generative AI replicate potential threat environments to bolster proactive defense?

[DUMP]Generative AIGenerative 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 AIGenerative AI in Industry and Real-World Applications

Compared to its predecessor, DALL-E, what is an improved feature of DALL-E 2?

[DUMP]Generative AIGenerative AI in Industry and Real-World Applications

What is a unique feature of ChatGPT that distinguishes it from Bard by Google?

[DUMP]Generative AIGenerative AI in Industry and Real-World Applications

For which feature might users of the basic plans of Synthesia encounter quality concerns?

[DUMP]Generative AIGenerative AI in Industry and Real-World Applications

Bard by Google has limitations in which of the following aspects?

[DUMP]Generative AIGenerative AI in Industry and Real-World Applications

Cohere Generate primarily targets which type of content?

[DUMP]Generative AIGenerative AI in Industry and Real-World Applications

Which of the following is NOT an attribute of GPT-4 by OpenAI?

[DUMP]Generative AIGenerative AI in Industry and Real-World Applications

Which database does GitHub Copilot ground its data on?

[DUMP]Generative AIGenerative AI in Industry and Real-World Applications

What is a potential concern when using Code Whisperer by AWS with open-source projects?

[DUMP]Generative AIGenerative AI in Industry and Real-World Applications

How does Claude by Anthropic enhance its safety features?

[DUMP]Generative AIGenerative AI in Industry and Real-World Applications

Approximately what percentage of false positive rate does AlphaCode by DeepMind have?

[DUMP]Generative AIGenerative AI Applications in Key Industries:Quiz

Which AI methodology specializes in data set differentiation?

[DUMP]Generative AIIntroduction 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 AIGenerative Adversarial Networks - Post Quiz

The generator's objective in GANs is to... Reduce mode collapse None of the given options

[DUMP]Generative AIGenerative Adversarial Networks - Post Quiz

Mode collapse is problematic because... It requires more data It makes the discriminator weak

[MOCK 2026]May 2026 PrimersSDLC

In which phase of SDLC is the software constructed/developed?

[MOCK 2026]May 2026 PrimersArrays

Elements stored in an array can be accessed ________.

[MOCK 2026]May 2026 PrimersHTML5 Tags

Which of the following are self-closing/void tags in HTML5?

[MOCK 2026]May 2026 PrimersFunctions

What will be the output of the given JavaScript code for calculating the area of a square?

[MOCK 2026]May 2026 PrimersFunctions

Predict the output: select ABS(45.926,2) from dual.

[MOCK 2026]May 2026 PrimersGANs

What condition is essential for stable training in Generative Adversarial Networks (GANs)?

[MOCK 2026]May 2026 PrimersModel Complexity

As the complexity of a generative AI model increases, the risk of ________ also increases.

[MOCK 2026]May 2026 PrimersContinuous Integration

Which stage in DevOps involves integrating small code changes frequently?

[MOCK 2026]May 2026 PrimersAgile Manifesto

Which principle is central to Agile methodology?

[MOCK 2026]May 2026 PrimersCommand Line

Which command allows you to check whether Python is installed from the command prompt?

[MOCK 2026]May 2026 PrimersStandard Library

Which Python module offers functions for generating random numbers for statistical simulations?

[MOCK 2026]May 2026 PrimersData Types

Select the correct statements.

[MOCK 2026]May 2026 PrimersFile 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 PrimersSELECT Expressions

Which query displays employee names and the new salary after an increment of Rs. 1000?

[MOCK 2026]May 2026 PrimersTransactions

Select the command that will revert back all the updates performed by the SQL in the transaction.

PreviousPage 14 of 15Next