4th Assignment - Fundamentals in Computer Programming
4th Assignment - Fundamentals in Computer Programming
xxxx xxxx
Assessment type Duration/Length of Weighting of Assessment
Assessment Type
Report and
Coursework
Software
Submission 100%
Learner declaration
Marks Awarded
First assessor
IV marks
Agreed grade
1|Page
ICBT HND
FEEDBACK FORM
INTERNATIONAL COLLEGE OF BUSINESS & TECHNOLOGY
Module : SEC4204
Student :
Assessor : Mr. Deshan Bulathsinghala
Assignment : FCP
Marks Awarded:
2|Page
ICBT HND
This assignment is worth 100% of the overall assessment for this module.
Scenario
Okmed Pharmacy: Their main business is retail pharmacy and import of professional and
home care medical equipment. Currently they cater to over 5000 prescription a day from their
main outlet which is located in Colombo - Hanwella Low Level Rd, Kaduwela, Sri Lanka and
supply the major government and private hospitals located around Colombo , Kaduwela and
Gampaha.
As they have diversified their business into professional and home care medical equipment, the
company is importing some of the equipment from Europe, South Asia, and East Asia and
Middle Eastern countries to be more competitive in the local market.
They maintain 10-15% annual growth on the imports and they are seeking to expand this
division by introducing more product lines on medical consumables, disposables and
equipment.
Furthermore the company management planned to implement an application in order to
automate their billing process.
Imagine that you are a software developer in this project and design and develop a system for
Okmed Pharmacy.
The program should do the following:
• View Items.
• Calculate and print the bill.
• Manage Sales Details.
3|Page
ICBT HND
Please note that Pharmaceuticals and Sterile Medical devices will not be accepted as return or
exchange.
Hygienic and Sterility Conditions Cannot be guaranteed once healthcare products sold to the
customer.
__________ ___________________________
__________ ___________________________
4|Page
ICBT HND
TASKS
5|Page
ICBT HND
Content
TASK 01
1.3.1.1 If Statement
1.4 Modularization
Task 02
Task 03
C++ Program
Task 04
7|Page
ICBT HND
Task 01
1.1 Introduction to programming
Computer programming is a way to give instructions to machines on what to do next.
Such instructions are known as code, and to solve problems or execute a function, computer
programmers write code.
The ultimate goal is to create something: from a web page, a piece of software, or
even just a pretty picture, that could mean something. This is why computer programming is
often characterized as a combination of art and science; it is both technological and
analytical, but at the same time artistic.
8|Page
ICBT HND
1.3.1.1 If Statement
Example :
9|Page
ICBT HND
Example :
10 | P a g e
ICBT HND
Example :
11 | P a g e
ICBT HND
Example :
12 | P a g e
ICBT HND
Example :
13 | P a g e
ICBT HND
The assertion of initialization will only be performed once. The expression of the
experiment is then evaluated. If the meaning of the experiment is determined to be incorrect,
the loop stops. If the test expression is checked to true, however, statements are executed
within the for loop body and the update expression is modified. The meaning of the
experiment is checked again. The process continues until the term of the experiment is
wrong. The loop finishes when the check expression is incorrect.
14 | P a g e
ICBT HND
Example :
The while loop evaluates the test expression inside the parenthesis. If the test
expression is true, statements inside the body of while loop are executed. Then, the test
expression is evalua0o99999o9o9o9o9999oted again. The process goes on until the test
expression is evaluated to false. If the test expression is false, the loop terminates (ends).
15 | P a g e
ICBT HND
Example :
The body of do...while loop is executed once. Only then, the test expression is evaluated. If
the test expression is true, the body of the loop is executed again and the test expression is
evaluated. This process goes on until the test expression becomes false. If the test expression
is false, the loop ends.
16 | P a g e
ICBT HND
Example :
1.4 Modularization
Modularization is important because it makes it possible to reuse code. That's real.
You can easily replace parts of it by modularizing code. That's not the end of it, though. The
most important advantage of modularization is that it is easy to understand the modularized
code. A developer must build the software in his / her mind before he / she can bang out
code. And this code must be in the minute detail provided by the language of programming.
Some defects in this code can result in bugs.
There are, therefore, two techniques developed by programmers: abstraction and
modularization. This is described by most people as splitting a problem into parts. What you
are doing is picking up a big problem and breaking it into bits. You then take one of the
pieces and split it into additional parts. You continue to do this until a portion is small enough
to fit the solution in your head easily. So, for the small part in your head, you start banging
out the script. You have all those pieces that you don't worry about too much during this
process. You move to the next and repeat the process once you're done with one part. Finally,
you've designed all the parts, put them together, and you've got a whole system.
Imagine you want to display output to the screen, but you need to rewrite 1500 lines
of special code each time you want to display output to make it happen. It is rather expensive
and inefficient. Within their respective header files, the model and code descriptions of these
functions are available. We need to include the header file within our system to use these
features.
17 | P a g e
ICBT HND
18 | P a g e
ICBT HND
Task 02
2.1 Requirement Gathering Technique
Before, I make the c++ program, I have to collect the information. After according to
that fact, I can build up the program. So now, I am going to ask a questionnaire from two
main sides at the pharmacy. They are customers and formal workers. According to that
mainly, I am going to use two hypotheses.
Questionnaires
OKMED Pharmacy
5. Do you think lack of proper documentation / invoice can lead to many problems?
19 | P a g e
ICBT HND
Lack of responsibility.
20 | P a g e
ICBT HND
Okmed Pharmacy: Their main business is retail pharmacy and import of skilled and
residential care medical instrumentality. presently they cater to over 5000 prescriptions each
day from their main outlet that is found in Colombo - Hanwella Low Level Rd, Kaduwela,
Ceylon and provide the most important government and personal hospitals placed around
Colombo, Kaduwela and Gampaha.
As they need varied their business into skilled and residential care medical instrumentality,
the corporate is commerce a number of the instrumentality from Europe, South Asia, and East
Asia and geographic area countries to be additional competitive within the native market.
They maintain 10-15% annual growth on the imports and that they are seeking to expand this
division by introducing additional product lines on medical consumables, disposables and
instrumentality.
Furthermore, the corporate management planned to implement associate application so as to
modify their asking method.
So I am going to create a windows console application in C++ computer language.
There are many purpose in using billing application
21 | P a g e
ICBT HND
Login
Flow chart :
Pseudocode :
Begin
Declare variable integer TryAgain = 0; string username,password;
Insert username &password;
If username = adminokmed && password = okmed@123;
True mainmenu();
Else, While again < 2;
Display Your Username or Password is Invalid!!!... Try Again... ;
Insert username &password;
If username = adminokmed && password=okmed@123;
True mainmenu();
Again++;
If again=2;
Display Sorry!!! System Couldn't Find You. Try Again Later...;
End
22 | P a g e
ICBT HND
Main manu
Flow chart :
Pseudocode :
Begin
Declare variable string Mainmanu_Option; bool Option = true;
Display product = 1;
Display invoice = 2;
Display help = 3;
Insert Mainmanu_Option;
While Option;
If select = 1;
Selected = true; go Product();
If select = 2;
Selected = true; go Invoice1();
If select = 3;
Selected = true; go Help();
If select = L or select = l;
Selected = true; go LogIn();
Else selected = false;
Display Invalid Option!!! Try Again...;
Insert Mainmanu_Option ;
END
23 | P a g e
ICBT HND
Search Products
Flow chart :
Pseudocode :
BEGIN
Declare variable string SearchProduct_Option;
bool Option = true;
Insert SearchProduct_Option;
While option ;
If SearchProduct_Option = 1;
Selected = true; go SearchProduct_Medicine_Id();
If SearchProduct_Option = 2;
Selected = true; go SearchProduct_Medicine_Code();
If SearchProduct_Option = 3;
Selected = true; go SearchProduct_Medicine_Name();
If select = B or select = b;
Selected = true; go Product();
If select = M or select = m;
Selected = true; go Main_Manu();
If select = L or select = l;
Selected = true; go LogIn();
Else selected = false;
Display Invalid Option!!! Try Again...;
Insert Mainmanu_Option ;
END
24 | P a g e
ICBT HND
Invoice
Flow chart :
25 | P a g e
ICBT HND
Task 04
• Integration Tests
• Functional Tests
• Smoke Tests
• Regression Tests
• Acceptance Tests
This is the developer level's most important evaluation method. It encompasses range
that is very wide and well established. We isolate the code from any external interaction or
module dependence. Unit testing focuses on a very small functionality unit. They only cover
the code's memory interaction and do not cover any network, database or file system
interaction. While development, these dependencies are hard coded in the code. We provide
an easy way to examine the smallest units of code and show that units can work in isolation
perfectly. However, we need to further check that they work in a cohesive manner when these
units are combined, which leads us to further test types.
26 | P a g e
ICBT HND
Integration Test is the next class for developer-level checking. They provide a
framework to test smaller units for interoperation. Integration test involves testing the
network access devices, servers, and file systems. They reveal the problems with network
modules or databases and, more importantly, the connections between small code units.
There are often problems when the units are wired together. Unit A may not adequately
supply Unit B with data and these issues arise in the integration tests.
Upon completion of integration tests, higher-level tests are used. Functional tests
check that the output is correct in relation to the input defined in the specification. There is
not much emphasis on the intermediate values, but there is more focus on the final output.
Smoke Tests analogy comes from the electronics where a mistake means the circuit
board giving out smoke. Typically after a fresh installation and newer input values, a basic
test is done after functional testing is done from the beginning. Fortunately, in the software
industry there is no smoke, but there are crashes to indicate trouble.
Once complicated bugs in a system are patched, usually impacting the system's core
areas, regression tests are used to re-test all system components.
These form the final level of the test plan. Each feature is checked from the user's
point of view by the testing team and is marked as accepted or rejected. These tests test the
application from the point of view of the end user, such as the detection of crashes after a
certain flow. The results of these tests are very subjective in nature and it takes a while to find
out the exact issue in the code.
27 | P a g e
ICBT HND
28 | P a g e
ICBT HND
Test Case ID 02
Checking the Username & Password when we enter a wrong data 3
Test Objective
times
Test Data Username :- adminokme
Password :- okmed@123
Expected Result First & second wrong times, the system give you a chance to enter
correct password. But third time, the system remove you.
Display : Sorry!!! System Couldn’t Find You. Try Again Later.
Actual Result Same
Screenshot
29 | P a g e
ICBT HND
Test Case ID 03
Test Objective Checking the correctness of search option (Medicine Name)
Test Data` Search Product Name = “sitagliptin Tablet 100 mg”
Screenshot
30 | P a g e
ICBT HND
Test Case ID 04
Checking the correctness of search option (Search ID) when we enter a
Test Objective
wrong data.
Test Data Search Medicine Id = “24”
Screenshot
Conclusion
Work as exception
31 | P a g e
ICBT HND
Test Case ID 05
Test Objective Checking the Invoice - add more items to the same bill
Product ID : 1 Product ID :16
Quantity :3 Quantity :5
Test Data
Product ID : 7 Product ID : 12
Quantity : 20 Quantity :4
Expected Result Display : Do You Want Select Another Item ?
Actual Result Same
Screenshot
32 | P a g e
ICBT HND
33 | P a g e
ICBT HND
Test Case ID 06
Test Objective Checking the calculations
Test Data Cash Amount(RS.) = 5000
Display :
Sub Total(RS.) = 1547
Expected Result
Cash Amount(RS.) = 5000
Service Balance(RS.) = 3453
Actual Result Same
Screenshot
34 | P a g e
ICBT HND
Test Case ID 07
Test Objective Checking the Help option
Display Help window with About the System, Tips, About the Color
Expected Result
Codes, Developer’s Contact detail & Powered Company Name.
Actual Result Same
Screenshot
35 | P a g e
ICBT HND
36 | P a g e
ICBT HND
Test Case ID 08
Test Objective Checking the print bill.
Test Data -
Expected Result When you enter calculate all details, then the bill is automatically print.
Actual Result Same
Screenshot
37 | P a g e
ICBT HND
REFERENCE
Codecademy News. (2019). What is Computer Programming?. [online] Available at:
https://news.codecademy.com/what-is-computer-programming/ [Accessed 10 Oct. 2019].
Click Labs. (2019). 6 Different Types of Software Testing Methodologies | Click Labs.
[online] Available at: https://click-labs.com/6-different-types-software-testing-
methodologies/ [Accessed 25 Oct. 2019].
38 | P a g e
ICBT HND
THE END
39 | P a g e