Answer:
The recommendations for Jesse about creating an SCR help desk are, the user interface, sending of data request to servers, sending data files back to the server, receiving data files from the server, running an application programs locally to process data.
File server handles several jobs which includes, sending data files to client, storing of data files, and generating traffic on the internet.
The client/server tiers allows user interface on the client and data can be stored on the server. it's elements includes the following: output, input, processes, performance, control and security
Explanation:
Given that:
(1)The recommendations is stated as follows:
A file sharing architecture is recommended where the clients can handle the following:
- Sends data request to servers
- Sends data files back to the server
- Receives data files from the server
- Runs application programs locally to process data
The file server handles the following tasks or jobs which is stated below:
- Receives data request from clients
- Sends data files to client
The Client design:
The disadvantage of this, is that it is more difficult to design
Note: Kindly find an attached copy of part of the solution to this given question below
Answer:
See explaination
Explanation:
import java.util.Scanner;
public class Word
{
public static void main(String args[])
{
Scanner read=new Scanner(System.in);
char repeat='Y';
String phrase=null;
int index=0;
while(repeat=='Y')
{
System.out.println("enter a phrase :");
phrase=read.nextLine();
while(index<=0)
{
System.out.println("enter an index greater than 0");
index=Integer.parseInt(read.nextLine());
}
String s;
int spaces = phrase == null ? 0 : phrase.length() - phrase.replace(" ", "").length();
int numofwords=spaces+1;
if(index>numofwords)
{
index=numofwords;
}
System.out.println("word is: "+ getWord(phrase,index));
System.out.println("do you want to repeat (Y/N)");
repeat=read.nextLine().charAt(0);
index=0;
}
read.close();
}
private static String getWord(String phrase, int index) {
// TODO Auto-generated method stub
Scanner in =new Scanner(phrase);
String word=null;
int wordindex=0;
while(wordindex!=index)
{
word=in.next();
wordindex++;
}
in.close();
return word;
}
}
Check attachment screenshot
True
<span>Colons are used to introduce an item or a list
of two or more items. One key thing to remember is that you should always use
colons in statements that are complete and never in sentence fragments. In most
English style guides that address this matter, only one space is recommended
after a colon and no space should be placed before.</span>
Answer:
Good start
Explanation:
I'm not <em>super</em> knowledgeable about computer hardware but the 16gb of ram seems like a good decision but the biggest thing I reccomend is allocating more money towards storage. Even just getting a normal HDD for your games might be a good idea because the newest CoD game is 84gb so you will fill that SSD up quicky.