Answer:
In IT sector IT manager decides to have a JDA(joint Application Development) session first he has to keep the leader for it, The leader must be well educated and highly professional based experienced regarding the sector that he is dealing with it. JAD team will participate in discussions and plan to develop the criteria etc., There must be minimum of 3 to 4 members are needed for the discussion and provide support. The main agendas of the JAD session are
Agenda and different stages:
First they introduce the JAD members and see the requirements. They discuss the reason for the project and management. After that they provide clear view on the project and overview and discuss up to the clarification. Review the project and divide team members in to 2 to 3 members and allocate for the particular work. Discuss and develop all requirements and provide prototypes and all. finally report and prepare documentation and send it to the JAD team.
The main roles of the JAD team are: Managers who are provided for this team must research and provide the information on the particular project. Users who provide d information must see the line and developing level. The system analysis and object it managers look after issues, backups etc.,
Explanation:
See attached picture.
Answer:
Software development life cycle is about building a software (“only”) in a phased approach systematically.
System development life cycle is about implementing hardware and software in a phased manner systematically.
Explanation:
Here both the hardware and the software is considered as a system.
Hope this helps!
Answer:
C) Es un conjunto de elementos y procesos que interactúan entre sí, para lograr la fabricación de un producto o servicios y que a su vez satisface necesidades sociales.
Explanation:
Un sistema tecnológico se define como un conjunto de elementos y procesos que interactúan entre sí, para lograr la fabricación de un producto o servicio y que a su vez satisface necesidades sociales.
Por lo tanto, todos los dispositivos y máquinas que utilizamos para lograr varios fines pueden clasificarse como dispositivos tecnológicos.
Por ejemplo, un teléfono inteligente es un ejemplo típico de un sistema tecnológico.
Answer:
// program in java.
// package
import java.util.*;
// class definition
class Main
{
// main method of the class
public static void main (String[] args) throws java.lang.Exception
{
try{
// scanner object to read input
Scanner scr=new Scanner(System.in);
// string array
String name[] = new String[3];
// price array
double price[] = new double[3];
// variable
double sum = 0,avg;
boolean flag = false;
// read three name and their price
for(int i=0;i<3;i++)
{
System.out.print("Enter item "+(i+1)+" name:");
name[i]=scr.next();
System.out.print("Enter item "+(i+1)+" price:");
price[i]=scr.nextDouble();
sum=sum+price[i];
// if any name is "peas"
if(name[i].equalsIgnoreCase("peas"))
flag = true;
}
System.out.println("Name and their price:");
for(int i=0;i<3;i++)
{
System.out.println(name[i]+":"+price[i]);
}
// if flag is true
if(flag)
{
// calculate average
avg=sum/3;
// print average
System.out.println("Average price is:"+avg);
}
else
System.out.println("no average output");
}catch(Exception ex){
return;}
}
}
Explanation:
Read three name and their price from user.If any name is equal to "peas" without case sensitive then find the average of three price and print the average.If their is no name equal to "peas" then print "no average output".
Output:
Enter item 1 name:apple
Enter item 1 price:20
Enter item 2 name:kiwi
Enter item 2 price:15
Enter item 3 name:banana
Enter item 3 price:20
Name and their price:
apple:20
kiwi:15
banana:20
no average output
Answer:
self esteem is confidence in one's own worth or abilities; self-respect. The more self esteem you have the more you do thing you like and the more comfortable you are in your own skin.
Explanation:
Hope it helps