CNN Study Guide 2026
Everything you need to pass the CNN exam in one place: the exam format, every topic to study, real practice questions with explanations, flashcards, and full-length practice tests. Free, no sign-up needed.
📋 CNN Exam Format at a Glance
📚 CNN Topics to Study (57)
✍️ Sample CNN Questions & Answers
1. What filter size does VGGNet use exclusively in its convolutional layers?
VGGNet uses only 3x3 convolutional filters, showing that stacking small filters achieves the same receptive field as larger filters with fewer parameters.
2. In Parametric ReLU (PReLU), what is learned during training?
PReLU learns the negative-slope coefficient α via backpropagation, allowing the network to adapt the activation shape rather than fixing it at a preset value.
3. How does a transposed convolution (sometimes called deconvolution) differ from a standard convolution in terms of spatial output?
Transposed convolution is the gradient operation of a forward convolution; it increases spatial size and is used in decoders, GANs, and segmentation networks.
4. The gradient of a substance's concentration, such as urea, during peritoneal dialysis
During peritoneal dialysis, the dialysate solution is introduced into the peritoneal cavity, creating a concentration gradient for waste products like urea. Initially, urea concentration is high in the blood and low in the dialysate. As dialysis progresses, urea moves from the blood into the dialysate, causing its concentration in the blood to decrease and its concentration in the dialysate to increase, thus reducing the overall concentration gradient over time until equilibrium is approached.
5. Which statement about Dropout during inference (test time) in a CNN is correct?
At inference, Dropout is turned off and weights are scaled by the keep probability (or equivalently, outputs are scaled at training) to maintain expected activation magnitudes.
6. Which technique involves training a lightweight student model to mimic a larger pretrained teacher model?
Knowledge distillation trains a compact student to replicate the teacher's soft outputs, transferring knowledge to a smaller deployable model.