a) documentation
b) flowchart
c) program specification
d) design
Answer: c
Explanation: Program specification is the definition of what a computer program is expected to do.
Related Posts
What will be the output of the following Java program?
class string_demo
{
public static void main(String args[])
{
String obj = “I” + “like” + “Java”;
System.out.println(obj);
}
}Which of the following statements are incorrect?
Which of these method of String class can be used to test to strings for equality?
Which of these keywords is used to refer to member of base class from a subclass?
Which of these method of String class is used to obtain character at specified index?
String in Java is a?
What will be the output of the following Java program?
class area
{
int width;
int length;
int height;
area()
{
width = 5;
length = 6;
height = 1;
}
void volume()
{
volume = width * height * length;
}
}
class cons_method
{
public static void main(String args[])
{
area obj = new area();
obj.volume();
System.out.println(obj.volume);
}
}
Join The Discussion