True or False: Nanomemory applies to computers.

Answers

Answer 1

Answer:

True

Explanation:

The Huawei developed Nanomemory Card (used for phones) can also be used for computers. A nanomemory card is just like an SD card, it provides you with extra storage space. Computer memory is also measured in nanomemory, so it can be used. Therefore, the answer to the question is True.

Best of Luck!


Related Questions

Write a program, which will display the menu with 5 items. It will ask the use to give their choice. It will trap all possible errors and then print the result when correct input is provided before exiting the program.

Answers

Answer:

The program in Python is as follows:

print("Welcome to sorting program")

print("1. Title")

print("2. Rank")

print("3. Date")

print("4. Start")

print("5. Likes")

while(True):

   choice = input("Enter a choice between 1 and 5 only: ")

   if choice.isdigit() == True:

       if(int(choice)>=1 and int(choice)<=5):

           print("You entered valid choice", choice)

           break;

       else:

           print("You have not entered a number between 1 and 5. Try again")

   else:

       print("You entered an invalid choice")

Explanation:

This prints the header

print("Welcome to sorting program")

The next 5 lines print the instructions

print("1. Title")

print("2. Rank")

print("3. Date")

print("4. Start")

print("5. Likes")

The loop is repeated until it is forcefully exited

while(True):

This prompts the user to enter a choice

   choice = input("Enter a choice between 1 and 5 only: ")

This checks if the choice is a digit

   if choice.isdigit() == True:

If yes, this checks if the choice is between 1 and 5 (inclusive)

       if(int(choice)>=1 and int(choice)<=5):

If yes, this prints valid choice and the choice entered

           print("You entered valid choice", choice)

The loop is exited

           break;

If the choice is out of range

       else:

This prints the error and tells the user to try again

           print("You have not entered a number between 1 and 5. Try again")

If choice is not a digit

   else:

This prints invalid choice

       print("You entered an invalid choice")

takes the perspective that a program describes what the solution to a problem is, not how that problem is solved. Select one: a. Interpretive programming b. Resolution c. Declarative programming d. Unification

Answers

Answer:

c. Declarative programming

Explanation:

Software development life cycle (SDLC) can be defined as a strategic process or methodology that defines the key steps or stages for creating and implementing high quality software applications.

Some of the models used in the software development life cycle (SDLC) are;

I. A waterfall model.

II. An incremental model.

III. A spiral model.

In Computer programming, when a software program or application describes what the solution to a problem is but without highlighting (describing) how that problem is solved, it is generally referred to as declarative programming. Thus, it takes the perspective that software developers (programmers) define what needs to be accomplished by a software program or application to solve a problem without defining how that problem is solved.

If a program compiles fine, but it produces an incorrect result, then the program suffers from _______________.

Answers

In my answer I am making an assumption that there is no runtime error, if there is then the error is “a run-time error”.

The answer is the program suffers from a Logic Error

If a program compiles fine, but it produces an incorrect result, then the program suffers from Logic Error.

What is program?

A program has been the set of the instructions that the computer can follow that are written in a programming language. The size of the computer program affects the likelihood that an error may occur. To create an executable that a computer can run, a C program needs to be run through a C compiler. Programs are collections of instructions that a computer follows. Function is an ordered, reusable code unit.

When a program is syntactically sound but has a bug that is only discovered during program execution, it is said to have a runtime error. The Java compiler is unable to catch these errors during compilation; instead, the Java Virtual Machine (JVM) only notices them when the application is running. Runtime problems may occur when a website uses HTML code that is incompatible with a web browser's capabilities.

Therefore, if a program compiles fine, but it terminates abnormally at runtime, then the program suffers a runtime error.

To learn more about program, refer to the link below:

brainly.com/question/11023419

#SPJ2

What type of value are stored within a pointer type? Group of answer choices a character value. a integer value, which represents the address. a string value, which represnts the address. a decimal (float), which represents the address.

Answers

Answer:

an integer value, which represents the address.

Explanation:

In Computer programming, a variable can be defined as a placeholder or container for holding a piece of information that can be modified or edited.

Basically, a variable stores information which is passed from the location of the method call directly to the method that is called by the program.

In C programming, a pointer can be defined as a memory location where data reside or are stored. Thus, it's a variable that is typically used for storing the memory address of other variables. There are different types of pointers and these includes; void pointer, null pointer, near pointer, wild pointer, complex pointer, dangling pointer, far pointer, and huge pointer.

Generally, the type of value that are stored within a pointer type is an integer value (int), which represents the address. With the use of a pointer, software programmers can easily and quickly pass the address of a variable rather than pass the entire variable to a function.

Debug the recursive reverseString method, which is intended to return the input String str reversed (i.e. the same characters but in reverse order).
Use the runner class to test this method but do not write your own main method or your code will not be graded correctly.
public class U10_L2_Activity_One
{
public static String reverseString(String str)
{
if (str.length() < 0)
{
return str;
}
s = reverseString(str.substring(2)) + str.substring(0,1);
}
}
Runner's code (don't change):
import java.util.Scanner;
public class runner_U10_L2_Activity_One
{
public static void main(String[] args)
{
System.out.println("Enter string:");
Scanner scan = new Scanner(System.in);
String s = scan.nextLine();
System.out.println("Reversed String: " + U10_L2_Activity_One.reverseString(s));
}
}

Answers

Answer:

Explanation:

The following modified code correctly uses recurssion to reverse the string that was passed as a parameter to the reverseString method. A test output using the runner class can be seen in the attached image below.

import java.util.Scanner;

class U10_L2_Activity_One {

   public static String reverseString(String str) {

       if (str.isEmpty()) {

           return str;

       }

       return reverseString(str.substring(1)) + str.charAt(0);

   }

}

class runner_U10_L2_Activity_One

{

   public static void main(String[] args)

   {

       System.out.println("Enter string:");

       Scanner scan = new Scanner(System.in);

       String s = scan.nextLine();

       System.out.println("Reversed String: " + U10_L2_Activity_One.reverseString(s));

   }

}

Number are stored and transmitted inside a computer in the form of​

Answers

Number are stored and transmitted inside a computer in the form of ASCII code

Which task is suitable for a manual process? Marvin’s software requires accurate, consistent testing. Yesenia's software requires, at most, one or two tests. Ahmad's software will be tested outside normal business hours. Braelyn’s software is subject to routine testing.

Answers

Answer:

The task that is suitable for a manual process is:

Yesenia's software requires, at most, one or two tests.

Explanation:

Manual testing of software involves a tester playing the end user's role to detect defects in the software.  In such a test, the tester applies most of the features embedded in the software to ensure correct processing and output.  Since Yesenia's software requires one or two tests, there is no need to automate the testing as a manual process will be economical.

Define a member method print_all() for class PetData. Make use of the base class' print_all() method. Sample output for the given program with inputs: 'Fluffy' 5 4444 Name: Fluffy Age: 5 ID: 4444

Answers

Answer and Explanation:

Using Javascript:

Class PetData{

Constructor(name, age, id){

this.name= name;

this.age =age;

this.id = id;

}

print_all(){

return this.name+""+this.age+""+this.id;

}

}

Here we have defined class PetData with its constructor which would initialize the object/instance of the class when called, example:

Var catData = new PetData(sisi, 1, 2333);

In this exercise we have to use the knowledge of computational language in python to write the following code:

The code can be found in the attached image.

That way, to find it more easily we have the code like:

Class PetData{

Constructor(name, age, id){

this.name= name;

this.age =age;

this.id = id;

}

print_all(){

return this.name+""+this.age+""+this.id;

}

}

Var catData = new PetData(sisi, 1, 2333);

See more about JAVA at brainly.com/question/26104476

What Service is an AWS service that helps you maintain application availability and enables you to automatically add or remove EC2 instances according to conditions you define

Answers

Answer:

AWS EC2 auto scaling

Explanation:

The Amazon EC2 auto scaling is the service provided by AWS which helps one to maintain the application availability and also to enable one to automatically add as well remove the EC2 instances as per the conditions one wishes for.

One can add the EC2 or remove it manually in a combination with the AWS auto scaling for the predictive scaling of the application. We can also use dynamic and the predictive scaling features of the EC2 Auto Scaling so as to add or remove the EC2 instances

What is the page table mainly for?

Answers

Answer: See explanation

Explanation:

A page table is used for the tracking and the location of different pages of a task in memory. It helps in showing the mapping of locations between the physical addresses and the virtual addresses.

A page table stores also has the page table entries and this is where the frame numbers are stored as well as the operational status.


Importance
computer
In the
printing industry​

Answers

Answer:

restate your question

Explanation:

What is 4÷15-18×27.6​

Answers

-496.53 I hope this help(sry if it’s wrong)

You are in charge of five software development projects. The ‘characteristics’ of each of your projects are as follows:

• Project 1: Web-site for a local company. Relatively small system. Requirements are unclear and likely to change in the near future.

• Project 2: A very large embedded system whose requirements can be easily identified and are relatively stable.

• Project 3: A ‘standard’ business application. You have developed similar systems like this one in the past.

• Project 4: A relatively complex administrative system for one of the local hospitals. Some of the requirements seem to be pretty unclear, but all the requirements are stable.

• Project 5: A small real-time control system to be used for monitoring patients in a local hospital.

Consider the following software development approaches/models: waterfall, throw-away prototyping, evolutionary prototyping, component-based development, formal development. Which of the above approaches/models would you choose for each of your projects? Briefly explain your choices.

Answers

Pano po gagawen Jan?

what can the government do about the issue of human rights violations​

Answers

I actually don’t know let us run wild.

A TextLineReader is an object that can read a text file one line at a time, parsing each line and turning it into an object of some type. The reason we've implemented it as a class template is so that different TextLineReaders can transform their file into different types of objects; for example, a TextLineReader will return an int from every line, while a TextLineReader will return a Student instead. Because TextLineReader itself can't know how to transform each line from the file into the corresponding result type, a line parser function is provided, which does that transformation (i.e., takes each line's text and returns the appropriate kind of object, or throws an exception if that transformation fails because the format of the line is incorrect).Write the implementation of the TextLineReader class template. You may not change any of the public declarations that were provided, but you can add anything you'd like — including public or private member functions, private member variables, and so on — but you'll need to meet all of the following design requirements.

Answers

no one is going to answer

implementations
in c++ programming when finding lcm and gcd in c++​

Answers

Answer:

#include<iostream>

using namespace std;

int lcm(int m, int n) {

  int a;

  a = (m > n) ? m: n;

  while (true) {

     if (a % m == 0 && a % n == 0)

        return a;

        ++a;

  }

}

int gcd(int m, int n) {

  int r = 0, a, b;

  a = (m > n) ? m : n;

  b = (m < n) ? m : n;

  r = b;

  while (a % b != 0) {

     r = a % b;

     a = b;

     b = r;

  }

  return r;

}

int main(int argc, char **argv) {

  cout << "Enter the two numbers: ";

  int m, n;

  cin >> m >> n;

  cout << "The LCM of two numbers is: " << lcm(m, n) << endl;

  cout << "The GCD of two numbers is: " << gcd(m, n) << endl;  

  return 0;

}

Explanation:

sihle bought half adozen KOO canned beans from a wholesale.how many cans did she get?​

Answers

Step 1: Divide 12 by 2(Since there is 12 in every dozen, half of 12 is 6)
12/2 = 6
Sihle will get 6 cans of beans from the wholesale.


Explain the function of different flags in the 8086

Answers

Answer:

A flag is a piece of fabric (most often rectangular or quadrilateral) with a distinctive design and colours. It is used as a symbol, a signalling device, or for decoration.8086 has 16-bit flag register, and there are 9 valid flag bits.The FLAGS register is the status register in Intel x86 microprocessors that contains the current state of the processor. This register is 16 bits wide. Its successors, the EFLAGS and RFLAGS registers, are 32 bits and 64 bits wide, respectively. The wider registers retain compatibility with their smaller predecessors.

What is E-Commerce? Answer The Following. Pls Help Me​

Answers

Answer: Ecommerce, also known as electronic commerce or internet commerce, refers to the buying and selling of goods or services using the internet, and the transfer of money and data to execute these transactions.

Explanation: Brainelist Me :)

Suppose there is exactly one packet switch between a sending user and a receiving user. The transmission rates between the sending user and the switch and between the switch and the receiving user are R1 and R2, respectively. Assuming that the switch uses store-and-forward packet switching, what is the

Answers

Answer: Hello your question lacks some data below is the missing data

what is the total end-to-end delay to send a packet of length L? (Ignore queuing, propagation, and processing delay) extend to N-1 packet switches interconnected by N links with rates R1, R2, …, RN

answer:

L/R1 + L/R2

Explanation:

The sending host will begin to transmit at to

At ( t1 = L/R1 ) the entire packet will be received at the router because at this time the sending host will complete the transmission process  to the router.( No propagation delay )

At ( t2 = L/R2 ) the router completes transmission of the entire packet to the receiving host ( note : The transmission of the packet to the receiving host by the router starts at t1 hence No propagation delay is recorded. )

What is the biggest problem with technology today?

Answers

Answer:

Employee productivity measurements and too mich focus on automation.

Write a C# program named DoubleDecimalTest thatdeclares and displays two variables - a double and a decimal.Experiment by assigning the same constant value to each variable sothat the assignment to the double is legal but the assignment tothe decimal is not. In other words, when you leave the decimalassignment statement in the program, an error message should begenerated that indicates the value is outside the range of the typedecimal, but when you comment out the decimal assignment and itsoutput statement, the program should compile correctly.

Answers

Answer:

whatt is this na ni??

Explanation:

please helpppppppppp​

Answers

Answer:

111001 - 57

1100000 - 96

1010101 - 85

1001000 - 72

:)

Discuss five processes for analyzing a qualitative study

Answers

1. Prepare and organize your data.

Print out your transcripts, gather your notes, documents, or other materials. Mark the source, any demographics you may have collected, or any other information that will help you analyze your data.

2. Review and explore the data.

This will require you to read your data, probably several times, to get a sense of what it contains. You may want to keep notes about your thoughts, ideas, or any questions you have.

3. Create initial codes.

Use highlighters, notes in the margins, sticky pads, concept maps, or anything else that helps you to connect with your data. See the attached document that demonstrates how one might highlight key words and phrases as well as make notes in the margins to categorize the data:

4. Review those codes and revise or combine into themes.

Identify recurring themes, language, opinions, and beliefs.

5. Present themes in a cohesive manner.

Consider your audience, the purpose of the study, and what content should be included to best tell the story of your data.

Hope this helped you!!!

Answer:

Prepare and organize your data. Print out your transcripts, gather your notes, documents, or other materials.

Review and explore the data.

Create initial codes.

Review those codes and revise or combine into themes.

Present themes in a cohesive manner.

True or false altering iso will affect the area of focus in a photo

Answers

True. Because it’s changing the sensitivities in different areas, causing the resulting photos to be focused in different areas.

mention five features on the desktop screen​

Answers

Answer:

The Windows desktop has the following program access points:

Work area. The onscreen area where users can perform their work, as well as store programs, documents, and their shortcuts. ...

Start button. ...

Quick Launch. ...

Taskbar. ...

Deskbands. ...

Notification area.

Explanation:

What is the ls option to list entries by lines instead of by columns?​

Answers

Sometimes I just meet some Unintelligen ppl

With the GIS moving into the cloud, developers of enterprise applications based on SAP, Microsoft Office, SharePoint, MicroStrategy, IBM Cognos, and Microsoft Dynamics CRM are not using it to create a wide range of mobile applications.
a. True
b. False

Answers

Answer:

):

Explanation:

The C++ standard library provides code that’s organized into a. folders b. namespaces c. sublibraries d. none of the above

Answers

Answer:

Namespaces ( B )

Explanation:

The codes in the C++ standard library are organized into folders Known as  namespaces .

namespaces are general used to organize various codes into logical groups to avoid name collisions that may occur when there is the presence of multiple libraries in a code base.

Write a C++ program which accepts the quantity of a product purchased and prints the amount to be paid by the customer.​

Answers

Answer:

firstly the exel program is very useful to costumer or to calculate by Microsoft. People use it to company or office. It works for make good commination

Other Questions
Question in Image answer with explanation please added 20 points On the interval (r, 7), at which x-value is the average rate of change 56?34566712242896192ResetNext21 Edmentum. All rights reserved. SATELLITE DISH Suppose the receiver in a parabolic dish antenna is 2 feetfrom the vertex and is located at the focus. Assume that the vertex is at theorigin and that the dish is pointed upward. Find an equation that models across section of the dish.a. x2 = -8yb. x2 = 2yc. x2 = 8yd. y2 = 8x A solution that is able to dissolve additional solute is best described asA. supersaturatedB. saturatedC. concentratedunsaturated I need help QUICK!! 20 pointsWhich of the following is/are formed as gravity pulls increasing amounts of dust and debris in a nebula together?a. the solar windb. meteorsc. planetesimalsd. meteorites What process takes place at the boundary between the capillaries and the alveoli?AIRBronchioleAlveollSmall bloodvessels (capillaries)A. An exchange of blood and lymph between the circulatory andlymphatic systemsB. An exchange of oxygen and carbon dioxide between thecirculatory and respiratory systemsC. Reabsorption of water into the circulatory system from theexcretory systemD. An exchange of air between the circulatory and respiratorysystems Part A: The area of a square is (9x2 12x + 4) square units. Determine the length of each side of the square by factoring the area expression completely. Show your work. (5 points)Part B: The area of a rectangle is (25x2 16y2) square units. Determine the dimensions of the rectangle by factoring the area expression completely. Show your work. (5 points) Given the right triangle below, if AB = 4 and BC = 4, find AC. HELP WILL MARK BRAINLIEST, i took this mastery test for plato and alliteration and personification were correct but it said that not all correct answers were selected does anyone know the rest? Which figures of speech appear in this excerpt from John Keatss Ode to Autumn?Who hath not seen thee oft amid thy store?Sometimes whoever seeks abroad may findThee sitting careless on a granary floor,Thy hair soft-lifted by the winnowing wind;similepersonificationalliterationallusionapostrophe Mrs. Townsend had 29 feet of fabric. Mrs. Greensmith works a PC Richards and earns $35 per week plus a 12% commission o sales. How much would she earn for the week if her sales for the week was $1,750? Please help :) Write the basic and simplified form of energy system in the atmosphere The part of an HTML document where the CSS file is linked is the..?A) bodyB) footerC) headerD) paragraph What best describes the sentence difference between Martin Luther King Jr. and Malcolm X was that Martin Luther King Jr. believed inusing violence to achieve equality.integrating whites and African Americans.forming a separate African American nation.seeking African American independence. Austin picks 14 apples from the tree in his backyard. He gives his grandmother 6 apples to make a pie. Which number sentence shows how many apples Austin has left An animal shelter has three kinds of Labrador Retrievers: yellow, brown, and black. They haveboth male and fomae in all of the colors. What is the probability of picking a female yellow LabradorRetriever? As a result of the Battle of Little Bighorn a the conflict between the U.S. army and the Sioux came to a peaceful end. b the government signed another Treaty of Fort Laramie in 1868, abandoning the Bozeman Trail and guaranteeing the Sioux their lands. c the government adopted a policy of civilizing the Indians rather than trying to conquer them. d the government sent extensive military reinforcements to the Dakotas and Montana. e white settlers agreed to halt their expansion beyond the 100th meridian Please help me. I will give brainless. Put the following words in order from SMALLEST to LARGESTTissue, Organelle, Organ System, Cell, Organism, Organ