import os
from weasyprint import HTML
html_content = """
Competency Assessment - Reading Comprehension
Read the following passage carefully:
Cycling is a popular pastime because it has several benefits and also gives pleasure. First of all, cycling provides exercise, the need of which is felt by modern people. Because of the development of machinery and the pace of our life now, we are unable to exercise regularly. Therefore, we need the chance to exercise through the medium of sport.
Some people say that cycling is hard work, but a practised rider will not agree with this. The art of easy cycling must be developed. An active, healthy person should not always travel as an idle passenger. Neither should he become an inactive driver of petrol-driven vehicles like cars, scooters, vans, and so on. Such vehicles should be restricted to the aged and to those not enjoying good health. For them, these vehicles are both a necessity and a blessing.
It is often said that the cyclist cannot travel as fast or as far as the motorist. This is true. But surely the cyclist, pedalling calmly and slowly, can enjoy the scenery more than a hurrying person in a car? Cyclists believe that their method of travel is sensible as it strikes a nice balance between walking and driving.
There are at least two distinct types of cyclists. The athletic rider goes into strict training, loves long, fast rides and takes part in competitions, trying to set records. The other type is the tourist...
SECTION A: SOURCE-BASED & CASE-BASED MCQS
Directions: Read the questions carefully and select the most appropriate option based on textual subtext, logical extensions, and real-world implications.
Q1. [Source-Based Inference] According to the text, why has regular exercise become difficult for modern individuals?
| (a) Due to an absolute lack of interest in outdoor sports. |
(b) Because the growth of machinery and fast-paced lifestyles minimize natural physical exertion. |
| (c) Because modern health clinics advise against high-intensity sports. |
(d) Due to the global environmental challenges affecting open air playgrounds. |
Q2. [Analytical Case Analysis] Based on the passage, what is the author's viewpoint regarding petrol-driven vehicles like cars and scooters?
| (a) They should be completely banned across urban environments. |
(b) They ought to be restricted primarily to the elderly and those with poor health conditions. |
| (c) They should be redesigned to achieve better fuel efficiency. |
(d) They are exclusively meant for structural commercial cargo transport. |
Q3. [Comparative Critique] Why do cyclists view their mode of travel as "sensible" compared to motorists?
| (a) It helps them cross dense traffic paths at double the speed. |
(b) It strikes a harmonious balance between the slow pace of walking and the extreme speed of driving. |
| (c) It demands no mental focus or training compared to motor vehicles. |
(d) It allows them to participate in high-speed professional records easily. |
SECTION B: ASSERTION-REASONING QUESTIONS
Directions: Analyze Statement of Assertion (A) and Statement of Reason (R) and choose the appropriate option.
Q4. [Lifestyle Dynamics Focus]
Assertion (A): The author considers petrol-driven vehicles to be both a "necessity and a blessing" for the aged or unhealthy.
Reason (R): Motorized vehicles eliminate the demanding physical strain of travel for individuals who lack optimal health or youth.
| (a) Both (A) and (R) are true; (R) explains (A). | (b) Both (A) and (R) are true; (R) is not the explanation. |
| (c) (A) is true but (R) is false. | (d) (A) is false but (R) is true. |
SECTION C: VOCABULARY & SEMANTIC TESTING
Directions: Evaluate contextual definitions and linguistic relationships of terms from the excerpt.
Q5. [Contextual Synonym] In the text, the word "pastime" most accurately refers to:
| (a) A tedious occupation or job |
(b) A pleasant recreational hobby or leisure activity |
| (c) A strict medical treatment routine |
(d) An ancient architectural structural era |
Q6. In the text, the word "idle" used in the phrase "idle passenger" stands contextually opposite (Antonym) to:
| (a) Inactive |
(b) Unoccupied |
| (c) Active |
(d) Latent |
SECTION D: GRAMMAR COMPETENCY TESTING
Directions: Apply linguistic structures, cohesive discourse markers, and active-passive voice syntax rules.
Q7. [Cohesive Device Analysis] Identify the function of the transitions **"Because of"** and **"Therefore"** as underlined in the original text snippet:
| (a) They indicate sequential chronology of events. |
(b) They mark a structural link of Cause and Effect. |
| (c) They serve to provide hypothetical conditions. |
(d) They signify a logical summary contrast. |
Q8. [Voice Shift transformation] Convert the following passive formulation to Active voice: "The need of exercise is felt by modern people."
| (a) Modern people feel the need of exercise. |
(b) Modern people felt the need of exercise. |
| (c) Modern people are feeling the need of exercise. |
(d) Modern people have felt the need of exercise. |
METADATA & ANSWER KEY FOR ASSESSMENT DESIGNERS
| Q. No. |
Correct Option |
NEP Core Competency Targeted |
Detailed Explanatory & Pedagogical Rationale |
| 1 |
(b) |
Factual Extraction & Synthesis |
The text connects the speed of lifestyle and technological machinery directly to the systemic lack of active daily physical exercise. |
| 2 |
(b) |
Critical Analysis of Perspective |
The author explicitly notes that healthy and active individuals should avoid motor dependency, keeping cars as tools for the sick or elderly. |
| 3 |
(b) |
Textual Inference & Synthesis |
The passage underscores the sensible nature of cycling because it establishes a strategic balance between slow walking and high-speed driving. |
| 4 |
(a) |
Assertion-Reasoning Dynamics |
Both the statement and explanation match perfectly. For individuals lacking strength, motor tools function as an indispensable aid. |
| 5 |
(b) |
Vocabulary in Context |
A "pastime" indicates a preferred hobby or constructive activity pursued to spend leisure time enjoyably. |
| 6 |
(c) |
Antonym Resolution |
An "idle" passenger sits without contributing physical work; the correct semantic counterweight is an "active" participant. |
| 7 |
(b) |
Grammar - Discourse Markers |
"Because of" sets up an environmental root cause, while "Therefore" projects the logical subsequent outcome/consequence. |
| 8 |
(a) |
Grammar - Voice Transformation |
The simple present indicator "is felt" translates smoothly back into the root active simple present configuration "feel". |
"""
output_pdf_path = "NEP_2020_Cycling_Assessment.pdf"
HTML(string=html_content).write_pdf(output_pdf_path)
print(f"File successfully created: {output_pdf_path}")
Comments