Marking Schedule Assessment 1: Assessment 1-30% of The Total Marks
Marking Schedule Assessment 1: Assessment 1-30% of The Total Marks
Course Name
Credits
Software Development
1
15
Code
SD501
Level
Assessment 1-
Teaching Hours
(per week)
Self study
6
7
13
Total weeks
14
Tasks 1: Software development Answer Six of the following seven questions (40 % of
the Assessment marks)
Q no
1
Evidence
Marks
5
3+2
5
What are the phases of system development life cycle?
Planning
Analysis
Design
Implementation
Support
5
What is feasibility? Write any two feasibility test.
Measure how suitable system development will be to the company
Four tests:
1
Operational
Schedule
Technical
Economic
Waterfall model
(Student should mention some points like)
Needless to mention, it is a linear model and of course, linear models are
the most simple to be implemented.
The amount of resources required to implement this model is minimal.
One great advantage of the waterfall model is that documentation is
produced at every stage of the waterfall model development. This makes
the understanding of the product designing procedure simpler.
After every major stage of software coding, testing is done to check the
correct running of the code.
5
Evidence
Marks
2
marks
each
questio
n
C) boolean
D) double
2.7) Which of the following are relational operators in Java?
A) <, >, <=, >=, ==
B) &&, ||, !!
C) +, -, *, /, %
D) None of the above
2.8) What will be the result of the expression
2+3*2-2+4/3
A) 7
B) 11
C) -7
D) None of the above
2.9) What will be the result of the expression
a%b
when a and b are of type int and their values are a = 10 and b = 6?
A)4
B) 1.66
C) 1
D) None of above
2.10) What is the output of following code
Evidence
Marks
3.1
op1
true
op2
true
op1&&op2
true
!(op1||op2)
false
12
marks
false
true
false
false
1 mark
each
true
false
false
false
false
false
false
true
3.2
a
Output
1000
Laptop_price
1100
Laptop_price is 0
500
200
70
250
14
marks
7
marks
each
System.out.println(con);
3.3
14
marks
Java code
a
public class Test {
public static void main(String[] args)
{
doubleVariable x=10.2;
System.out.println(x);
}}
}
There are two bugs in code double variable
is not data type
And there is one extra }
public class {
public static void main(String[] args)
{
int x= 10;
int y;
if(y > x){
System.out.println(x);
else
System.out.println(y);
}
7
7
marks
each
}
}
.