It all depends back on who youre present it t
younger ages (Primary-Middle),
Its Ok to use plenty of special effects, but dont ovedue your DTP with effects, so that they still can get the point.
Older ages (High & above)
Older people usually more serious than older ages to pursue their careers, so less effect, more points
Explanation:
USE SOCRACTIC IT WOULD REALLY HELP
Answer:
1 - if all three are the same person then possibility of verifying the software or its scope for the general public will remain unknown
2 - it will not return any profit when all are the same person thus it will remain in one isolated environment
3 - it cannot be used by the masses if all three people are the same person
Explanation:
while building any software system it needs three sets of people who are an important part of this development chain. They are the client, developer, and user. if suppose all three are the same person while developing any software then some problems are occurring and that are mentioned below
1 - if all three are the same person then possibility of verifying the software or its scope for the general public will remain unknown
2 - it will not return any profit when all are the same person thus it will remain in one isolated environment
3 - it cannot be used by the masses if all three people are the same person
the one thing that needs to be done for removing all these problems is to assigned different people for different phases. so that the developer can validate the scope of software in the market.
Answer:
here is the answer
Explanation:
1) accurate
2) fast
3) can accomplish tasks more effencily
Answer:
a) "Quit"
c) "Q only
Explanation:
Given
<em>String s = "Go"; </em>
<em>while ((!s.equals("q"))&& (!s.equals(""))) {</em>
<em>System.out.println("In loop"); </em>
<em>s = scnr.next();</em>
<em>}</em>
<em />
Required
What input causes another execution
Analyzing the while condition
<em>while ((!s.equals("q"))&& (!s.equals(""))) </em>
<em />
This can be split into:
<em>!s.equals("q")) && (!s.equals(""))</em>
<em />
Meaning
When s is not equal to "q" and when s is not an empty string
<em />
In other words,
the loop will be executed when user input is not "q" and user input is not empty.
So, from the list of given options: The loop both will be executed when:
a) Input is "Quit"
c) Input is Q only
<em>Input of q will terminate the loop, hence b and d are incorrect</em>
<em />