Courseiva
Knowledge + Practice
CertificationsVendorsCareer RoadmapsLabs & ToolsStudy GuidesGlossaryPractice Questions
C
Courseiva

Free IT certification practice questions with explained answers for CCNA, CompTIA, AWS, Azure, Google Cloud, and more.

Certification Practice Questions

CCNA practice questionsSecurity+ SY0-701 practice questionsAWS SAA-C03 practice questionsAZ-104 practice questionsAZ-900 practice questionsCLF-C02 practice questionsA+ Core 1 practice questionsGoogle Cloud ACE practice questionsCySA+ CS0-003 practice questionsNetwork+ N10-009 practice questions
View all certifications →

Product

CertificationsCertification PathsExam TopicsPractice TestsExam Dumps vs Practice TestsStudy HubComparisons

Free Resources

Difficulty IndexLearn — Free ChaptersIT GlossaryFree Tools & LabsStudy GuidesCareer RoadmapsBrowse by VendorCisco Command ReferenceCCNA Scenarios

Company

AboutContactEditorial PolicyQuestion Writing PolicyTrust Center

Legal

Privacy PolicyTerms of Service

Courseiva is a free IT certification practice platform offering original exam-style practice questions, detailed explanations, topic-based practice, mock exams, readiness tracking, and study analytics for Cisco, CompTIA, Microsoft, AWS, and other technology certifications.

© 2026 Courseiva. Courseiva is operated by JTNetSolutions Ltd. All rights reserved.

Courseiva is an independent certification practice platform and is not affiliated with, endorsed by, or sponsored by Cisco, Microsoft, AWS, CompTIA, Google, ISC2, ISACA, or any other certification vendor. Vendor names and certification marks are used only to identify the exams learners are preparing for.

HomeCertifications200-901TopicsSoftware Development and Design
Free · No Signup RequiredCisco · 200-901

200-901 Software Development and Design Practice Questions

20+ practice questions focused on Software Development and Design — one of the most tested topics on the Cisco DevNet Associate 200-901 exam. Each question includes a detailed explanation so you learn why the right answer is correct.

Start Software Development and Design Practice

Exam Domains

Software Development and DesignUnderstanding and Using APIsApplication Deployment and SecurityCisco Platforms and DevelopmentNetwork FundamentalsInfrastructure and AutomationAll domains →

Study Tools

Practice TestMock ExamFlashcardsAll Topics

Sample Software Development and Design Questions

Practice all 20+ →
1.

A developer writes a Python script to read a configuration file. Which code snippet correctly opens the file 'config.json' for reading and ensures the file is closed after use?

A.with open('config.json', 'r') as f:\n data = f.read()
B.open('config.json', 'r') as f:\n data = f.read()
C.with open('config.json', 'r') as f, data = f.read()
D.file = open('config.json', 'r')\ndata = file.read()\nfile.close()

Explanation: Option A is correct because it uses the `with` statement, which is a context manager that automatically calls `f.close()` when the block exits, ensuring the file is properly closed even if an exception occurs. The `'r'` mode opens the file for reading, and `f.read()` reads the entire contents into the `data` variable.

2.

A network automation script uses the requests library to retrieve device information from a REST API. The API requires authentication via a bearer token. Which code example correctly sets the Authorization header?

A.headers = {'Authorization': 'Token ' + token}\nresponse = requests.get(url, headers=headers)
B.response = requests.get(url, headers={'Authorization': token})
C.headers = {'Authorization': 'Bearer ' + token}\nresponse = requests.get(url, headers=headers)
D.response = requests.get(url, auth=('Bearer', token))

Explanation: Option C is correct because it constructs the Authorization header using the 'Bearer' scheme, which is the standard method for passing OAuth 2.0 bearer tokens in HTTP requests. The requests library requires the header to be explicitly set as a dictionary, and the token must be prefixed with 'Bearer ' to comply with RFC 6750.

3.

A developer is using Git for version control. After creating a new feature branch 'feature-login' from 'main', they make several commits. Meanwhile, another developer has merged changes into 'main'. The developer wants to incorporate the latest main changes into 'feature-login' without creating a merge commit. Which Git command should they use?

A.git rebase main
B.git merge main
C.git pull --rebase origin main
D.git checkout main && git pull && git checkout feature-login && git merge main

Explanation: Option C is correct because `git pull --rebase origin main` fetches the latest changes from the remote `main` branch and then rebases the current `feature-login` branch onto those changes. This incorporates the new commits from `main` without creating a merge commit, resulting in a linear history. The `--rebase` flag ensures that the developer's commits are replayed on top of the updated `main`, avoiding the extra merge commit that `git merge` would create.

4.

Which HTTP status code indicates that a POST request successfully created a new resource?

A.204 No Content
B.301 Moved Permanently
C.201 Created
D.200 OK

Explanation: HTTP 201 Created is the standard response for a successful POST that creates a resource.

5.

In Python, which data type is used to represent an unordered collection of unique elements?

A.set
B.tuple
C.list
D.dict

Explanation: In Python, a set is the correct data type for representing an unordered collection of unique elements. Sets automatically enforce uniqueness by using a hash table internally, so duplicate values are ignored upon insertion. This makes them ideal for operations like membership testing and deduplication, where order is irrelevant.

+15 more Software Development and Design questions available

Practice all Software Development and Design questions

How to master Software Development and Design for 200-901

1. Baseline your knowledge

Start with 10 questions to gauge your current understanding of Software Development and Design. This tells you whether you need a concept refresher or just practice.

2. Review every explanation

For each question — right or wrong — read the full explanation. Understanding why an answer is correct is more valuable than knowing the answer itself.

3. Focus on exam traps

Software Development and Design questions on the 200-901 frequently use trap wording. Look for subtle differences in answers that test your precision, not just general knowledge.

4. Reach 80% consistently

Do repeated sessions until you score 80%+ three times in a row. Then move to mixed-mode practice to test cross-topic recall under realistic conditions.

Frequently asked questions

How many 200-901 Software Development and Design questions are on the real exam?

The exact number varies per candidate. Software Development and Design is tested as part of the Cisco DevNet Associate 200-901 blueprint. Practicing with targeted Software Development and Design questions ensures you can handle any format or difficulty that appears.

Are these 200-901 Software Development and Design practice questions free?

Yes. Courseiva provides free 200-901 practice questions across all exam topics and domains. The platform includes topic-based practice, mock exams, missed-question review, bookmarked questions, and readiness tracking — no account required.

Is Software Development and Design one of the harder 200-901 topics?

Difficulty is subjective, but Software Development and Design is a high-priority exam concept tested in multiple ways — direct recall, scenario analysis, and command-output interpretation. Consistent practice is the best way to build confidence.

Ready to practice?

Launch a full Software Development and Design practice session with instant scoring and detailed explanations.

Start Software Development and Design Practice →

Topic Info

Topic

Software Development and Design

Exam

200-901

Questions available

20+