A company has developed a business-critical system for its core automation process with a software vendor. Which of the following can provide access to the source code if the licensor declares bankruptcy?a. Software escrowb. Software code reviewc. Software change controld. Software configuration management

Answers

Answer 1

Answer:

d. Software Configuration Management

Explanation:

A company has developed a business-critical system for its core automation process with a software vendor. Therefore, the Software Configuration Management can provide access to the source code if the licensor declares bankruptcy.


Related Questions

Microsoft Xbox operating system provides Xbox programmers with a set of common standards to use to access controllers, the Kinect motion sensor, play sounds, draw graphics, save files, and more. Without this, games would:

a) be more reliable.
b) be a lot easier to write.
c) cost more.
d) look same.
e) not be restricted to just Microsoft's platforms.

Answers

The correct answer is: e) not be restricted to just Microsoft's platforms.

The Microsoft X box operating system provides a set of common standards that are specific to Microsoft's platforms, which can limit the portability of games to other platforms.

Here's why the other options are incorrect:

be more reliable: While consistent standards can potentially contribute to reliability, the main benefit of standards is simplifying development, not directly impacting reliability.

cost more: Standardized tools and libraries often reduce development costs by making the process more efficient.

look same: Games built on the same framework might share some similarities, but creative developers can still create diverse visual experiences even within a standardized platform.

not be restricted to just Microsoft's platforms: Standards themselves are platform-agnostic, but Microsoft's specific implementation of those standards would be limited to their platform.

Therefore, the most significant benefit of a common set of standards for X box programmers is that it significantly reduces the complexity and effort involved in writing games for the platform. This makes game development more accessible and allows developers to focus on creative aspects rather than reinventing basic functionalities.

A network administrator is noticing slow response times from the server to hosts on the network. After adding several new hosts, the administrator realizes that CSMA/CD results in network slowness due to congestion at the server NIC. What should the network administrator do?

Answers

Answer:

change results in network

A nonvolatile storage device
A. is not temperature-sensitive.B. is similar to cache memory.C. maintains data even when the computer's power is turned off.D. ​​is similar to RAM.

Answers

Answer:

C. maintains data even when the computer's power is turned off.

A nonvolatile storage device maintains data even when the computer's power is turned off. The correct option is C.

What is a nonvolatile storage device?

Because the data saved there is not destroyed when the machine is turned off, nonvolatile storage is required for long-term storage purposes. while, Once the system is shut off, volatile devices frequently lose the data that is stored on them.

Tape drives, HDDs, and SSDs are three typical instances of NVS devices that persistently store data. The semiconductor chips found inside devices like SSDs, HDDs, tape drives, and memory modules that store data or controller program code also fall under the definition of non-volatile storage.

Therefore, the correct option is C. maintains data even when the computer's power is turned off.

To learn more about nonvolatile storage devices, refer to the link:

https://brainly.com/question/5501280

#SPJ2

In the _____ phase of transferring data from a transactional database to a data warehouse, the builders create the files from transactional databases and save them on the server that will hold the data warehouse.

Answers

Answer: Extraction phase

Explanation: Transactional database is the data collection capable of undoing the transaction that has not been correctly done. Data warehouse id the place where transaction data is transmitted where different types of databases are stored.

The transmission of the information from transactional database to data warehouse is defined in the extraction phase.The extraction phase works by transforming the data into a particular format. It copes the transactional databases's data to the warehouse by making separate space for deposition of data

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:

// 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

Which of the following is true about unstructured data? a. Computer logic programs can identify and extract patterns in it. b. It must be analyzed manually. c. It is more likely to come from direct sources than indirect sources. d. It is less valuable than structured data in terms of providing insights into customer behavior. e. It cannot be combined with other data sources.

Answers

Answer:

a. Computer logic programs can identify and extract patterns in it.

Explanation:

Unstructured data is the information that does not have the pre defined data model and not organized well.

We know that the computer programs have the capability of modifying the unstructured data and convert it into the structured data like python programs,r script programs.

Hence the correct  option is option A.

Coding in content analysis involves:
a. conceptualization and operationalization.
b. inductive methods.
c. selecting a level of measurement
d. deductive methods
e. all of these choices are involved in coding in content analysis.

Answers

Answer:

e. All of these choices are involved in coding in content analysis.

Explanation:

Content Analysis is a tool for research used to find the presence of certain themes,concepts or words in some given qualitative data.

When coding in content analysis it involves conceptualization and operationalization ,selecting a level of measurement , deductive methods and inductive methods.

Hence the correct answer is option e.

It takes 2.5 yards of material to make a dress harleys clothing design estimates that they can produce 48 dresses each week.if there are 52 weeks in a year how much material will they need to purchase to make dresses for a year?

Answers

Answer:

6240

Explanation:

if there is 48 each week thats basically 48×52 = 2496 which is how many dresses times how many yards per dress(2.5)I get 6240

Answer:

There will be requirement of 6240 yard of material in one year.

Explanation:

We have given that it takes 2.5 yard of a material to make a dress

And it can produce 48 dresses in each week

There are 52 weeks in a year

So total number of cloths in a year = 52 × 48 =2496

As it is given that 1 cloth takes 2.5 yard of material

So total material required = 2.5 × 2496 = 6240 yard

So there will be requirement of 6240 yard of material in one year.

Assume that x is a double variable that has been initialized. Write a statement that prints it out, guaranteed to have a decimal point, but without forcing scientific (also known as exponential or e-notation).

Answers

Answer:

cout <<showpoint << x; is  the statement which  prints the decimal point,        but without forcing scientific.

Explanation:

The showpoint function in c++ print the decimal point number without forcing scientific.The showpoint function set  the showpoint format flag for the str stream in c++.

Following are the program in c++

#include<iostream> //header file

using namespace std; // namespace

int main() // main function

{

   double x=90.67; // double variable

   cout <<showpoint << x; // display x  without forcing scientific

  return 0;

}

Output

90.6700

Which of the following lines of code is syntactically correct?
a. DECLARE order NUMBER; departure DATE; BEGIN ---- executable statements --- END
b. DECLARE order NUMBER; departure DATE BEGIN ---- executable statements --- END
c. DECLARE order NUMBER(3); departure DATE; BEGIN ---- executable statements --- END;
d. DECLARE order NUMBER(2); departure DATE; BEGIN; ---- executable statements --- END

Answers

Answer:

The answer is:

c.  

DECLARE

order NUMBER(3);

departure DATE;

BEGIN

---- executable statements ---

END;

Explanation:

SQL Commands must close with a semicolon to be correctly parsed by the server. This is the cause why the syntax is wrong in:

A. DATE; BEGIN ---- executable statements --- END lacks semicolon in END.

B. DECLARE order NUMBER; departure DATE lacks semicolon after DATE.

D. A. DATE; BEGIN ---- executable statements --- END lacks semicolon in END.

Write the pseudocode for a function named getFirstName that asks the user to enter his or her first name, and returns it. Write the main module that declares a variable called name, calls getFirstName (setting its return value into name), and displays that name with a user-friendly message.

Answers

Answer:

Function getFirstName(nameInput)

  Declare nameInput

  Display "Please enter your first name."

  Input nameInput

  Return nameInput

End function

Module main()

  Declare name

  Call getFirstName(name)

  Display "Hi + 'name'!"

End module

Explanation:

First, we define the function getFirstName(nameInput) that has the parameter nameInput to get the input name a retrieve it to the module main. Then, we define the module main that declares the variable name, calls and retrieves the name variable of the function previously defined.

Function getFirstName():

   Display "Enter your first name:"

   Input firstName

   Return firstName

Main module:

   Declare name as String

   Set name = getFirstName()

   Display "Hello, " + name + "! Welcome!"

Here's the pseudocode for the `getFirstName` function and the main module:

plaintext

Function getFirstName():

   Display "Please enter your first name:"

   Input firstName

   Return firstName

Main module:

   Declare name as String

   Set name = getFirstName()

   Display "Hello, " + name + "! Welcome to the program."

1. **Function `getFirstName()`**:

  - Prompts the user to enter their first name using `Display` (assuming it's a function to print to the console).

  - Reads the input using `Input` and stores it in `firstName`.

  - Returns `firstName` which contains the user's input.

2. **Main module**:

  - Declares a variable `name` of type `String` to store the user's first name.

  - Calls the `getFirstName()` function and assigns its return value to `name`.

  - Displays a friendly message using `Display`, welcoming the user with their entered name concatenated with a greeting.

This pseudocode demonstrates a basic structure for obtaining user input and displaying output in a simple console-based program, focusing on clarity and functionality.

A technician recently fixed a computer with several viruses and spyware programs on it and notices the Internet settings were set to redirect all traffic through an unknown proxy. This type of attack is known as which of the following?A . PhishingB . Social engineeringC . Man-in-the-middleD . Shoulder surfing

Answers

Answer:

C . Man-in-the-middle

Explanation:

The man-in-the-middle technique is about the interference of a third party in the communication channel, without any of the extremes being able to notice its existence, in this way, for the user as well as for the destination page the communication will seem normal.

In this case, by redirecting traffic to a PROXY server, the attacker will have the possibility to read all the information that passes through it, being able to obtain all the desired data.

Other Malware can be used to configure the connection of the computer through the PROXY of the attacker and in this way the channel is open, until the PROXY is disabled and the malware that redirects is blocked or uninstalled.

__________ is a software package providing comprehensive coverage of all phases of the development process from writing Hypertext Markup Language (HTML) code to creating scripts for programs running on web servers.

Answers

Final answer:

A software package that covers all development process phases, from HTML coding to server-side scripting, is known as a web development tool or IDE. These tools are crucial for creating websites that balance various elements and aid users and developers in navigating complex human-software interactions.

Explanation:

​​​​​​​​​​​​​A software package providing comprehensive coverage of all phases of the development process from writing Hypertext Markup Language (HTML) code to creating scripts for programs running on web servers is known as a web development tool or Integrated Development Environment (IDE). These tools are essential for developers to create and manage websites, incorporating the various elements of design and functionality that make up a modern website. When selecting an IDE or web development tool, it is crucial to consider factors like human-software interactions, how these tools support complex automated systems, and the decision-making processes of workers as they are supported by the software system.

Tim Berners-Lee's contribution to the development of HTML and the world's first web server on his NeXT computer set the foundation for these tools. Today's development environments aim to provide a balance of text, images, and careful formatting—elements that were central to the early web and continue to be pivotal in the creation of responsive and accessible websites. The ability to create a website that effectively conveys information without overwhelming the reader is a key objective of a well-designed software package in web development.

Which statements about the enhanced for loop are true for arrays of primitive data? I. It is suitable for all array algorithms. II. It does not allow the contents of the array to be modified. III. It does not require the use of an index variable.

Answers

Final answer:

The enhanced for loop is not suitable for all array algorithms, does not allow the array's contents to be modified (especially in arrays of primitive data), and does not require an index variable, making it advantageous for iterating over arrays for reading purposes but limited for direct modifications.

Explanation:

The question is asking about the characteristics of the enhanced for loop in the context of arrays containing primitive data types in Java. Let's examine each statement:

It is suitable for all array algorithms. This is false. While the enhanced for loop is a convenient way to traverse through an array for reading or processing each element, it is not suitable for algorithms that require modifying the array elements directly, or that need access to the array index while iterating, such as swapping elements.It does not allow the contents of the array to be modified. This is generally true when it comes to modifying the value of the elements directly via the variable provided in the loop, especially in the context of primitive data. You cannot change the original array content through the loop variable as it only provides a copy of each element rather than a reference. However, you can act on object elements in a way that modifies their state (in the case of arrays of objects) but not the array structure or the reference to the objects themselves.It does not require the use of an index variable. This is true. One of the main advantages of the enhanced for loop is that it abstracts away the need for an index variable when iterating through an array, making the code cleaner and less prone to errors related to indexing.

In summary, the enhanced for loop provides a more readable and less error-prone way to iterate over an array of primitive types, but it has limitations, especially when modifications to the array itself are necessary.

An organization is deploying a new system to the production environment. A security analyst discovers the system is not properly hardened or patched. Which of the following BEST describes the scenario?
A. A secure baseline was not established early in the process.
B. User acceptance testing was not completed.
C. Integrity checks were not conducted to ensure it was the correct system.
D. An application code error was introduced during the development phase.

Answers

Answer:

The best answer is A) A secure baseline was not established early in the process.

Explanation:

If the organization is deploying to the production environment and the security analyst discovers this risk at this point, then a secure baseline was not established, because it is impossible to successfully pass the coding and peer review instances by programmers and testing instances by the QA team without any warning to correct this problem.

What is the function of Google Analytics? web graphics website monitor website statistics programming

Answers

Answer:

Website monitor  is the function of Google Analytics

Explanation:

It gives valuable insights about the usage of website and ways to improve the number of visitors and the way the data is needed.

Google Analytics provides this service as a free of cost and also it collects data automatically and it also gives customized report and many other facilities with respect to monitoring of the website.

It also provides important information about the gender, device and location of the customer and why customer often bouncing off, what kind of a data are they interested and so on.

Answer:

D) Website Statistics.

Explanation:

I took the Career Explorations II Instruction/Assignment, this is the answer!!

Why is it difficult to tell whether a program is correct? How do you go about finding bugs in your code? What kinds of bugs are revealed by testing? What kinds of bugs are not?

Answers

Final answer:

Program correctness is difficult to ascertain due to the many variables and inputs that can affect a software's behavior. Bugs can be identified through methods like unit testing, and adhering to good programming practices can help prevent many common errors. Nevertheless, not all issues can be revealed by testing, especially those outside the test conditions or involving non-functional aspects of the code.

Explanation:

It is difficult to tell whether a program is correct for several reasons. First, a program might work fine for some inputs but fail for others, especially if those inputs were not considered during development. Furthermore, the complexity of modern software and the interactions between different pieces of code can introduce subtle bugs that only emerge under specific conditions. In order to find bugs, a developer engages in testing and debugging processes.

Finding Bugs in Code:

Unit testing is one effective way to find and fix bugs. This involves breaking down your program into small, testable parts and ensuring each part works correctly in isolation. By using small test files and scenarios that you can verify manually, you can more easily identify discrepancies between the expected and actual outcomes. Additionally, rapid cycling between coding and testing can help identify errors early on before they compound and become harder to isolate.

Types of Bugs Revealed by Testing:

Testing can reveal syntax errors, runtime errors, logical errors, and integration issues. However, some bugs might not be uncovered by testing, such as those that occur under rare or untested conditions, or bugs related to non-functional requirements like performance under load or security vulnerabilities.

Good Programming Practices to Avoid Bugs:

To avoid bugs, it is crucial to follow good programming practices such as writing clean, readable code, reviewing code with colleagues, and avoiding writing large chunks of code without testing. Developers should write a small amount of code, test it, and repeat this process instead of trying to develop the entire program at once.

A _____ occurs when one transaction reads data written by another transaction before the other transaction commits. dirty read lost column value collision uncommitted dependency

Answers

Answer: dirty read, uncommitted dependency

Explanation:

We have this problem of dirty read when we have many transactions running simultaneously and then one transaction reads a value which has not been committed by another transaction. If such a situation arises then it leads to problems as when it results in redundancy of data and we get a wrong result.

Uncommitted dependency also happens in this way by which it reads the value from a transaction which is in its intermediate stage.

The uncommitted value of the transaction is called as the dirty data and leads to redundancy in the final outcome of the transaction.

Late at night, some traffic signals change patterns and become _____.
A. WRONG WAY signs and DO NOT ENTER signs
B. flashing yellow or red lights
C. turn arrows
D. inactive

Answers

The answer is B.

Late at night, some traffic signals change patterns and become flashing yellow or red lights.

Answer:

Option (B) i.e., flashing yellow and red lights is the correct option to the given question.

Explanation:

Because there is very less traffic at the time of the late-night so, there is traffic police at that time that's why always or mostly flashing yellow or the red light at late night which indicates if any person is traveling than, firstly they will stop and look their left or right side, if all clear than go.

So, that' why this option is correct because it will reduce the chances of accidents.

The range of an area where users can access the Internet via high frequency radio signals transmitting an Internet signal from a wireless router is known as a _____.


A) Hotspot

B) PAN

C) Bluetooth

D) Bright Spot



I'll Give Brainlyest to first answer!!!!

Answers

A) hotspot
Bluetooth is for short distance and pan is Personal area networks (PANs) connect an individual's personal devices

Answer:

Option (A) is the correct answer of this question.

Explanation:

The main objective of  the hotspot is to giving the internet access to the user or the people with the help Wifi and the hotspot is giving the internet with the help Router.

In the Hotspot, the user would have very high frequency connections to the Internet and relay the Internet signal from the wireless router.

Bluetooth is used for short distance that's why is the incorrect answer.  PAN is Personal area networks (PANs) connect an individual's personal devices that's why is the incorrect answer.Bright Spot is used for the configuration purpose in the URL that 's why is the incorrect answer.

Convert the following binary numbers to decimal.
a. 00001001
b. 10000001
C. 11111110
d. 11000001

Answers

Answer:

a: 9

b: 129

c: 254

d: 193

Print "Censored' if userlnput contains the word "darn, else print userlnput. End with newline. Ex: If userinput is "That darn cat., then output is: Censored Ex: If userlnput is "Dang, that was scary!", then output is: Dang, that was scary! Note: If the submitted code has an out-of-range access, the system will stop running the code after a few seconds, and report Program end never reached. The system doesn't print the test case that caused the reported message. 1 import java.util.Scanner; 3 public class CensoredWords 4public static void main ( 1 test passed String args) Scanner scnr -new Scanner(System.in); String userInput; A tests passed userInput scnr.nextLine); 10 Your solution goes here 12 13 Run

Answers

Answer:

The code is given below in Java with appropriate comments

Explanation:

//Import the input.

import java.util.Scanner;

class CensoredWords

{

    //Define the main method.

    public static void main(String args[ ])

    {

         //Define the variables.

         String userInput="" ;          

         //Define the scanner object

         Scanner scobj = new Scanner(System.in);

          //Accept the userInput.

         System.out.print("Enter String: ");

         userInput=scobj.nextLine();

         //Check if the input contains darn.

         //Print censored.

         if(userInput.toUpperCase().indexOf("DARN") != -1)

         System.out.printf("Censored");

         //IF the input does not contains darn

         //Print userInput.

         else

System.out.printf(userInput)

         return;

}

}

Ilya has been asked to recommend a federation system technology that is an open source federation framework that can support the development of authorization protocols. Which of these technologies would he recommend?A. OAuth
B. Open ID Connect
C. Shibboleth
D. NTLM

Answers

Answer: A. OAuth

Explanation:

OAuth is one of the process by which different applications basically the third party applications can have access to account details of the end users. Here the process is completely governed by the principles of authorization protocols. Similarly in OAuth the access to the details of the end users are maintained by the process of a token. The third party upon access of the token is able to access the end users account information.

OAuth was established in 2007 and works on the framework of the open source federation.

So in this regard IIya would be recommended OAuth technology for her federal system technology.

During your research, you also come across a Web site on hybrid cars. The Web site explains buying incentives and offers several customer testimonials. What is the likely primary goal of this Web site?

Answers

Final answer:

The primary goal of the website about hybrid cars, which includes buying incentives and customer testimonials, is most likely to sell products or services. It aims to convince potential buyers by highlighting the economic and environmental benefits of hybrids, using both logical and emotional appeals.

Explanation:

The likely primary goal of the website discussing hybrid cars, featuring buying incentives and customer testimonials, is to sell products or services. The presence of buying incentives is designed to make hybrids more attractive to potential buyers by highlighting benefits like fuel efficiency and reduced environmental impact. Customer testimonials serve as persuasive personal stories to build trust and convince potential buyers of the benefits and satisfaction associated with owning a hybrid car.

By offering these elements, the website strategically combines factual information with emotional appeal. This tends to create a compelling argument in favor of purchasing a hybrid car, leveraging both the economic savings on fuel and the desire to participate in environmentally responsible behavior. The overall strategy suggests that while the site may provide useful information, its ultimate aim is to influence consumer behavior towards making a purchase.

It is important for consumers to critically evaluate the validity of the information presented on such sites. Looking for unbiased sources and verifying claims through reputable sites can help in making informed decisions.

How many inputs are included in the following requirement? REQUIREMENT: Write a program that asks the employee for their age. The program must subtract the age from 65, and display the age, followed by the number of years left to retirement.

Answers

Answer:

The correct answer for the given question is 1

Explanation:

Following are the program in c language  

#include<stdio.h> // header file

#include<conio.h>  //header file

void main()  // main method

{

int age,retiredAge;  // variable

clrscr();  // clear screen

printf("Enter Age : ");

scanf("%d",&age);  // input age

printf("************************");

retiredAge = (65-age);  // calculating retired age

printf("\nYour Age is %d",age);

if(retiredAge<0)  // checking condition

{

printf("\nYou are already cross the retired age. Or Enter Invalid Age.");

}

else

{

printf("\nNo of Years Left to retired is %d",retiredAge);  // dsiplay age

}

getch();

}

Output:

Enter Age : 50

************************

Your Age is 50

No of Years Left to retired is 15

Here Age is the only required input to calculate the retirement age of employee. if entered age is greater than 65 then a message is printed " You are already cross the retired age. Or Enter Invalid Age. " if entered age is valid then retiredAge is calculated with the formula retiredAge = (65-age). and finally display the age,followed by the number of years left to retirement.

Therefore  1 input are required for the above program.

Write the definition of a function printAttitude, which has an int parameter and returns nothing. The function prints a message to standard output depending on the value of its parameter.If the parameter equals 1, the function prints disagreeIf the parameter equals 2, the function prints no opinionIf the parameter equals 3, the function prints agreeIn the case of other values, the function does nothing.Each message is printed on a line by itself.

Answers

Answer:

// code in C++.

#include <bits/stdc++.h>

using namespace std;

// function to print attitude

void printAttitude(int n)

{

// if input is 1

   if(n==1)

   cout<<"disagree"<<endl;

// if input is 2

   else if(n==2)

   cout<<"no opinion"<<endl;

// if input is 3

   else if(n==3)

   cout<<"agree"<<endl;

}

// main function

int main()

{ // variable

   int n;

   cout<<"Enter a number:";

   // read the input number

   cin>>n;

   // call the function

   printAttitude(n);

return 0;

}

Explanation:

Read a number from user and assign it to "n".Then call the function printAttitude() with parameter "n".In this function, if the input number is 1 then it will print "disagree", if the input number is 2 then it will print "no opinion" and if the input number is 3 then it will print "agree".function will do nothing if the input number is anything else.

Output:

Enter a number:2

no opinion

Which of the following statements is true?

a) Computer science tends to deal with data
b) Informaticians deal primarily with data
c) Information technology professionals deal mainly with information
d) Computer science tends to deal with knowledge

Answers

Answer: (A) Computer science trends to deal with the data.

Explanation:

 The computer science basically tend to deal with the big data and data science as it is the emerging technologies with the upcoming years.

As, with the large amount of the data and high transmission rate we can easily developed new computing technologies with low budget.  

Data is basically defined as simple facts and figures and contain information that is very useful for developing the computing technology for study and processing the system.

Therefore, Option (A) is correct.

 

Your organization’s network has multiple layers of security devices. When you attempt to connect to a service on the Internet. However, you receive a security message from the operating system stating that this service is blocked on your workstation. What could be the probable cause?
a. The IP address of the service is blocked by an intrusion detection system (IDS)
b. The service is blocked by the Internet Service Provider (ISP)
c. The proxy firewall on the network is blocking the service.
d. The host-based firewall settings are blocking the service.

Answers

Answer:

B.

Explanation:

Internally, computers are constructed from circuitry that consists of small on/off switches. What is the most basic circuitry-level language that computers use to control the operation of those switches called?

Answers

Answer:

Machine Language.

Explanation:

The most basic language that is used by computers so that they can control the operation of the on/off switches  in the circuitry is Machine language.

Machine Language is a low level language is a collection of binary digits or bits that is understood by the computers.Computers are capable of understanding only machine language.

Final answer:

The most basic language that computers use to control the operation of their internal switches is called binary code, which is represented by ones and zeros. The controls are implemented by transistors within a microprocessor, an integrated circuit that performs a variety of tasks.

Explanation:

Internally, computers consist of intricate circuitry that functions through numerous tiny on/off switches called transistors. The most basic circuitry-level language that these computers use to control the operation of those switches is termed binary code. Binary code is represented by ones and zeroes, corresponding to the digital signals that turn transistors on and off. These transistors, whether in the on or off state, control the flow of electricity and data within the microprocessor, which is an integrated circuit that can perform various tasks. Indeed, the microprocessor is at the heart of modern computing, storing and manipulating data to execute a wide range of functions.

The integrated circuits that form the basis of most modern electronic devices, including computers and cell phones, contain millions of these switches that operate using binary code. This technology has progressed from larger mechanical parts to the microscale transistor-based integrated circuits we have today, enabling the wide use of personal computers and other digital technology.

You also learn in class that one kilobyte of computer memory will hold about 2/3 of a page of typical text (without formatting). A typical book has about 400 pages. How many such books can a 9-gig flash drive hold? _______________

Answers

Answer:

The flashdrive can hold 35389 400-pages-books

Explanation:

If [tex]\frac{2}{3}[/tex] of a page occupies 1 kB of memory, we can calculate how much memory a book will take

[tex]2/3kB=1 page\\ x kB=400 pages\\266.67 kB=400 pages[/tex]

Now that we know that a book average file size is about 266,67 kB, we calculate how many of them can a 9 GB flash drive hold.

To do the calculation, we have to know how many kilobytes are in 9 gigabytes.

There is 1024 kilobytes in a megabyte, and 1024 megabytes in a gigabyte, so:

[tex]Memory_{in _kilobytes}^{} =1024\frac{kilobytes}{megabytes} *1024\frac{megabytes}{gigabytes}*9=9437184 kilobytes[/tex]

Finally, knowing the average file size of a book and how much memory in kilobytes the 9 GB flash drive holds, we calculate how many books can it hold.

[tex]Books=\frac{Flash drive memory}{Filesize of a book} =\frac{9437184kilobytes}{266.67\frac{kilobytes}{book} } =35389,4 books[/tex]

The flashdrive can hold 35389 400-pages-books, or 14155776 pages of typical text.

Other Questions
According to this quote, which issue would make ruling too hard for the government under the Constitution Factor out the coefficient of the variable in the expression 1/3b - 1/3 i am not a member of a credit union, therefore i _____ use any of its services. can't. have to show ID to. have to pay to. can. _________ Code that you write is called primary code, and code that the compiler produces after processing the primary code is called runtime code Translate (N-5)*7 turn into verbal statement As blood travels from arteries to veins, A) diameter of the blood vessels gets progressively smaller. B) pressure builds. C) pressure drops. D) flow becomes turbulent. E) viscosity increases. Beadle and Tatum used which of the following organisms to support their one gene - one enzyme concept?a. escherichia colib. drosophilac. neurosporad. salmonellae. homo sapien In the AD partnership, Allen's capital is $140,000 and Daniel's is $40,000 and they share income in a 3:1 ratio, respectively. They decide to admit David to the partnership. Each of the following questions is independent of the others. Refer to the information provided above. David directly purchases a one-fifth interest by paying Allen $34,000 and Daniel $10,000. The land account is increased before David is admitted. By what amount is the land account increased? A. $40,000 B. $10,000 C. $36,000 D. $20,000 Solve for n.1/2n+3/4n=1/2 CAN SOMEONE HELP ME ?How did Hitlers rule in Nazi Germany exemplify totalitarian rule?Be sure to explain the characteristics of totalitarian rule, and to what extent this type of government was seen in Nazi Germany. Use evidence from at least five documents in your essay. Support your response with relevant facts, examples, and details. When a parent uses the partial equity method throughout the year to account for its 80% investment in an acquired subsidiary, which of the following statements is true at the date immediately preceding the date on which adjustments are made on the consolidated worksheet?A) Parent company net income equals consolidated net income.B) Parent company retained earnings equals consolidated retained earnings.C) Parent company total assets equals consolidated total assets.D) Parent company dividends equal consolidated dividends.E) Goodwill is recorded on the parent's books. An infant ibuprofen suspension contains 100 mg/5.0mL suspension. The recommended dose is 10 mg/kg body weight.How many milliliters of this suspension should be given to an infant weighing 15 lb ? (Assume two significant figures.) During 2015, Blevert Co. introduced a new line of machines that carry a three-year warranty against manufacturer's defects. Based on industry experience, warranty costs are estimated at 1% of sales in the year of sale, 3% in the year after sale, and 5% in the second year after sale. Sales and actual warranty expenditures for the first three-year period were as follows:Sales Actual Warranty Expenditures2015 $500,000 $6,0002016 1,500,000 25,0002017 2,000,000 105,000$4,000,000 $136,000What amount should Blevert report as a liability at December 31, 2017? How long would it take for a car to travel 200km if it has an aventage speed of 55 km/ hr I need help with basic geometry. Select all the statements that apply to this figure. Please HELp A 50-V de voltage source was connected in series with a resistor and capacitor. Calculate the current in A to two significant figures) after 5.0 s if the resistance was 25 M and the capacitance 0.10F. Regina has been growing sunflowers in her backyard so she can harvest their seeds. The sunflowers are all growing in the same type of soil and receive the same amount of sunlight. Regina has also provided them all with the same amount of water. So far, the sunflowers have all grown the same amount.Regina's grandfather comes to visit, and he tells Regina that the flowers will produce more seeds if she gives the flowers Fertilizer X. Regina would like to try the fertilizer, but it is very expensive. She decides to test the fertilizer in a scientific investigation before purchasing enough for all of the sunflowers.Which of the following questions can Regina answer through a scientific investigation in order to test her grandfather's claim? A. Will Regina's grandfather be upset if she uses a cheaper fertilizer that works as well as Fertilizer X? B. Will providing sunflowers with Fertilizer X cause the flowers to produce more seeds? C. Will providing sunflowers with Fertilizer X result in more attractive flowers? D. Would it be wiser to use Fertilizer X on vegetable plants since it is so expensive? You are given a protein solution with a concentration of 0.15 mg/ml.v. Suppose that we want to prepare 100 microliters of 0.1 micrograms/microliters solution. How much of H2O and protein stock do we need to add to obtain the target concentration and volume? Which of the following statements is true? Select all that applyA. Hyper texts are the same as hyperlinksB. Hypertexts contain hyperlinksC. Hyperlinks are a kind of labyrinth D. Hyperlinks connect web pages A company had inventory on November 1 of 5 units at a cost of $25 each. On November 2, they purchased 15 units at $27 each. On November 6 they purchased 11 units at $30 each. On November 8, 12 units were sold for $60 each. Using the LIFO perpetual inventory method, what was the value of the inventory on November 8 after the sale?