How do we store value in a variable? Give an example

How do we use the value in variable? Give an example

Answers

Answer 1

Answer:

hi

Explanation:

im not smart


Related Questions

Why Artificial intelligence is a risk to a human being ? ​
please answer fast

Answers

Answer:

Artificial intelligence is the intelligence or logical reasoning exhibited by artificial devices, as opposed to natural intelligence exhibited by humans and animals.

The main threat that artificial intelligence poses to humans is not, as many fantasize, the possibility of a future apocalyptic scenario; but the very limitation that artificial intelligence makes to human intelligence: each time the human atrophies his capacities more, since he relies on artificial intelligence processes instead of using his own. A clear example is the GPS, where the human no longer has to exercise his memory to know a path, but simply depends on what the map tells him in his car.

can anyone unscramble this words

Answers

Answer: The one that is gtenemamna might be management

Explanation: this is impossible but this is my best guess.

Write a program that uses an initializer list to store the following set of numbers in an array named nums. Then, print the array. 14 36 31 -2 11 -6 Sample Run [14, 36, 31, -2, 11, -6] (In edhesive please)

Answers

Answer:

nums=[14, 36, 31, -2, 11, -6]

print(nums)

Explanation:

I got a 100%

Answer:

In C++:

#include <iostream>

using namespace std;

int main(){

    int nums[6] = {14, 36, 31, -2, 11, -6};

    cout<<"[";

    for(int i = 0;i<6;i++){

    cout<<nums[i];

    if(i != 5){cout<<", ";}

    }

    cout<<"]";

   return 0;

}

Explanation:

This initializes the array

    int nums[6] = {14, 36, 31, -2, 11, -6};

This prints the opening square bracket

    cout<<"[";

This iterates through the array

    for(int i = 0;i<6;i++){

This prints individual elements of the array

    cout<<nums[i];

Until the last index, this line prints comma after individual array elements

    if(i != 5){cout<<", ";}

    }

This prints the closing square bracket

    cout<<"]";

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".

Which feature is used to change how a presentation moves from slide to slide?

Answers

Answer:

Click Slide Sorter on the View menu. On the Window menu, click Arrange All to display both presentations. Click the slide you want to move, and drag it to the other presentation. If you want to copy the slide across then hold down Ctrl as you drag the slide.

Explanation:

The variable myFirstName needs to store a user's first name. What data type should it be
initiated as?

Answers

Answer:

In terms of the data type it would most likely be a String and not a Boolean and or a Number.

What is abacus. List it's features in points.​

Answers

Answer:

An abacus is a manual aid to calculating that consists of beads or disks that can be moved up and down on a series of sticks or strings within a usually wooden frame. The abacus itself doesn't calculate; it's simply a device for helping a human being to calculate by remembering what has been counted.

Explanation:

What actions can you take to ensure the physical security of network devices?

Answers

Answer:

Here are some steps you can take to make sure your network is secure:

Take physical precautions. ...

Make sure all of your server's security features are enabled. ...

Use both hardware and software firewalls. ...

Install the latest version of your server's software. ...

Guard passwords. ...

Be Wi-Fi savvy.

Explanation:

PLEASE MARK ME AS BRAINLIEST

if i want a word to be keyed in all capital letters, which is the correct proofreader's mark?

Answers

----
----
---
Three lines under a lowercase letter mean to make it a capital.

what role does javascript play in a web page

Answers

Answer:

Js is an programming language usually used for coding. It is used on most browsers to produce an effective and interactive design for some users.

help ......... pleaseeeee

Answers

Answer:

Follows are the solution to this question:

Explanation:

Transport layer:

In the OSI model, this layer lies on the 4th part, which primary function is to directly supply the network connectivity to applications mostly on various hosts.

It provides end-to-end communication over a network and also allows you to send and receive error-free data in the form of data packets that enhanced your privacy.

Flow control and Error control:

The flow control is only used to send or receive information transmission only, while Error control is used designed for error-free communication for both (sender or receiver).

Layer related to the data link layer:

It must be done at different layers on both layers like node-to-node connections, the communicative needs are controlled by flow and error. Flow and error control in the transport layer is done from endpoint to endpoint.

PLS HELP ILL GIVE BRAINLY- (enter the answer) Microsoft _________ is an example of a desktop publishing software

Answers

Answer:

word fffffffffffffffffffffff

Excel should be correct
Sorry if wrong

How has communication benefitted from Internet use? (choose all that apply)
a. People write to one another.
b. People are more able to easily and quickly communicate with one another.
c. No one communicates online.
d. People communicate across long distances in real time.

Answers

Answer:

B and d

Explanation:

Got it right on edg.

Answer: b and d

Explanation:

got a 100

FIRST PERSON GETS BRAINLIEST!!!!!!!!!!!!!!!!!!!!!!!!
Why did Jean get an error when he tried to use the variable my Grade? Variables should be one word. Variables should start with a number. Variables should always be camelcase. Variables should not have spaces.

Answers

Answer:

Variables should not have spaces

Explanation:

When you have a multi-word variable, it is convention to leave the first word lowecase  and make the first letter of the next words capital. However, mostly every programming language does not allow primitive variables with spaces.

ex: myWordVariable = 5

Answer:

variables should not have spaces.

Explanation:

It is basic knowledge that variables should not have spaces also its listed in the lesson page if you are using flvs of stuff to not use in variables. also you  never use any of python keywords

Never name a variable with any of python’s keywords  

Python Keywords    

False  

None  

True  

and  

as  

assert  

break  

class  

continue  

def  

del  

elif  

else  

except  

finally  

for  

from  

global  

if  

import  

in  

is  

while  

try  

or  

pass  

print    

return    

with    

Global  

Every finger has a key it should be resting on when you are not typing
1. False
2. True

Answers

Answer:

true.

Explanation:

your point fingers should always be

your left should rest on F

your right should rest on J

the anwser is true!

Which of the following describe audio-editing software? Choose all that apply.

syncs audio with video

is used only by professionals

modifies analog sound

modifies sound quality

mixes sound

Answers

Answer:

1,4,5

Explanation:

This is the question

Answers

Answer:

I dont know it sorry

Explanation:

i would help u

2) What are two reasons we analyze algorithms?
a) make decisions about what algorithms to use
b) ease of coding
c) sorting data
d) predict performance

Answers

It’s a making sections about what algorithms to use

Answer:

Make decisions about what algorithms to use

Explanation:

How many times would the for loop below execute if variable times = 9 % 2?

for (int x=times; x <=times; x++) ?

1
0
2
3

Answers

Answer:

1

Explanation:

9 % 2 = 1

So x = 1

It will execute once

A piece of hardware used to enter data into a computer: Output Device Backing Storage Device Programming language Input Device

Answers

Answer:

Input Device.

Explanation:

A piece of hardware used to enter data into a computer is known as an input device.

Basically, this input device is also known as peripherals and it comprises of all of the devices that are interconnected with the CPU. Some examples of input devices used with a computer includes keyboards, scanner, mouse, etc. They avail the end users the ability to send an information to the computer system for processing into a desired output.

Help please not trying to fail

Answers

Answer:

B. Everywhere CFCI is not

In the scenario below, decide whether you should upgrade the computer or replace it. You’ve been working on your existing laptop computer for 3 years. It seems to be running just fine except for the times that you need to run video-editing software for your film hobby. Plus, there is a new program that your friends are using for their video editing, and you think it is pretty cool, but it might not run on your laptop. What should you do?

Answers

Answer:

Replace

Explanation:

Since the laptop is already 3 years old and you cant just open laptops it wuld be better to just replace

Answer:

B. Replace

Explanation:

When you been working on the laptop for three years it probably won't work so you'll need to replace the old laptop with a new laptop. But if the laptop still works over that three years you can still replace it if you want.

I hope this helps. <3

Have a nice day.<3

How would you design an adaptive environment for people who are blind?

Answers

Answer:

I would make more things accessible to blind people. Such as having more binding stuff everywhere for the blind people to trace their finger over so they know what their reading. I would also find people to assist blind people so they don't run into things.

Using the drop-down menus, choose the correct term for each description or sentence.
The main storage device inside a computer where programs and files are saved is called
the
The process of getting instructions from RAM, decoding, executing, and then storing is a process
known as the
FireWire, Ethernet, modem, and USB are all examples of
0101010 is an example of

Answers

Answer:

There is no drop-down menu in your question

Hard driveMachine cyclePortsBinary Number

Explanation:

1.) The main storage device inside a computer where programs and files are saved is called hard drive.

2.) The process of getting instructions from RAM, decoding, executing, and then storing is a process known as Machine Cycle.

3.) FireWire, Ethernet, modem, and USB are all examples of ports.

4.) 0101010 is an example of a binary number.

Answer:

Using the drop-down menus, choose the correct term for each description or sentence.

The main storage device inside a computer where programs and files are saved is called the hardriveThe process of getting instructions from RAM, decoding, executing, and then storing is a process  known as the machine cycleFireWire, Ethernet, modem, and USB are all examples of ports.0101010 is an example of binary

here are also the answers to the next questions:

Using the drop-down menus, choose the correct term for each description or sentence.

A display or monitor with a larger number of  ✔ pixels  will have a clearer, more brilliant resolution.The more  ✔ bytes a thumb drive has, the more storage capability it will provide.The more  ✔ hertz  a microprocessor or CPU has, the faster it will process data.A computer’s speed is measured in ✔ hertz , and a computer’s internal memory  capacity is measured in  ✔ bytes .

Complete each sentence by choosing the correct answer from the drop-down menus.

The  ✔ USB port would not be found inside the system unit.A very fast port used for audio/video output is called ✔ FireWire .A very high-speed network connection port is called  ✔ Ethernet .USB stands for ✔ Universal Serial Bus .

Hope it helps.

Explanation:

Read through the following scenario, and then decide which computer is the best fit.

Answers

Answer:

gaming pc?

Explanation:

i dont know why you have this question kinda weird but entertainment pc or gaming pc sounds right

Answer:

B. Gaming or media production computer

Explanation:

Gaming or media production computer is the best computer you'll need because if you don't have the best computer it probably won't work on you. But if you the gaming or media production computer it will work on you.

I hope this helps.<3

Have a nice day.<3

The first photo in the collage is what I should make a copy of, anyone has any knowledge on how to add the numbers apart of the spreadsheet and the letters? ​

Answers

Pick the cell that you want the combined data to be in.
Type the formula, with double quotes within the file. For instance: ="Due in "&A3 &" days"
NOTE: End or begin the text string with a space to separate the text strings from the numbers.
To complete the formula, press Enter

Enter a formula in cell G5 that divides the sum of cells C5 through F5 by cell B5. Write the formula so that when you copy it to cells G6:G7, Excel adjusts all the cell references according to the destination cells. Verify your formula by checking it against the values found in cells G5, G6, and G7

Answers

Answer:

=SUM(C5:F5/B5)

Explanation:

The sum of C5:F5 divided by B5

What are the steps to debugging?

Answers

Answer:

The basic steps in debugging are:

Recognize that a bug exists.

Isolate the source of the bug.

Identify the cause of the bug.

Determine a fix for the bug.

Apply the fix and test it.

Practicing touch typing allows you to create documents efficiently and accurately.

True or false

Answers

I think the answer to this would be true

Example of Not a computer characteristics example

Answers

Answer:

A book

A non electronic

Explanation:

Other Questions
1. Ultimately, is Hydraulic Fracturing socially responsible? Does Marginal Social Benefit (MSB) =Marginal Social Cost (MSC)? Explain your answer with details from your reading. What are some things you can do to be an active listener? PLS I NEED HELP I ONLY HAVE 15 MINS I BEG YOU PLEASE!! :( In the year 1984 the average American used to eat 55.7 pounds of chicken. This was 2.8 pounds more than the the year 1982 average. By what percent did chicken consumption increase from the year 1982 to the year 1984? What is the diameter in inches of a circle that has an area of 81 a b c or d for what is the square root of 36 I need help on this.. Solve for b.54 = 36 9b The Kansas-Nebraska Act created the...-states of Kansas and Nebraska.-territories of Kansas and Nebraska.-constitutions of Kansas and Nebraska.-Indian territory in Kansas and Nebraska. Sailors safely arrived at ports because they learned to track the location of the star named PLEASE HELP ILL GIVE BRAINLIEST AND 5 STARS AND THANKS!!!!! 60 POINTS!!!!1) y= 2 x- 4 find parallel line through this point (-4,7)2) y= -6x find parallel line through this point ( 4,9)3) y= - x +3 find the perpendicular through this point ( 0,8)4) y= - x find the perpendicular through this point (-2,1) Read the passage.Throughout his childhood, James had heard rumors about the old man who lived across the street, Mr. Gray. As a joke, the kids in the neighborhood would ring his doorbell, then hide behind the bushes and gleefully snicker at him when he answered and found no one there.One evening last summer, James saw Mr. Gray standing outside on his porch. His clothes were wrinkled and his hat was torn. The neighborhood kids claimed that he had been kidnapped by spies after inventing a secret radar device. For a moment, the old man met Jimmys stare, and time seemed to stand still.Concentrating on the overall structure of the draft, which best improves the draft?A. Open the story with a description of Mr. Gray standing on this porch.B. Move the information about what the neighborhood kids say about Mr. Gray up earlier in the story.C. Eliminate the last sentence of the story because it does not apply to the rest of the story.D. Move the first sentence about the rumors James heard to the end of the story. Ciara is constructing a tangent line from a point outside the circle as shown. image Which of the following BEST describes the actions that should be in Step 2? A. Construct another circle centered about point B. B. Place point C on the circle and construct a line connecting points B and C. C. Construct the perpendicular bisector of line AB. D. Place point C on the circle and construct the angle bisector of ABC. giving Brainly to correct answer (im doing timed test please hurry) write the algebraic expression: The difference of 5 times a number and 11 is 17 For the following elements (Group 1A), Li, Na, K, Rb), which atom is larger overall? PLEASE HELP ME ASAP?!?!Find the length of the missing side. Simplify all radicals. please show explanation! although the reign of terror ended the french revolution, why were many people ok with this A 4-pack of corn dogs costs $3.00. What is the unit price?per corn dog help!! who was the executive order 9066 meant for ? Dogs and shrews are both members of this class:O carnivoraO mammaliaO chordataO canidae