Skip to content

Commit

Permalink
Update questions.py
Browse files Browse the repository at this point in the history
Added 11 questions
  • Loading branch information
kshitijRM authored Dec 24, 2024
1 parent a8fbc5f commit 1345af0
Showing 1 changed file with 28 additions and 3 deletions.
31 changes: 28 additions & 3 deletions questions.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,33 @@ def __init__(self, question, options, correct_answer):
"Denial Of Service"
),
Question(
"",
["", "","",""],
""
"In python,_____ is used to end physical line or ignore the comments",
["**", "#","&","\\"],
"#"
),
Question(
"Which of the following is not crime?",
["cryptography", "Denial of service","Man-in-middle attack","phising"],
"cryptography"
),
Question(
"The earliest method used for planning project was ",
["CPM", "PERT","Bar Chart","Milestone Chart"],
"Bar Chart"
),
Question(
"The binary equivalent of decimal number 9 is?",
["1001", "1000","1100","1010"],
"1001"
),
Question(
"The type of project which requires minimum ammount of capital is",
["crash project", "normal project","disaster project","consultant project"],
"normal project"
),
Question(
"Cell is an ______ device",
["electro-mechanical", "electro-chemical","electro-magnetic","electro-dynamic"],
"electro-chemical"
)
]

0 comments on commit 1345af0

Please sign in to comment.