|
| 1 | +--- |
| 2 | +title: "Test" |
| 3 | +pass_percentage: 70 |
| 4 | +questions: |
| 5 | + - id: "q1" |
| 6 | + text: "What are the three key pillars of observability?" |
| 7 | + type: "multiple-answers" |
| 8 | + marks: 2 |
| 9 | + options: |
| 10 | + - id: "a" |
| 11 | + text: "Metrics" |
| 12 | + is_correct: true |
| 13 | + - id: "b" |
| 14 | + text: "Logs" |
| 15 | + is_correct: true |
| 16 | + - id: "c" |
| 17 | + text: "Traces" |
| 18 | + is_correct: true |
| 19 | + - id: "d" |
| 20 | + text: "Databases" |
| 21 | + |
| 22 | + - id: "q2" |
| 23 | + text: "What is Continuous Integration (CI)?" |
| 24 | + type: "single-answer" |
| 25 | + marks: 2 |
| 26 | + options: |
| 27 | + - id: "a" |
| 28 | + text: "A practice where developers merge their changes back to the main branch as often as possible" |
| 29 | + is_correct: true |
| 30 | + - id: "b" |
| 31 | + text: "The manual process of validating and deploying code changes" |
| 32 | + - id: "c" |
| 33 | + text: "A process where code changes are automatically deployed to production without testing" |
| 34 | + - id: "d" |
| 35 | + text: "A type of software that prevents developers from making frequent code changes" |
| 36 | + |
| 37 | + - id: "q3" |
| 38 | + text: "Which tools are commonly used together for metrics collection and visualization?" |
| 39 | + type: "single-answer" |
| 40 | + marks: 2 |
| 41 | + options: |
| 42 | + - id: "a" |
| 43 | + text: "Jenkins and Docker" |
| 44 | + - id: "b" |
| 45 | + text: "Prometheus and Grafana" |
| 46 | + is_correct: true |
| 47 | + - id: "c" |
| 48 | + text: "Git and GitHub" |
| 49 | + - id: "d" |
| 50 | + text: "Kubernetes and Docker" |
| 51 | + |
| 52 | + - id: "q4" |
| 53 | + text: "What is the critical difference between Continuous Delivery and Continuous Deployment?" |
| 54 | + type: "single-answer" |
| 55 | + marks: 2 |
| 56 | + options: |
| 57 | + - id: "a" |
| 58 | + text: "Continuous Delivery requires manual intervention for production release, while Continuous Deployment is automatic" |
| 59 | + is_correct: true |
| 60 | + - id: "b" |
| 61 | + text: "Continuous Delivery is faster than Continuous Deployment" |
| 62 | + - id: "c" |
| 63 | + text: "Continuous Deployment does not use automated testing" |
| 64 | + - id: "d" |
| 65 | + text: "There is no difference between them" |
| 66 | + |
| 67 | + - id: "q5" |
| 68 | + text: "In GitOps, what serves as the single source of truth?" |
| 69 | + type: "single-answer" |
| 70 | + marks: 2 |
| 71 | + options: |
| 72 | + - id: "a" |
| 73 | + text: "The CI Server" |
| 74 | + - id: "b" |
| 75 | + text: "The Kubernetes Cluster" |
| 76 | + - id: "c" |
| 77 | + text: "The Git Repository" |
| 78 | + is_correct: true |
| 79 | + - id: "d" |
| 80 | + text: "The Production Database" |
| 81 | + |
| 82 | + - id: "q6" |
| 83 | + text: "What is the primary purpose of distributed tracing in observability?" |
| 84 | + type: "single-answer" |
| 85 | + marks: 2 |
| 86 | + options: |
| 87 | + - id: "a" |
| 88 | + text: "To store logs efficiently" |
| 89 | + - id: "b" |
| 90 | + text: "To track the journey of a single request across various services" |
| 91 | + is_correct: true |
| 92 | + - id: "c" |
| 93 | + text: "To replace metrics collection" |
| 94 | + - id: "d" |
| 95 | + text: "To automatically fix bugs" |
| 96 | + |
| 97 | + - id: "q7" |
| 98 | + text: "Which release strategies help minimize deployment risk?" |
| 99 | + type: "multiple-answers" |
| 100 | + marks: 2 |
| 101 | + options: |
| 102 | + - id: "a" |
| 103 | + text: "Blue-Green Deployment" |
| 104 | + is_correct: true |
| 105 | + - id: "b" |
| 106 | + text: "Canary Release" |
| 107 | + is_correct: true |
| 108 | + - id: "c" |
| 109 | + text: "Feature Toggles" |
| 110 | + is_correct: true |
| 111 | + - id: "d" |
| 112 | + text: "Direct production deployment without testing" |
| 113 | + |
| 114 | + - id: "q8" |
| 115 | + text: "What challenge in observability occurs when operators become overwhelmed by false positives?" |
| 116 | + type: "single-answer" |
| 117 | + marks: 2 |
| 118 | + options: |
| 119 | + - id: "a" |
| 120 | + text: "Data Volume and Overhead" |
| 121 | + - id: "b" |
| 122 | + text: "Alert Fatigue" |
| 123 | + is_correct: true |
| 124 | + - id: "c" |
| 125 | + text: "Tool Proliferation" |
| 126 | + - id: "d" |
| 127 | + text: "Cultural Resistance" |
| 128 | + |
| 129 | + - id: "q9" |
| 130 | + text: "What are the main benefits of implementing CI/CD?" |
| 131 | + type: "multiple-answers" |
| 132 | + marks: 2 |
| 133 | + options: |
| 134 | + - id: "a" |
| 135 | + text: "Faster time to market" |
| 136 | + is_correct: true |
| 137 | + - id: "b" |
| 138 | + text: "Reduced risk of deployment failures" |
| 139 | + is_correct: true |
| 140 | + - id: "c" |
| 141 | + text: "Early detection of bugs and issues" |
| 142 | + is_correct: true |
| 143 | + - id: "d" |
| 144 | + text: "Increased manual work for operations teams" |
| 145 | + |
| 146 | + - id: "q10" |
| 147 | + text: "Which of the following is a cloud native manager for service meshes?" |
| 148 | + type: "single-answer" |
| 149 | + marks: 2 |
| 150 | + options: |
| 151 | + - id: "a" |
| 152 | + text: "Prometheus" |
| 153 | + - id: "b" |
| 154 | + text: "Jenkins" |
| 155 | + - id: "c" |
| 156 | + text: "Meshery" |
| 157 | + is_correct: true |
| 158 | + - id: "d" |
| 159 | + text: "Docker" |
| 160 | + |
| 161 | +layout: "test" |
| 162 | +type: "test" |
| 163 | +--- |
0 commit comments