In Java write a method called wordCount that accepts a String as its parameter and returns the number of words in the String. A word is a sequence of one or more nonspace characters (any character other than ' '). For example, the call wordCount("hello") should return 1, the call wordCount("how are you?") should return 3, the call wordCount(" this string has wide spaces ") should return 5, and the call wordCount(" ") should return 0.

Answers

Answer 1

Answer:

// here is code in java.

import java.util.*;

// class definition

class Main

{

   // method that return the number of words in the string

   public static int wordCount(String st)

   {

       /* split the string by space " " delimiter

       and save them into  string array*/

       String[] no_words=st.split(" ");

       // find the length of array

       int len= no_words.length;

       //return the length

       return len;

   }

   // driver function

public static void main (String[] args) throws java.lang.Exception

{

   try{

    // scanner object to read input string

       Scanner s=new Scanner(System.in);

        // string variable

       String str;

       //ask user to enter string

       System.out.print("please enter the string: ");

       // read the string from user

       str=s.nextLine();

       // call the function with string parameter

      int tot_words= wordCount(str);

      // print the number of word in string

      System.out.println("total words in the string is : "+tot_words);

   }catch(Exception ex){

       return;}

}

}

Explanation:

Read a string from user with the help of scanner class object.Call the function

wordCount() with string parameter.Here split the string by space " " delimiter.

Save the words into a string array.Find the length of the array and return it.

Then in the main print the number of words in the input string.

Output:

please enter the string: this string has wide spaces

total words in the string is : 5


Related Questions

You’re writing a script that will be called by other scripts. You want to signal abnormal termination of your script by passing a value of 8 to the external script under some circumstances. What command can you use in your own script to do this?

Answers

Final answer:

Use the exit command with the value 8 to signal abnormal termination in a script. The exit status can be used by the calling script to determine further action.

Explanation:

When writing a script in many programming environments, particularly in Unix-based systems like Linux or in languages like Bash, you can use the exit command to terminate a script and return a value to the calling script. To signal an abnormal termination and return a value of 8, you would include the line exit 8 at the appropriate place in your script. This exit status can then be checked by the calling script to determine how to proceed. Exit statuses are a conventional way to communicate the outcome of a script where typically a zero value indicates success and any non-zero value indicates an error or abnormal termination.

How many output values are indicated in the following requirement?

REQUIREMENT: Write a program that asks the user for the current temperature and wind speed. The program must calculate the wind chill temperature, and display a chart showing the temperature, wind speed, and wind chill.

a) 0
b) 1
c) 2
d) 3

Answers

Answer:

Hi!

The correct answer is d) 3.

Explanation:

The program asks for input:

current temperature.wind speed.

With these values, the program will do some computations to calculate the wind chill temperature and show a chart with:

temperature.wind speed.wind chill.

Assume that the population of Mexico is 114 million and that the population increases 1.01 percent annually. Assume that the population of the United States is 312 million and that the population is reduced 0.15 percent annually. Write an application that displays the populations for the two countries every year until the population of Mexico excceds that of the United States, and display the number of years it took. Save file as Population.java.***NOTE**** This is my first class of java the program that I have to write has to be of what we have learned in the last 6 chapters it cannot have stuff that is way more advanced than the first 6 chapters.

Answers

Answer:

#include <bits/stdc++.h>

using namespace std;

// main function

int main()

{

// variables

   double mexico = 114;

   double usa = 312;

   double mexicoRate = .0101;

   double usaRate = .0015;

// calculate population after every year until mexico population exceed the usa populationn

   while (usa>mexico)

   {

// print the population

       cout<<"Mexico's population ::"<<mexico<<" million."<<endl;

       cout<<"USA's population ::"<<usa<<" million."<<endl;

// update the population

       mexico+=mexico*mexicoRate;

       usa-=usa*usaRate;

   }

return 0;

}

Explanation:

Declare and initialize mexico and usa with their initial population.Also declare and initial their increase and decrease rate.Find the population of both the  country each year until mexico population exceeds the usa population.

Output:

Mexico's population ::114 million.                                                                                          

USA's population ::312 million.                                                                                            

Mexico's population ::115.151 million.                                                                                      

USA's population ::311.532 million.

.

.

.

Mexico's population ::270.546million.                                                                                      

USA's population ::274.213 million.                                                                                        

Mexico's population ::273.278million.                                                                                      

USA's population ::273.802 million.

Final answer:

A Java program will simulate the annual population changes of Mexico and the United States and output the populations each year until Mexico's population exceeds that of the United States. The provided code includes a growth rate calculation and displays results annually in a loop.

Explanation:

To predict when the population of Mexico will exceed that of the United States, we will create a simple Java application that calculates the populations annually based on the given growth rates. The population of Mexico starts at 114 million with an annual increase rate of 1.01%, whereas the United States starts with a population of 312 million and experiences an annual decrease of 0.15%. Using a loop, we can simulate each year's population change until Mexico's population exceeds the United States' population. The code will display the population of each country per year alongside the number of years it took for the population of Mexico to surpass that of the United States.

Here's a basic outline of the Java code:

public class Population {
   public static void main(String[] args) {
       double populationMexico = 114e6;
       double populationUSA = 312e6;
       int years = 0;
       while (populationMexico <= populationUSA) {
           // Calculate the new populations
           populationMexico *= 1.0101;
           populationUSA *= 0.9985;
           years++;
           // Output the current year's populations
           System.out.println("Year " + years + ":");
           System.out.println("Mexico: " + (int)populationMexico + " people");
           System.out.println("USA: " + (int)populationUSA + " people");
       }
       System.out.println("It took " + years + " years for the population of Mexico to exceed that of the United States.");
   }
}

This program is within the scope of the first six chapters of most introductory programming textbooks, as it uses basic Java syntax, arithmetic operations, loops, and conditional statements.

Your boss bought a new printer with a USB 3.0 port, and it came with a USB 3.0 cable. Your boss asks you: Will the printer work when I connect the printer’s USB cable into a USB 2.0 port on my computer?

Answers

Answer:

Yes, is should work

Explanation:

USB is widely adopted and supports both forward and backward compatibility. The USB 3.0 printer should work with the USB 2.0 computer. However, having a connection like this, the printer will only be able to work at the speeds of the computer’s USB 2.0. By default, USB is built to allow transfer speeds improvement with upgrades from previous generations while still maintaining compatibility between devices that are supported by them.

Answer:

Yes, but at the USB 2.0 speed.

Explanation:

What is the function of the kernel of an operating system? It is an application that allows the initial configuration of a Cisco device. It provides a user interface that allows users to request a specific task. The kernel provisions hardware resources to meet software requirements. The kernel links the hardware drivers with the underlying electronics of a computer. Navigation Bar

Answers

Final answer:

The kernel of an operating system manages resources and facilitates communication between hardware and software, provisioning hardware resources, and handling drivers for the underlying electronics.

Explanation:

The function of the kernel in an operating system is not to provide a user interface or to be an application for device configuration, but rather to serve as the core component of the operating system. Its primary role is to manage the system's resources and to facilitate communication between hardware and software. The kernel is responsible for provisioning hardware resources to meet software requirements by performing tasks such as memory management, process scheduling, and handling input/output operations.

In this context, the kernel acts as a bridge, making sure that various hardware components and the software applications that need to use them can work together efficiently. This includes managing hardware drivers which are the software components that know how to communicate with the underlying electronics of the computer. Moreover, many kernel operations require high levels of privilege on the system because they interact closely with the hardware.

What series of println statements would produce the following output? This is a test of your knowledge of "quotes" used in 'string literals.' You're bound to "get it right" if you read the section on ''quotes.''

Answers

Answer: Here we will show how to generate the answers based on java language. We will use System.out.println().

Explanation:

The System.out.println statement is used in java to print statements.

The following lines show how to generate those statements. The statements are enclosed within double quotes.

System.out.println("This is a test of your");

System.out.println("knowledge of \"quotes\" used");

System.out.println("in 'string literals.'");

System.out.println("You're bound to \"get it right\"");

System.out.println("if you read the section on");

System.out.print("''quotes.''");

Windows is displaying an error about incompatible hardware. You enter BIOS/UEFI setup to change the boot priority order so that you can boot from the Windows setup DVD to troubleshoot the system. However, when you get to the Boot screen, you find that the options to change the boot priority order are grayed out and not available. What is most likely the problem?

Answers

The system is not detecting the DVD that you’ve inserted so you cannot boot off the USB , or You flashed the ISO File incorrectly and had you’re boot settings are on Legacy and while flashing the ISO you chose UEFI

Final answer:

The options to change the boot priority order being grayed out in BIOS/UEFI are most likely due to a lack of permissions, often because the BIOS is password-protected, or due to Secure Boot being enabled, which needs to be disabled to change boot settings.

Explanation:

If you find that the options to change the boot priority order in the BIOS/UEFI setup are grayed out and not available, the most likely problem is that you don't have the necessary permissions to make these changes. This can often be due to BIOS settings being locked with a password. To resolve this, you'll need to enter the correct BIOS password. If the system was set up by someone else or is part of a school or organization, you may need to contact the administrator or IT department to obtain the password or have them change the boot order for you.

Another reason the options could be grayed out is due to a feature called Secure Boot being enabled, which can prevent any changes to the boot priorities to secure the system from unauthorized access. If this is the case, you would need to disable Secure Boot first, but keep in mind that you should be aware of the implications to system security before making such changes.

Select the correct answer.
Record keeping requirements for participation in The Child and Adult Care Food Program include:
A.
Menus
B.
Attendance records
C.
Meal counts and attendance records
D.
Menus and cost documentation
E.
Menus, meal counts, attendance and cost documentation

Answers

Answer:

E

Explanation:

The child and adult care food program should include all the information

regarding food menus with approximate cost, total meal counts, and attendance.

The correct record keeping requirements for The Child and Adult Care Food Program include menus, meal counts, attendance, and cost documentation. These are necessary for compliance, auditing, and reimbursement purposes.

The Child and Adult Care Food Program (CACFP) requires comprehensive record-keeping to ensure all aspects of meal service are documented and comply with regulations. This includes:

Menus: Daily menus must be recorded to show what meals are served.Meal counts: Accurate meal count records are necessary to demonstrate the number of meals served.Attendance: Attendance should be tracked to correlate with the meal counts.Cost documentation: Record of costs involved in providing meals, including food purchases and labor, is necessary for auditing and reimbursement purposes.

These records ensure accountability and proper reimbursement for meals served under the CACFP.

The correct answer for the record keeping requirements for participation in The Child and Adult Care Food Program is E. Menus, meal counts, attendance and cost documentation.

A user has been given Full Control permission to a shared folder. The user has been given Modify permission at the NTFS level to that folder and its contents. What is that user’s effective permissions to that folder when they access it through the shared folder from another computer?

Answers

Answer:

Full control

Explanation:

Full control permission enables users to access, compose, alter, and  remove documents and sub-folders.

Additionally, for all documents and  sub-directories, users can alter permissions settings.

Users are able to modify permissions and take file possession.

Which of the following are considered transactions in an information system?
1) money deposited in a bank account
2) student recording her answer to a question in an online test
3) customer adding an item to the online shopping cart

Select one:
a) 1 and 3 only
b) 1 only
c) All of them
d) None of them

Answers

Answer: (C) All of them.

Explanation:

 All the given options are example of the transaction in the information system.

As, the money deposited in the bank account is the process that take place computerized for transaction purpose. Now a days we can easily done transaction through wire transfer at anywhere and anytime by using the information system technology.  

Students can easily study online and also record their answers in the online test by using the information system technology.  

Customers can also doing shopping online by adding various products and items in the online shopping cart by using various e-commerce websites like amazon, flip-cart etc.  

At the beginning of Section 5.2, it is stated that multiprogramming and multiprocessing present the same problems, with respect to concurrency. This is true as far as it goes. However, cite two differences in terms of concurrency between multiprogramming and multiprocessing.

Answers

Answer:

By definition, multiprocessing refers to the processing of multiple processes at the same time by multiple CPUs.

By definition, multiprogramming keeps programs in main memory at the same time and execute them concurrently utilizing a single CPU doing a context switch.

The first difference is that multiprocessing uses multiple CPUs and multiprogramming to utilize context switch to do concurrency in one CPU. Another difference is that multiprocessing is more expensive but more efficient than multiprogramming due that it allows parallel processing.

Suppose Host A sends Host B a TCP segment encapsulated in an IP datagram. When Host B receives the datagram, how does the network layer in Host B know it should pass the segment (that is, the payload of the datagram) to TCP rather than to UDP or to something else?

Answers

Answer: Looking into IP header, for a specific field, that identifies TCP as the transport protocol to be used.

Explanation:

In the IP Header, there is a field (of 8 bits wide) , called Protocol in the IPv4 version, and Next header in IPv6, that contains a hexadecimal number that identifies the transport protocol to be used.

For instance, if the segment should be passed to TCP, the Protocol Field must be filled with  0x06 = 00000110.

Final answer:

Host B's network layer checks the Protocol field in the IP header to determine which transport layer protocol (TCP or UDP) should receive the datagram. For TCP, the Protocol field contains the number 6, guiding the network layer to forward the payload to TCP.

Explanation:

When Host B receives an IP datagram, the network layer identifies which transport layer protocol should receive the payload by examining the Protocol field in the IP header. This field, also known as the Next Header field in IPv6, contains a number that represents the transport layer protocol used for the segment or datagram. In the case of TCP, this number is 6. Conversely, if the payload were to be passed to UDP, the number would be 17. The network layer uses this number to correctly forward the payload to the designated protocol, ensuring that the TCP segment is passed to the TCP layer and not to UDP or any other protocol.

____ a program means writing down in a prescribed manner the instructions for using the program, the way in which the program performs its tasks, and other items that users, other developers, and management might require.

a) Indexing
b) Documenting
c) Texting
d) Labeling

Answers

the answer is d labeling

Final answer:

Documenting a program involves clearly detailing instructions, operation details, and interfaces like APIs for users and developers. It is crucial for problem-solving and communication in program development.

Explanation:

​​Documenting a program means writing down in a prescribed manner the instructions for using the program, the way in which the program performs its tasks, and other items that users, other developers, and management might require. It involves creating clear and precise documentation that includes all aspects of the program's operation, ensuring that anyone who needs to understand or work with the program has the necessary information at their disposal.

This process is integral to problem-solving within the development cycle, enabling effective communication between the code and its users or fellow developers. Writing high-quality documentation is akin to establishing a contract, often referred to in technical terms as an Application Program Interface (API), which dictates how other applications or users can interact with the program's services.

Proper documentation can include a variety of components such as a comprehensive instruction manual, clear definitions and markup in the code to facilitate syntax highlighting, and organizing a set of instructions with informative titles, introduction, body, and conclusion sections. This ensures that both the program and its interfaces (APIs) are usable and understandable by those who need to work with them.

Consider the following code snippet: String[] data = { "abc", "def", "ghi", "jkl" }; String [] data2; In Java 6 and later, which statement copies the data array to the data2 array?

Answers

Answer:

String[] data2 = Arrays.copyOf(data, 4); is the statement which copies the data array to the data2 array in java 6 .

Explanation:

The Arrays.copyOf() function copies the data from first array to another array in java .We pass the two argument in this function  first argument is the name of first array and second the length of first array .

Following are the program in java  

import java.util.Arrays; // import package  

public class Main

{

public static void main(String[] args) // main function

{

String[] data = { "abc", "def", "ghi", "jkl" }; // string declaration

// printing the array data1

 System.out.println("before copy new array:");

 for (int k = 0; k < data.length; k++)  

     {

 System.out.println(data[k]);

 }

String[] data2 = Arrays.copyOf(data, 4);

 // printing the array data2

     System.out.println("after copy new array:");

     for (int k = 0; k < data2.length; k++)  

     {

        System.out.println(data2[k]);

     }}}

Output:

before copy new array:

abc

def

ghi

jkl

after copy new array:

abc

def

ghi

jkl

The statement that copies the data array to the data2 array in Java 6 and later: data2 = Arrays.copyOf(data, data.length);

Arrays.copyOf(data, data.length): This method creates a new array named data2 that's a complete copy of the data array. It takes two arguments:

data: The array to be copied.data.length: The length of the new array, ensuring it has the same size as the original array.

Key points:

Shallow copy: This method performs a shallow copy, meaning it creates a new array with references to the same elements as the original array. If the elements are mutable objects (like other arrays or objects), changes made to them in one array will be reflected in the other.Alternative methods: There are other ways to copy arrays in Java, but this method is often preferred due to its clarity and efficiency:
System.arraycopy(data, 0, data2, 0, data.length): This method is more versatile but might be less readable for straightforward copying.
data2 = data.clone(): While this works for arrays of primitive types, it can be less reliable for arrays of objects due to potential cloning issues.

In the C++ instruction, cookies = number % children; given the following declaration statement: int number = 38, children = 4, cookies; what is the value of cookies after the execution of the statement?

Answers

Answer:

The correct answer for the given question is "2"

Explanation:

Here the statement is  cookies = number % children; where  number and children are the integer type variable which has been initialized by 38 and 4  respectively as given in the question.  

It will give value of cookies=2 because the % operator gives reminder so 38%4 gives reminder 2 .  

Therefore the value of cookies=2;

Which of the following kinds of software is a sophisticated type of application software that assists a professional user in creating engineering, architectural, and scientific designs?A.CADB.DTPC.CBTD.WBT

Answers

Answer:

The answer is A. CAD which means Computer-Aided Design.

Explanation:

CAD is used for creating different designs, simulations and scientific diagrams, some examples of CAD software include AutoCAD and Solidworks.

For reference the other acronyms mean:

Desktop publishing (DTP)

Computer-based training (CBT)

Web-based training (WBT)

A user has a problem accessing several shared folders on the network. After determining the issue is not from his computer's IP configuration, you suspect the shared folders are not currently connected. Which of the following commands will confirm your suspicions?A. net useB. ipconfigC. tracertD. nslookup

Answers

Answer: (A) Net use

Explanation:

 The "Net Use" command is basically used for confirmation that whether the user currently connecting with the shred folder or not connect.

The net use direction is a Command Prompt order that is utilized to interface with, expel, and design associations with shared assets, as mapped drives and system printers. The net use direction is one of many net directions like net send, net time, net client, net view.

On the other hand, all the other options are not used to check the device connection. Therefore, Option (A) is correct.

Write a method which will take one number as an argument. (Feel free to use static method or instance method) Given a input number (integer) print the digits of the number. You must use while loop and modulus operator. This program must work for any positive integer. Negative integers are not cons idered as inputs.

Answers

Answer:

// here is code in java.

import java.util.*;

// class definition

class Main

{

// method that return the digits of number

   public static void dig(int num)

   {

   // while loop

       while(num>0)

       {

           // print the digits

           System.out.println(num%10);

           num=num/10;

       }

   }

   //driver method

public static void main (String[] args) throws java.lang.Exception

{

   try{

    // scanner object to read input string

       Scanner s=new Scanner(System.in);

        // variable

       int num;

       System.out.print("please enter the number: ");

       //read the number

       num=s.nextInt();

       // validate the input, read a positive number only

       while(num<=0)

       {

           System.out.print("enter a positive number only:");

           num=s.nextInt();

       }

       System.out.println("digit of number are:");

       // call the function

      dig(num);

   }catch(Exception ex){

       return;}

}

}

Explanation:

Read a number from user and assign it to variable "num".Check if it is positive or not.If input is negative then ask user to again enter a positive number till user enter a positive number.Then call the function with input number. In this method it will find the digits of the number in the while loop using modulus "%" operator.

Output:

please enter the number: -345

enter a positive number only:1234

digit of number are:

4

3

2

1

The question involves writing a method to print out the digits of a positive integer using a while loop and modulus operator, demonstrated through a simple Java example.

The task is to write a method in a programming language that takes a positive integer input and prints out the digits of the number using a while loop and the modulus operator. Here's a simple example in Java:

public class DigitPrinter {
   public static void printDigits(int number) {
       while (number > 0) {
           int digit = number % 10; // Get the last digit
           System.out.println(digit);
           number = number / 10; // Remove the last digit
       }
   }

   public static void main(String[] args) {
       // Example usage
       printDigits(123);
   }
}

This method uses the modulus operator (modulus operator) to obtain the last digit of the number by calculating the remainder when the number is divided by 10. It then prints this digit, divides the number by 10 to remove the last digit, and repeats these steps with the while loop (while loop) until all digits have been printed in reverse order.

Given the int variables x, y, and z, write a fragment of code that assigns the smallest of x, y, and z to another int variable min. Assume that all the variables have already been declared and that x, y, and z have been assigned values.

Answers

Answer:

// here is code in C++.

#include <bits/stdc++.h>

using namespace std;

// main function

int main()

{

   // variables

   int x=5,y=2,z=9;

   int min;

   // find the smallest value and assign to min

   // if x is smallest

   if(x < y && x < z)

   // assign x to min

    min=x;

     // if y is smallest

else if(y < z)

 // assign y to min

    min=y;

// if z is smallest

else

 // assign z to min

    min=z;

// print the smallest

cout<<"smallest value is:"<<min<<endl;

return 0;

}

Explanation:

Declare and initialize variables x=5,y=2 and z=9.Then check if x is less than y and x is less than z, assign value of x to variable "min" .Else if value of y is less than value of z then smallest value is y, assign value of y to "min".Else z will be the smallest value, assign its value to "min".

Output:

smallest value is:2

Samantha has to create a video for her science project on the blossoming of a flower from a bud to one with fully opened petals. Which camera technique should she use to record this video?

Answers

Samantha would have to use the ‘time-lapse’ technique to film the video in the most efficient way.

Answer:

Use time lapse

Explanation:

I got it right

Assume that name is a variable of type String that has been assigned a value. Write an expression whose value is the first character of the value of name.

Answers

Answer:

name.charAt(0);

Explanation:

Given: 'name' is a variable of type String that has been assigned a value.

To determine: an expression whose value is the first character of the value of name.

Let us assume nae is assigned the value "test". So our expression should return the first character , that is 't'.

In order to do this, we can use the charAt method of String object.

String name="test";

char c = name.charAt(0);

Here 0 corresponds to the index of the character we are interested in.

Signe wants to improve the security of the small business where she serves as a security manager. She determines that the business needs to do a better job of not revealing the type of computer, operating system, software, and network connections they use. What security principle does Signe want to use?

Answers

Answer:Obscurity

Explanation: Security through the obscurity is the mechanism that is used for the security purpose in an operating system by inducing the confidentiality in the internal parts of the operating system.

The functioning of the security through obscurity(STO) works by hiding the  flaws and errors related to security  of the operating system.Thus , Signe is willing to use obscurity system.

 

After trying multiple times, a coworker is not able to fit a motherboard in a computer case, and is having difficulty aligning screw holes in the motherboard to standoffs on the bottom of the case. Which is most likely the source of the problem?

Answers

The most likely source of the problem is the form factors of both the case and the motherboard. They do not match. The type of motherboard describes its general shape and the kind of case it can use. For instance, you cannot have a full ATX motherboard fit inside a baby AT case. These two variants differ in width and will most likely cause overlap while installing. Sometimes, some system cases are not drilled to support all the mounting holes on various motherboard factors. This also causes significant issues while installing

A(n) ___________ is an organization that delivers communications services over a typically large geographic area and provides, maintains, and manages network equipment and networks.
A) Application service provider
B) Content provider
C) Network provider
D) Application provider

Answers

Answer:

C) Network provider

Explanation:

According to my research on information technology, I can say that based on the information provided within the question the term being described is called a Network Provider. This is a business or organization that sells bandwidth or network access (communication services) by providing direct access to internet service providers and usually access to its network access points. Like mentioned in the question they cover a large geographical area and maintain all the network equipment running efficiently.

I hope this answered your question. If you have any more questions feel free to ask away at Brainly.

Answer:

C) Network provider

Explanation:

A(n) Network provider is an organization that delivers communications services over a typically large geographic area and provides, maintains, and manages network equipment and networks.

CODE EXAMPLE 3-1 SELECT vendorName, invoiceNumber, invoiceDate, invoiceTotal FROM vendors INNER JOIN invoices ON vendors .vendorID = invoices.vendorID WHERE invoiceTotal >= 500 ORDER BY vendorName DESC How many columns will the result set have?

Answers

Answer:

The correct answer for the given question is 4

Explanation:

In the given code it select the vendorName, invoiceNumber, invoiceDate, invoiceTotal from vendors ,invoices table. when required condition is fullfill i.e vendors .vendorID = invoices.vendorID and invoiceTotal >= 500 .

So their are 4 column in the result set i.e vendorName, invoiceNumber, invoiceDate, invoiceTotal .

You are replacing a processor on an older motherboard and see that the board has the LGA1155 socket. You have three processors on hand: Intel Core i3-2100, Intel Core i5-8400, and Intel Core i5-6500. Which of these three processors will most likely fit the board? Why?

Answers

Answer:

Core i3-2100

Explanation:

The LGA1155 socket is used in CPUs based on Sandy Bridge 2nd generation and Ivy Bridge 3rd generation microarchitectures. It was introduced in 2011 along with 2nd generation CPUs. It was succeeded by LGA 1150, and the LGA 1156 was its predecessor. The LGA1155 have been out of production for a long while now. Since the LGA1155 is used in 2nd and 3rd generation CPUs, it is safe to say that the core i3-2100 is the only one 2nd generation CPU from the choices given above that supports the computer. The others belong to the 8th and 6th generation respectively.

Which of the following is not stored in primary storage? Select one:
a. data to be processed by the CPU
b. instructions for the CPU as to how to process the data
c. archival data
d. operating system programs
e. none of the above

Answers

Answer:

c

Explanation:

What is the first step of inventory management?
Interview users.
Back up network data.
List an administrative account's username and password for each device on a network.
List all components on the network.

Answers

Answer:

List all components on the network.

Explanation:

Inventory Management: It involves supervising inventory and stock items.It is a part of Supply chain management.It supervises the flow of goods from the manufacture to the warehouse.

The first step in Inventory management is to List all of the components on the network.Then after that other things are done.

Which of the following involves making a reasoned analysis of an opportunity, envisioning potential solutions, evaluating those possibilities, and developing the most promising ones, consistent with the resources you have

a) Abstract reasoning
b) Systems thinking
c) Collaboration
d) Ability to experiment

Answers

Answer:

b) Systems thinking

Explanation:

When answering multimple choices questions, it is important to rule out options which simply doest make sense to be the right answer. Let's discard the c) (collaboration) because the question never states anything related to teamwork, not even a small suggestion about cooperation. option d)  looks good but it is important to keep in mind that experemintations does not always consider the steps described on the questions. Experimentation can be performed without rigorous reasoned analysis, on the other hand, abstract reasoning and systems thinking do involve reasoned analysis to envision possible solutions.  Why choosing b) and not a) then? This is because abstract reasoning, as the same concept states, it i focused on analysis and interpretations of problems and other  cases like understanding the behaviour of natural phenomena for example, while it is not necesaryly linked to implmenting solutions based on a certain set of resources, while, on the other hand, systems thiking does take them into account. Systems thinking is the complete process of  evaluation, proposition of solutions and execution from the idea to reality in a sensible way.  

Sam has installed a new CPU in a client’s computer, but nothing happens when he pushes the power button on the case. The LED on the motherboard is lit up, so he knows the system has power. What could the problem be?a) She forgot to disconnect the CPU fan
b) She forgot to apply thermal paste between the CPU and the heat-sink and fan assembly
c) She used an AMD CPU in an Intel motherboard
d) She used an Intel CPU in an AMD motherboard

Answers

The answer would be b) She forgot your apply thermal paste between the CPU and the heat-sink and fan assembly

The problem is b) She forgot to apply thermal paste between the CPU and the heat-sink and fan assembly

What could the problem be?

Thermal paste is important  to make sure the CPU and heat sink can transfer heat correctly. If the CPU doesn't have thermal paste, it can get too hot and make the computer stop working properly, even if it has power.

The LED on the motherboard shows that the power supply is working, but the problem is probably because the system is getting too hot and shutting down to protect itself.

Read more about CPU  here:

https://brainly.com/question/474553

#SPJ2

Other Questions
An astronomer is trying to estimate the surface temperature of a star with a radius of 5.0108m by modeling it as an ideal blackbody. The astronomer has measured the intensity of radiation due to the star at a distance of 2.51013m and found it to be equal to 0.055W/m2. Given this information, what is the temperature of the surface of the star? Why do you think the delegates to the 1st Continental Congress believes that refusing to buy British goods would help their cause A person is at a large party with lots of music and conversations going on simultaneously. While talking to a friend about a romantic breakup, the person hears his name spoken from the other side of the room. He immediately looks in the direction of the voice and sees the person who spoke his name. This ability to detect one's name being spoken in this situation is an example of the _____ effect. the gcf of the two numbers 14 and 20 is Round the number 0.005758 to 3 sig figs Casandra is an honors student and one of the best varsity volleyball players. Despite her successes, she has begun to worry about her grades and standing in college, and her future. She has noticed that her mind goes blank in class and she has difficulty falling asleep at night. Most likely, Cassandra hasA)generalized anxiety disorder.B)panic disorder.C)obsessive-compulsive disorder.D)agoraphobia. Consider a slab of face area A and thickness L. Suppose that L = 33 cm, A = 55 cm2, and the material is copper. If the faces of the slab are maintained at temperatures TH = 129C and TC = 21C, and a steady state is reached, find the conduction rate through the slab. The thermal conductivity of copper is 401 W/mK. Jaime has two fractions, 3/18 and 13/15, that he needs to compare. He knows he will not be able to tell which is bigger until they have been rewritten with the same denominator. Which of the following shows both of these fractions rewritten with their least common denominator? The diagram shows triangle ABC, with AB = xcm, AC = (x+2)cm, BC = 2square root7cm and angle CAB = 60.(i) Find the value of x. Plz help me with this question plz help me plz Im begging you for your help plz plz help me plz According to the Constitution, the amount of time the president and vice president serve in office together for one term isfour yearssix years.seven yearsten years what is reciprocal of 14 The equation giving a family of ellipsoids is u = (x^2)/(a^2) + (y^2)/(b^2) + (z^2)/(c^2) . Find the unit vector normal to each point of the surface of this ellipsoids. The numeral 4.21 has three significant fire two known figures d e figure numbers are always significant In Russia, __________. a. politicians are interested in using the educational system to shape minds, as in other countries b. there is vigorous competition among textbook publishers c. schools are extremely critical of Russia's past d. politicians are interested in using the educational system to shape minds, unlike in other countries. What is 7.0717 million in figures? Solve for y. 140=18+4(5y2) Enter your answer in the box. y = URGENTWhich of the following were characteristics of the Ice Age:The ocean level was lower than it is today.Glaciers covered massive areas of land.Early humans fled south.People adapted by using fire and living in caves.There were no animals for food or clothing. A family is measuring its house in order to figure out how much paint will beneeded to paint the house. Which is the dependent variable in the relationship? How does the pay-as-you-go procedure apply to wage earners? To persons who have income from sources other than wages?