Answer:
Design patterns help you write code faster by providing a clear idea of how to implement the design
Explanation:
Design patterns help you write code faster by providing a clear idea of how to implement the design. These are basically patterns that have already be implemented by millions of dev teams all over the world and have been tested as efficient solutions to problems that tend to appear often. Using these allows you to simply focus on writing the code instead of having to spend time thinking about the problem and develop a solution. Instead, you simply follow the already developed design pattern and write the code to solve that problem that the design solves.
Answer:
import csv
fileIn = open("data/bags.txt","r")
countPurse = 0
textFile= csv.reader(fileIn)
for bag in textFile:
if bag[
1
] == 'purse':
countPurse = countPurse + int(bag[6])
fileIn.close()
print("Number of purses:",countPurse)
Explanation:
I hope this helps!
<u>Windowing</u> is the detection of events that fall inside a specified set of parameters, such as within or outside of a specified time frame.
<h3>What is windowing?</h3>
Windowing is the process of processing and analysing a small subset of a bigger dataset. The rectangular window is a crude method that merely truncates the dataset before and after the window without altering the contents of the window in any way.
A windowing system allows many apps to simultaneously share a computer's graphical display presentation resources. You might want to utilise several programmes simultaneously on a computer with a graphical user interface (GUI) (this is called task).
Therefore, windowing is detection of events within a given set of parameters, such as within a given time period or outside a given time period.
To know more about Graphucal user interface, visit: brainly.com/question/14758410
#SPJ4
I believe the answer you are looking for is C. :)
An EXE file is an executable that may have an MSI file as one its help; An executable or EXE file can "wrap" an MSI file, which is used by the Windows Installer to guide the building process of an application.
MSI files are utilized by the Windows Installer to control how your application is installed.
<h3>What is the difference between an EXE file and MSI file?</h3>
The main difference between the two attachments is their purpose. EXE is used mainly to indicate that the file is an executable one.
In comparison, MSI indicates that the file is a Windows installer. While an MSI is operated only with installers, this is not the case with EXE.
To learn more about EXE file, refer
brainly.com/question/28146265
#SPJ4