Skip to content
Open
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added .github/.keep
Empty file.
38 changes: 38 additions & 0 deletions .github/workflows/classroom.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Autograding Tests
'on':
- push
- repository_dispatch
permissions:
checks: write
actions: read
contents: read
jobs:
run-autograding-tests:
runs-on: ubuntu-latest
if: github.actor != 'github-classroom[bot]'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Quiz 1
id: quiz-1
uses: classroom-resources/autograding-io-grader@v1
with:
test-name: Quiz 1
setup-command: ''
command: Which of the following best describes software engineering?
input: |-
a) The study of hardware components
b) The process of designing, developing, and maintaining software
c) The analysis of networking protocols
d) The management of data storage systems
expected-output: b) The process of designing, developing, and maintaining
software
comparison-method: exact
timeout: 10
max-score: 10
- name: Autograding Reporter
uses: classroom-resources/autograding-grading-reporter@v1
env:
QUIZ-1_RESULTS: "${{steps.quiz-1.outputs.result}}"
with:
runners: quiz-1
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
[![Open in Visual Studio Code](https://classroom.github.com/assets/open-in-vscode-2e0aaae1b6195c2367325f4f02e2d04e9abb55f0b24a779b69b11b9e10269abc.svg)](https://classroom.github.com/online_ide?assignment_repo_id=18406097&assignment_repo_type=AssignmentRepo)
# SE_Day1
Software Engineering Day1 Assignment

#Part 1: Introduction to Software Engineering

Explain what software engineering is and discuss its importance in the technology industry.

Software Engineering is the application of engineering principles to the design, development, testing, deployment, and maintenance of software systems. It focuses on creating efficient, scalable, and reliable software solutions while considering user needs, performance, and security.
Importance of Software Engineering in the Technology Industry

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

software engineering is a branch of computer science used for developing, testing and maintaining software.
reliability- it ensures software performs as expected without bias especially for critical applications like healthcare ,finance.
efficiency - it helps to optimize developer workflow while maintaining high quality standards.
scalability and flexibility - it ensures that the system can handle an increased load without affecting performance.
security - implement protection practice like authentication, authorization and encryption to secure users information. Identify and describe at least three key milestones in the evolution of software engineering.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

correct...

1. Ensures High-Quality Software
Software engineering follows structured development methodologies to ensure that software is robust, secure, and error-free.
2. Enhances Efficiency and Productivity
Engineers use automation tools, frameworks, and programming best practices to speed up software development.
3. Reduces Development Costs
A structured software engineering process prevents waste of time and resources by reducing errors and unnecessary work.
4. Improves Security and Data Protection
Software engineers implement encryption, authentication, and secure coding to protect systems from cyber threats.

Identify and describe at least three key milestones in the evolution of software engineering.

Expand Down