This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A software requirements specification (SRS) is a document that describes what the software will do and how it will be expected to perform. It also describes the functionality the product needs to fulfill all stakeholders (business, users) needs. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A NO-CODE assignment from LSIB. Module 1 (part of LV4 Diploma in IT) | |
This video presents the application of Information technology. | |
Topics: | |
- Software | |
- Hardware | |
- Storage techniques | |
- Application of AI |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
var str = "Hello, playground" | |
import XCTest | |
/* Return the middle | |
Write a function that returns the middle element of an array. When array size is even, return the first of the two middle elements. | |
*/ | |
func middle(_ array: [Int]) -> Int? { |