0
0
Agentic_aiml~20 mins

Research assistant agent in Agentic Ai - Practice Problems & Coding Challenges

Choose your learning style8 modes available
Challenge - 5 Problems
🎖️
Research Assistant Agent Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 conceptual
intermediate
2:00remaining
How does a research assistant agent prioritize tasks?

A research assistant agent receives multiple tasks such as summarizing papers, extracting data, and generating reports. How does it decide which task to do first?

AIt always does the easiest task first to finish quickly.
BIt randomly picks any task without considering importance or deadlines.
CIt waits for a human to assign the next task each time.
DIt prioritizes tasks based on deadlines and relevance to the main research goal.
Attempts:
2 left
💻 code output
intermediate
2:00remaining
Output of a simple research assistant agent task queue

What will be the output of the following Python code simulating a research assistant agent's task queue?

Agentic_ai
tasks = ['summarize paper', 'extract data', 'generate report']
completed = []

while tasks:
    task = tasks.pop(0)
    completed.append(f"Done: {task}")

print(completed)
A['Done: summarize paper', 'Done: extract data', 'Done: generate report']
B['Done: generate report', 'Done: extract data', 'Done: summarize paper']
C['summarize paper', 'extract data', 'generate report']
D[]
Attempts:
2 left
model choice
advanced
2:00remaining
Best model type for a research assistant agent summarizing papers

Which model type is most suitable for a research assistant agent tasked with summarizing scientific papers?

AA convolutional neural network (CNN) designed for image recognition.
BA recurrent neural network (RNN) or transformer model trained on text summarization.
CA clustering algorithm like K-means for grouping data points.
DA reinforcement learning model for playing games.
Attempts:
2 left
hyperparameter
advanced
2:00remaining
Choosing hyperparameters for a research assistant agent's text summarization model

Which hyperparameter adjustment is most likely to improve the quality of summaries generated by a transformer-based research assistant agent?

AIncreasing the learning rate drastically to speed up training.
BReducing the number of attention heads to simplify the model.
CIncreasing the maximum sequence length to capture more context.
DDecreasing the batch size to zero.
Attempts:
2 left
metrics
expert
2:00remaining
Evaluating a research assistant agent's summarization quality

A research assistant agent generates summaries of research papers. Which metric best measures how well the summaries capture the original content?

ABLEU score comparing generated summary to reference summary.
BMean squared error between summary and original text embeddings.
CAccuracy of classification labels.
DConfusion matrix of predicted vs actual categories.
Attempts:
2 left