write function lengthcompare that takes two string parameters. it returns 1 if the first string has more characters, returns -1 if the second string has more characters, and return 0 if two strings have the same length.

Answers

Answer 1

Function that compares lengths using two string inputs. If the first string has more characters than the second, it returns 1, if the second string has more characters than the first, and if both strings are the same length, it returns 0.

What is returns 0?

The concept is straightforward move across the strings from one side to the other, say from the rightmost character to the leftmost. compare If two strings are not equal, the Two String method returns 0, else it returns 1. If the first string has more characters than expected, 1 is returned. If the second string has more characters than the first. otherwise, return 0. When two strings are compared using the equals method, true is returned if they are equal and false otherwise.

To learn more about  return 1 from given link

brainly.com/question/29620265

#SPJ4


Related Questions

Create an algorithm to accept the height of a person. If the height entered is greater than 6 feet it should display the message, "You are tall" if the height is less than this it should display, "You are short".

Answers

1. Accept the height of a person as input.

2. If the height is greater than 6 feet, display "You are tall".

3. If the height is less than or equal to 6 feet, display "You are short".

The algorithm is a simple conditional statement that checks the height entered by a person and displays a corresponding message based on the condition.

1. The first step is to accept the height of a person as input. This can be done using an input function or by reading from a user interface.

2. Next, we check if the height is greater than 6 feet. If the condition is true, the algorithm proceeds to display the message "You are tall".

3. If the height is not greater than 6 feet, the algorithm moves to the next step, which is to display the message "You are short". This message indicates that the person's height is less than or equal to 6 feet.

The algorithm provides a straightforward way to determine whether a person is tall or short based on their entered height.

learn more about user interface here:

https://brainly.com/question/10604135

#SPJ11


Is Blockchain different from a banking ledger? Explain in
detail.

Answers

Yes, Blockchain is different from a banking ledger.  Blockchain offers several advantages over traditional banking ledgers, including increased security, transparency, and decentralization. It has the potential to revolutionize various industries beyond banking, such as supply chain management, healthcare, and voting systems.



A banking ledger is a traditional system used by banks to record and track financial transactions. It is typically centralized, meaning that it is owned and controlled by the bank itself. The ledger is updated and maintained by the bank's employees, who are responsible for recording all transactions accurately.

Blockchain is a decentralized technology that enables secure and transparent record-keeping of transactions. It is not owned or controlled by any single entity, such as a bank. Instead, it is a distributed ledger that is maintained by a network of computers (nodes) spread across different locations.



Some key differences between Blockchain and a banking ledger:

1. Centralization vs Decentralization: As mentioned earlier, a banking ledger is centralized, while Blockchain is decentralized. This means that in a banking ledger, all transactions are recorded and validated by the bank itself. In a Blockchain, transactions are recorded and validated by multiple nodes in the network, providing greater security and eliminating the need for a central authority.

2. Transparency: A banking ledger is typically only accessible to authorized personnel within the bank. In contrast, Blockchain provides transparency as it allows anyone in the network to view the transactions that have taken place. However, the actual details of the transactions, such as personal information, may still remain private depending on the type of Blockchain.

3. Security: Both systems prioritize security, but they employ different mechanisms. In a banking ledger, security relies on the bank's internal controls, such as firewalls and encryption. In Blockchain, security is achieved through cryptography and consensus algorithms, which make it extremely difficult for malicious actors to tamper with the data.

4. Trust: A banking ledger relies on trust in the bank to accurately record and maintain transaction records. With Blockchain, trust is distributed across the network of nodes, as transactions are validated and agreed upon by consensus. This reduces the need for trust in a central authority.

To know more about  Blockchain refer to:

https://brainly.com/question/31058308

#SPJ11

select the correct answer
which sentence correctly describes a low-level language?
A. programs are written in source code
B. programs are written in hexadecimal or binary code
C. programs are translated to machine code by a complier
D. programs can be easily written and debugged

Answers

A  low-level language are known to be programs that can be easily written and debugged.

What are program written in a low level language?

A low-level programming language is known to be a kind of  programming language that helps one to have some amount or no abstraction from a computer's instruction defined architecture.

They are known as commands or functions in the language map that are said to be structurally almost the same to processor's instructions. They are easy to write and also debug.

Learn more about  low level language from

https://brainly.com/question/23275071

Sasha's new company has told her that she will be required to move at her own expense in two years. What should she consider before making her decision?

Answers

To make her decision, Sasha should consider cost of living, job market, quality of life, social network, and career advancement before moving for her new job.


What is the rationale for the above response?  

Before deciding whether or not to move for her new job, Sasha should consider several key factors.

Firstly, she should research the cost of living in the area where she will be moving to, as well as job opportunities, salaries and stability of the job market. Secondly, she should consider the overall quality of life, including climate, recreational opportunities and community atmosphere.

Note as well that, Sasha should consider her current social network and the opportunity to build a new one in the area where she will be moving to. Finally, she should weigh the potential benefits and costs of the move in terms of her personal and professional goals to determine if it is the right decision for her.

Learn more about Decision Making at:

https://brainly.com/question/13244895

#SPJ1

WILL GIVE BRAINLIEST!!!!!!!
In a series circuit, electricity flows along more than one path.


True

False

Answers

The answer is True !!!!!!!!!!!!!!!

Paths describe the location of folders and files on your computer. If you have saved your work to c:\documents, then your work has been saved to your
A. computer’s hard drive.
B. flash drive
C. student drive
D. OneDrive

Answers

The answer is D and it can also be C

Answer:

la ventana de micros word

What is window system?

Answers

Answer:

A window is a separate viewing area on a computer display screen in a system that allows multiple viewing areas as part of a graphical user interface ( GUI ). Windows are managed by a windows manager as part of a windowing system . A window can usually be resized by the user.

Answer:

A window system is a computer software type that people use to update their window computer.

5.4.7 Teenagers Code HS

Can someone help me with this? i currently have

if (age = 13){
println("Yes, you are a teenager.");
}else{
if (age <= 19){
println ("No, you are not a teenager.");
}

and anytime I type anything it always says yes so I'm confused.​

5.4.7 Teenagers Code HSCan someone help me with this? i currently have if (age = 13){println("Yes, you

Answers

Answer:

var teen = readInt("Are you a teen, if so what is your age? " );

if(teen >= 13 &&(teen < 19)){

    println("Yes, you are a teenager.");

}else{

      println("No, you are not a teenager.");  

}

Explanation:

Hopefully this helps you :)

x = int ( input("what is your age ? "))

if x >= 13 and x <= 19:

       print("yes you are a teenager")

else:

        print("No, you are not a teenager")

The variable x is used to store the user input. it prompts the user to input his/her age.

The if/else statement is used to check if the user is a teenager or not. If the user's age is between 13 and 19, both inclusive the use will get a message "yes you are a teenager " and if otherwise the user will gets a message "No, you are not a teenager"

The bolded word in the codes are key words in python. Pay attention to indentation.

read more: https://brainly.com/question/12089897?referrer=searchResults

QUESTION 1 (Data Exploration)
Data exploration starts with inspecting the dimensionality, and structure of data, followed by descriptive statistics and various charts like pie charts, bar charts, histograms, and box plots. Exploration of multiple variables includes grouped distribution, grouped boxplots, scattered plots, and pairs plots. Advanced exploration presents some fancy visualization using 3D plots, level plots, contour plots, interactive plots, and parallel coordinates. Refer to Iris data and explore it by answering the following questions:
i. Check dimension of data and name the variables (from left) using "Sepal.Length" "Sepal.Width" "Petal.Length" "Petal.Width" "Species".
ii. Explore Individual variables.
a. Choose "Sepal.Length". Provide descriptive statistics (summary) which returns the minimum, maximum, mean, median, standard deviation, first quartile, third quartile and interquartile range, skewness and kurtosis. Interpret the output based on location measure (mean), dispersion measure (standard deviation), shape measure
(skewness). b. Plot the histogram. Does the distribution of "Sepal.Length" is symmetrical?
c. Plot pie chart for "Species".
iii.Explore Multiple variables. Consider "Sepal.Length" "Sepal.Width" "Petal.Length" "Petal. Width".
a. Calculate covariance and correlation.
b. Plot side-by-side box plot and whiskers, where it shows the median, first and third quartiles of a distribution and outliers (if present). Compare the distribution of four variables and observe the outlier.
c. Plot a matrix of scatter plot. Explain about the correlation of variables.
iv.For advanced exploration, choose "Sepal.Length" "Sepal. Width" "Petal. Width". Produce 3D scatterplot. Explain the plot.

Answers

i. In the given question, the Iris dataset is explored using various techniques. The dimension of the data is identified, and the variables are named.

ii. a. Descriptive statistics are provided for the variable "Sepal.Length," including measures of location, dispersion, skewness, and kurtosis.

b. A histogram is plotted to analyze the distribution of "Sepal.Length,"

c.  A pie chart is used to visualize the distribution of species.

iii. a.  Covariance and correlation are calculated for multiple variables,

b. a side-by-side box plot is created to compare the distributions.

c.  A matrix of scatter plots is generated to explore the correlations between variables.

iv. A 3D scatter plot is produced using "Sepal.Length," "Sepal.Width," and "Petal.Width" variables.

i. The Iris dataset has five variables: "Sepal.Length," "Sepal.Width," "Petal.Length," "Petal.Width," and "Species."

ii. a. Descriptive statistics for "Sepal.Length" provide information about the location (mean, median), dispersion (standard deviation, quartiles, interquartile range), skewness, and kurtosis. The mean represents the average value, the standard deviation measures the spread of data around the mean, and skewness indicates the symmetry of the distribution.

b. The histogram of "Sepal.Length" helps visualize the distribution. If the histogram is symmetric, it indicates a normal distribution.

c. A pie chart for "Species" shows the proportion of each species in the dataset.

iii. a. Covariance and correlation are calculated to measure the relationships between "Sepal.Length," "Sepal.Width," "Petal.Length," and "Petal.Width." Covariance indicates the direction of the linear relationship, and correlation measures the strength and direction of the linear association between variables.

b. The side-by-side box plot compares the distributions of the four variables and helps identify outliers.

c. The matrix of scatter plots displays pairwise relationships between variables. Correlation can be observed by examining the patterns and directions of the scatter plots.

iv. For advanced exploration, a 3D scatter plot is created using "Sepal.Length," "Sepal.Width," and "Petal.Width." This plot visualizes the relationships between these three variables in a three-dimensional space, allowing for the identification of any patterns or clusters that may exist.

Overall, by utilizing various techniques such as descriptive statistics, histograms, pie charts, box plots, scatter plots, and 3D scatter plots, the Iris dataset is thoroughly explored to gain insights into the variables and their relationships.

Learn more about histogram here:

https://brainly.com/question/16819077

#SPJ11

1.1.1 Give two examples of situations or applications where electrical circuits are used. (2)​

Answers

An electric circuit contains a device that gives energy to the charged particles constituting the current, such as a battery or a generator; machines that use current, such as lamps, electric motors, or computers; and the connecting wires or communication lines.

Two of the basic laws that mathematically represent the implementation of electric circuits are Ohm’s law and Kirchhoff’s rules.

What is electric circuit?

Electric circuits are organized in several ways. A direct-current circuit carries a current that courses only in one direction. An alternating-current circuit holds a current that pulsates back and forth many times each second, as in most household circuits. A series circuit includes a path along which the whole current flows through each piece

To learn more about Electric circuits , refer

https://brainly.com/question/2969220

#SPJ9

A que se refiere el texto cuando afirma que nadie puede decir" Jesus es el Señor! sino con el espiritu santo (1 corintios 12, 1-11​

Answers

Answer:  

creo que serefiere a que nadie puede desir que jesus es el senor si no cree en lo que el mismo dice es como mintiendo sobre ello

Explanation:

perdon si no es la respuesta no se esplicarlo muy bien

Carmen wanted to clear up space on her computer and remove unwanted files. What would be the best for her to delete?
junk files
audio files
video games
anti-virus programs

Answers

Answer:

junk files

Explanation: if a file is in a junk file it is most likely unwanted

Answer:

A. junk files

Explanation:

I just took the test :)

True or False A safety data sheet (SDS) is a technical document or bulletin that summarizes the health and safety information available about a controlled product.

Answers

Answer:

True.

Explanation:

The Occupational Safety and Health Administration (OSHA) is a federal agency saddled with the responsibility of assuring and ensuring safe and healthy working conditions for employees by setting and enforcing standards, providing education, trainings and assistance to various organizations.

According to the Occupational Safety and Health Administration (OSHA), trainings on the adoption and application of safety precautions (tools) such as wearing a personal protective equipment e.g masks (respirators), ear plugs, safety boots, gloves, helmet, etc. are very important and are essentially to be used by employees (workers) while working in a hazard prone environment or industries. Therefore, all employers of labor are required to provide work tools and ensure that their employees properly use those tools, as well as abide by other safety precautions and standards highlighted in the safety data sheet.

A Safety Data Sheet (SDS) can be defined as a text-based document or bulletin that provides information with respect to the chemical and physical properties such as flammability, temperature, radioactivity, etc., of a substance or equipment. Also, it contains information on the potential health hazards and safety precautions for proper use (handling), storage and transportation of such substance or equipment.

Hence, a safety data sheet (SDS) is a technical document or bulletin that summarizes the health and safety information available about a controlled product such as toxic chemicals, radioactive elements, weapons or ammunition, etc.

(True/False) Like function ‘fork’ in the process API, function ‘pthread_create’ creates a clone of the current thread.

Answers

False. Function 'pthread_create' does not create a clone of the current thread.

In the process API, the 'fork' function creates a new process by duplicating the existing process, including its memory and resources. However, in the pthreads library, the 'pthread_create' function is used to create a new thread within the same process, rather than creating a separate clone of the current thread.

When 'pthread_create' is called, a new thread is created and starts executing the specified thread function. This allows concurrent execution of multiple threads within the same process, sharing the same memory and resources. Each thread has its own stack and thread-specific data, but they all have access to the same global and heap memory.

Unlike 'fork', which creates a separate process, 'pthread_create' creates a new thread within the same process, allowing for parallel execution of tasks. This makes it useful for implementing multithreaded applications where multiple threads can work on different parts of a task simultaneously, improving performance and resource utilization.

learn more about  'pthread_create'  here:

https://brainly.com/question/28901733

#SPJ11

Which is linux operating system?
1. Private OS
2. Open source OS
3. Windows operating System
4. None of these above​

Answers

Answer: None of these above

hope its help you

have a great day keep smiling be happy stay safe .

Find the value of the fourth term of (2a + 3b)^12

Answers

To find the fourth term of the expansion of (2a + 3b)^12, we can use the binomial theorem.

The fourth term corresponds to the term with k = 3 (remembering that the first term has k = 0), which is:

\(C(12, 3) * (2a)^9 * (3b)^3\)

where C(n, k) is the binomial coefficient, given by:

\(C(n, k) = n! / (k! * (n - k)!)\)

Substituting the values, we get:

\(C(12, 3) = 12! / (3! * 9!) = 12 * 11 * 10 / (3 * 2 * 1) = 220\)

Therefore, the fourth term of the expansion of (2a + 3b)^12 is:

220 * (2a)^9 * (3b)^3 = 220 * 2^9 * a^9 * 3^3 * b^3

Simplifying, we get:

\(= 2,438,860,800a^9b^3\)

So the value of the fourth term is \(2,438,860,800a^9b^3\).

To learn more about binomial theorem visit;

https://brainly.com/question/30100273

#SPJ4

____________ is a process of reverse calculation to achieved a desired result. a. Data Consolidation

Answers

Goal seeking is process of reverse calculation to achieved a desired result.

Goal seeking is simply known as a method used by individuals to find a said or specific value for a cell through the adjustment of the value of another cell (one other cell). We can work backwards from the desired outcome to find the number needed to meet one's goal

Conclusively we can therefore say that Goal seeking is process of reverse calculation to achieved a desired result.

Learn more from:

https://brainly.com/question/21530148

assume a program requires the execution of 25 x 106 fp instructions, 55 x 106 int instructions, 40 x 106 l/s instructions and 8 x 106 branch instructions. the cpi for each type of instruction is 1, 1, 4, and 2, respectively. assume that the processor has a 4 ghz clock rate. by how much must the cpi of l/s instructions be improved if the program is to run two times faster?

Answers

To run the program twice as quickly, the CPI of l/s instructions must be increased by a factor of 2.5 (from 4 to 1.6).

The total amount of clock cycles needed must be cut in half to run the program twice as quickly. 128 x 106 instructions were carried out in all. (sum of all instructions). The total number of clock cycles needed is (25 x 106 x 1) + (55 x 106 x 1) + (40 x 106 x 4) + (8 x 106 x 2) = 332 million using the CPI values that have been provided. The CPI of l/s instructions, which make up 40/128 of the instructions, must be increased from 4 to 1.6 in order to reduce this amount in half. (i.e., by a factor of 2.5). To run the program twice as quickly, the CPI of l/s instructions must be increased by a factor of 2.5 (from 4 to 1.6).

learn more about instructions here:

https://brainly.com/question/15279910

#SPJ4

How did tribes profit most from cattle drives that passed through their land?
A.
by successfully collecting taxes from every drover who used their lands
B.
by buying cattle from ranchers to keep for themselves
C.
by selling cattle that would be taken to Texas ranches
D.
by leasing grazing land to ranchers and drovers from Texas

Answers

The way that the tribes profit most from cattle drives that passed through their land is option D. By leasing grazing land to ranchers and drovers from Texas.

How did Native Americans gain from the long cattle drives?

When Oklahoma became a state in 1907, the reservation system there was essentially abolished. In Indian Territory, cattle were and are the dominant economic driver.

Tolls on moving livestock, exporting their own animals, and leasing their territory for grazing were all sources of income for the tribes.

There were several cattle drives between 1867 and 1893. Cattle drives were conducted to supply the demand for beef in the east and to provide the cattlemen with a means of livelihood after the Civil War when the great cities in the northeast lacked livestock.

Lastly, Abolishing Cattle Drives: Soon after the Civil War, it began, and after the railroads reached Texas, it came to an end.

Learn more about cattle drives from

https://brainly.com/question/16118067
#SPJ1

write a statement that sorts in reverse order (from largest to smallest) the list vegetables in place.

Answers

Statement that sorts in reverse order (from largest to smallest) the list vegetables in place, in Python is:

```python
vegetables.sort(reverse=True)
```

What is sort() function in Python?

The sort() function is a member of the list data structure in Python. By default, it sorts the elements of a list in ascending order and  `reverse=True` argument specifies that the sorting should be done in reverse order, from largest to smallest.
In the case of strings and characters, sorting is done based on their ASCII values.

To know sort in reverse order in Java visit: https://brainly.com/question/30763974
#SPJ11

Write the reassignSeat method, which attempts to move a person from a source seat to a destination seat. The reassignment can be made if the destination seat is available and has the same or greater tier than the source seat (that is, it is equally or less desirable). For example, a person in a tier 1 seat can be moved to a different tier 1 seat or to a tier 2 seat, but a person in a tier 2 seat can only be moved to a different tier 2 seat. The reassignSeat method has four int parameters representing the row and column indexes of the source ("from") and destination ("to") seats. If the reassignment is possible, the source seat becomes available, the destination seat becomes unavailable, and the method returns true. If the seat reassignment is not possible, no changes are made to either seat and the method returns false. Assume that the source seat is occupied when the method is called. Complete method reassignSeat. /** Returns true if a seat holder was reassigned from the seat at fromRow, fromCol* to the seat at toRow, toCol; otherwise it returns false, as described in part (b). * Precondition: fromRow, fromCol, toRow, and toCol represent valid row and* column positions in the theater. * The seat at fromRow, fromCol is not available. */public boolean reassignSeat(int fromRow, int fromCol,int toRow, int toCol)

Answers

Based on the above, the example of the way to carryout  an implementation of the reassignSeat method is given in the image attached.

What is the reassignment?

Knowing how to get back information is critical for an IT back specialist since it permits them to rapidly and proficiently resolve issues which will emerge for their clients. In numerous cases, information misfortune or startup issues can lead to noteworthy downtime etc.

In regards also to data recovery and startup problem solving skills it is critical for an IT back professional to have a solid understanding of computer equipment and program, organize foundation, and security conventions.

Learn more about reassignment  from

https://brainly.com/question/29849741

#SPJ4

Write the reassignSeat method, which attempts to move a person from a source seat to a destination seat.

Which of the following describes all illustrations created by freehand?


extension lines

sketches

leader lines

dimensions

Answers

The answer is - Sketches

what do you understand by cloud computing? list the advantages of clould computing.​

Answers

Answer:

Cloud infrastructures support environmental proactivity, powering virtual services rather than physical products and hardware, and cutting down on paper waste, improving energy efficiency, and (given that it allows employees access from anywhere with an internet connection) reducing commuter-related emissions.

Explanation:

Answer:

cloud computing is the delivery of computing services—including servers, storage, databases, networking, software, analytics, and intelligence—over the Internet (“the cloud”) to offer faster innovation, flexible resources, and economies of scale.

Advantages of Cloud Computing

Here, we will learn what are the benefits of Cloud Computing in your organization:

Cost Savings

Cost saving is one of the biggest Cloud Computing benefits. It helps you to save substantial capital cost as it does not need any physical hardware investments. Also, you do not need trained personnel to maintain the hardware. The buying and managing of equipment is done by the cloud service provider.

Strategic edge

Cloud computing offers a competitive edge over your competitors. It is one of the best advantages of Cloud services that helps you to access the latest applications any time without spending your time and money on installations.

High Speed

Cloud computing allows you to deploy your service quickly in fewer clicks. This faster deployment allows you to get the resources required for your system within fewer minutes.

Back-up and restore data

Once the data is stored in a Cloud, it is easier to get the back-up and recovery of that, which is otherwise very time taking process on-premise.

Automatic Software Integration

In the cloud, software integration is something that occurs automatically. Therefore, you don't need to take additional efforts to customize and integrate your applications as per your preferences.

Reliability

Reliability is one of the biggest benefits of Cloud hosting. You can always get instantly updated about the changes.

Mobility

Employees who are working on the premises or at the remote locations can easily access all the could services. All they need is an Internet connectivity.

Unlimited storage capacity

The cloud offers almost limitless storage capacity. At any time you can quickly expand your storage capacity with very nominal monthly fees.

Collaboration

The cloud computing platform helps employees who are located in different geographies to collaborate in a highly convenient and secure manner.

Quick Deployment

Last but not least, cloud computing gives you the advantage of rapid deployment. So, when you decide to use the cloud, your entire system can be fully functional in very few minutes. Although, the amount of time taken depends on what kind of technologies are used in your business.

Other Important Benefits of Cloud Computing

Apart from the above, some other Cloud Computing advantages are:

On-Demand Self-service

Multi-tenancy

Offers Resilient Computing

(20) connecting math to programming choose one from the following two projects (if you have experience writing computer programs, please do the first one, otherwise, do the second one). you can look at solutions online to get ideas, but the work you turn in must be your own.

Answers

Using knowledge in computational language in C++ it is possible to write a code that connecting math to programming choose one from the following two projects.

Writting the code:

#include<stdio.h>

long factorial(int n)

{

if (n == 0)

return 1;

else

return(n * factorial(n-1));aa

}

void main()

{

int number;

long fact;

printf("Enter a number: ");

scanf("%d", &number);

fact = factorial(number);

printf("Factorial of %d is %ld\n", number, fact);

return 0;

}

How do you find the factorial return of a number?

Factorial of a positive integer (number) is the sum of multiplication of all the integers smaller than that positive integer. For example, factorial of 5 is 5 * 4 * 3 * 2 * 1 which equals to 120.

See more about C++ at brainly.com/question/12975450

#SPJ1

(20) connecting math to programming choose one from the following two projects (if you have experience

Create a list that will contain 14 elements, with the first 12 elements having the value “badger” and the last two elements having the value “mushroom”.

Answers

A list that contains 14 elements, with the first 12 elements having the value “badger” and the last two elements having the value “mushroom” is as follows:

list1 = ["badger", "badger", "badger", "badger", "badger", "badger", "badger", "badger", "badger", "badger", "badger", "badger", "mushroom" "mushroom"]

Code explanation

List are used to store multiple items in a variable. The items stored accommodate different datatype. List are represented with a square bracket "[]". The elements stored are placed inside the square brackets.

The python list is stored in the variable list1The python list has the first 12 elements as "badger" and the last two elements as "mushroom".

learn more on list here: https://brainly.com/question/24941798

How do you turn your story/script into a rigorous and relevant video project?

Answers

You turn your story into a rigorous and relevant video project by finding a interesting topic, after that you find solid sources to support the topic you picked.

Nathan is working in a graphics program and he can't remember how to select an item. What should Nathan do?

Visit the application's Help files and search for the answer.

Go to the Start menu and select Instructions.

Look in the taskbar for the user’s manual.

Call the customer service number.

Answers

Answer:

The answer is option B : "Go to the Start menu and select Instructions".

What are the three concepts of human knowledge available with
today’s information technology?

Answers

Answer: To address these questions we need to define carefully three basic concepts – information, knowledge and intelligence – and explore the relationships between them and today information knowledge is more technical.

Explanation:

An eReader has a 956-pixel x 1290-pixel grayscale display with each pixel able to display 32 shades of gray. What is the KiB size of the display memory for the device

Answers

Answer:

752.71 kilobytes

Explanation:

Given ;

956-pixel x 1290-pixel

Shades of gray, = 32

Bit depth (n) = 2^n

32 = 2^5

Bit depth, n = 5 bits / pixel

The size of display memory :

Pixel dimension * n

(956 Pixel * 1290 pixel) * 5 bits /pixel

= 6166200 pixel * bits / pixel

= 6166200 bits

Converting bits to kilobytes :

1 bit = 1/8 bytes

1 byte = 1/1024 kilobytes

Hence,

1 bit = 1/(8 * 1024) kilobytes

1 bit = 1/8192 kilobytes

6166200 bits = (1/8192 * 6166200) kilobytes

= 752.7099609375 kilobytes

= 752.71 kilobytes

Question 19 :A user needs the video capability in his computer upgraded to support a new graphics application. The computer includes an onboard video card. You install a new video card in the computer. You need to disable the onboard video card. Where should this card be disabled

Answers

Answer:

The onboard video card should be disabled in the BIOS. After you disable the onboard video card in the BIOS, it will no longer function.

Explanation:

Since in the question a user wants to upgrade for new graphics application and also the computer involves the onboard video card and a new video card is installed in the computer now you want to disabled it

So this can be done in the BIOS i.e basic input output system which is to be used for rebooting the computer system

And after disabled it, you cannot used.

Other Questions
HURRY PLSWhich of the following is a base-conjugate acid pair?O HO and H3O+O HO and HPO4O HPO4 and HPO42-O HPO4 and H3O+ consider a family with three children in which both parents are carriers for cystic fibrosis. what is the probability that they will have exactly one affected child? harry houdini famously escaped from what old-time container? Assuming equal time intervals between the payments and a constant rate of return, which of the following cash flow patterns represents an annuity? Year 1 Year 2 Year 3 Year 4 Year 5 Year 6A) $ 1,000 $ 1,000 $ 1,000 $ 1,000 $ 1,000 $ 1,000 B) $ 500 $ 0 $ 500 $ 500 $ 500 $ 0 C) $ 100 $ 200 $ 300 $ 400 $ 500 $ 600 a) Ab) Bc) Cd) Any of the above If 1 egg and 1/3 cup of oil are needed for each bag of brownie mix, how many bags of brownie mix do you need if you want to use up 3 eggs and 1 cup of oil? 4 1 3 2 Question 13 of 20Which piece of information on a check can help you track the order ofchecking account transactions?O A. Account numberO B. Check numberO C. Routing numberO D. Check amount Solve the simultaneous equations by substitutionx-3y=-7x=5-y Quadrilateral EFGH is a rhombus which addition fact would prove that EFGH is a square the answer choices are in the photo below I will give brainlyest to right answer A coffee distributor needs to mix a(n) Rift Valley coffee blend that normally sells for $8.30 per pound with a Costa Rican coffee blend that normally sells for $14.60 per pound to create 100 pounds of a coffee that can sell for $14.41 per pound. How many pounds of each kind of coffee should they mix? Answer: pounds of the Rift Valley Blend pounds of the Costa Rican Blend. Round your answers to the nearest whole number of pounds. What does the use of the term hibakusha indicate? The effects of the atomic bombs were limited to Nagasaki and Hiroshima, so a new term was coined to identify their geographic locations. The radiation from the atomic bombs was so significant that a new term was needed to describe the medical conditions resulting from exposure. The dropping of atomic bombs had such a widespread impact on Japanese society that a new term was needed to identify survivors. the following chemical reaction takes place in aqueous solution: agno3 nai What industry helped spark the Industrial Revolution in the North? Find the value of y so that WX is perpendicular to YZ PLZ HELPWhich system of inequalities is shown in the graph?A)2x + 3y 5 and -3x + 2y < 6B)2x + 3y < 5 and -3x + 2y 6C)2x + 3y 5 and -3x + 2y > 6D)2x + 3y > 5 and -3x + 2y 6 Which activities took place in Catholic missions in Texas during the eighteenth century?1.Indians learned to become better hunters2.Indian chiefs ordered the removal of priests3.Indian priests conducted local rituals4.Priests led Indians through their daily activities Simple linear regression results ______ sensitive to mild departures from the underlying assumptions. Which is a characteristic of a free market economy? I need this to be explained To create a Decimal object that stores a decimal number, pass a string for the decimal number to the ______________ of the Decimal class. Which sum will be irrational?