NEW
Font size
WorksheetsBeyond the brackets
Total questions: 10
Worksheet time: 5mins
What does the function word_stats usually return?
If the input is "Dog dog DOG", how many unique words should the function return (case-insensitive)?
Why do we write test cases?
What does “refactoring” mean in software development?
Which statement best captures the difference between Copilot-style tools and Agentic AI?
In Python, what will be the output of the following code?
x = [1, 2, 3]
y = x
y.append(4)
print(x)
In databases, what is the main purpose of using normalization?
In machine learning, which situation indicates overfitting?
What is the primary benefit of using indexes in a database?
Indexes improve the speed of data retrieval operations on a database table.
Indexes increase the size of the database significantly.
Indexes are primarily for data backup purposes.
Indexes are used to enforce data integrity rules.
What is the main purpose of unit testing in software development?
To test individual components for correctness before integration.
To test the entire application as a whole.
To ensure the software is user-friendly.
To check the performance of the software under load.
