Answer:
import java.util.Scanner;
public class LargestSmallest {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.print("Enter 10 integers: ");
int num = in.nextInt();
int i = 1;
int min = num, max = num;
while (i < 10) {
num = in.nextInt();
if (num > max) max = num;
if (num < min) min = num;
i++;
}
System.out.println("Largest number: " + max);
System.out.println("Smallest number: " + min);
}
}
Explanation:
A Java application that inputs a series of 10 integers and determines and prints the largest and smallest integer is written above.
Answer:
See explaination for program code
Explanation:
code below
using System;
using System.IO;
namespace ReadAndDisplayFileCOnsole
{
class Program
{
static void Main(string[] args)
{
using (StreamReader reader = new StreamReader("D:\\datafile.txt"))
{
while (true)
{
string line = reader.ReadLine();
if (line == null)
{
break;
}
Console.WriteLine(line);
}
reader.Close();
Console.Read();
}
}
}
}
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.
Hard disk Drive, random access memory, USB flash memory
Answer:
The period from 1959-1965 was the second generation. Transistors that are cheaper, consumed less power, were used in this generation, were more compact, were more reliable, and were faster than first-generation vacuum tubing machines.
Explanation:
The primary memories and the magnet tapes and magnetic discs were used as secondary storage equipment in this generation.
The montage language and high programming languages such as FORTRAN, COBOL, have been used in this generation. The computers used batch processing and operating system multi-programming.
A memory is like the brain of human beings. It is used for storing information and instructions. Computer memory is the storage space on the computer that processes data and saves instructions for processing.
The memory is split into many small parts known as cells. There is a unique address for each location or cell, which varies from 0 to memory minus one.
There are three basic types of memory:
Memory Cache
Main Memory/Primary Memory
The Memory of a Second Kind