What is 01101010 in Denary?
PLEASE ANSWER I WILL GIVE U BRAINILEST !!!

Answers

Answer 1

Answer:

Binary 01101010 = 106

Explanation:

Answer 2

Answer:139

Explanation:

brain


Related Questions

Darren built a tower out of 23 toy blocks. each block has a mass of 7grams. what is the mass of the whole tower?​

Answers

Answer:

161 grams

Explanation:

What do you type in the “subject” box

(A)The title of your email/summary of what you need

(B) The persons name you are sending an email to

(C) The question you are asking

I will mark brainliest

Answers

Answer:

the correct answer is: (A) The title/summary of what you need.

Explanation:

The subject is what the receiver see's when going across the email. Putting the summary of what the email is about in subject allows them to see what the email is mainly about seeing if they should continue reading the email or not. So providing the summary pf the email lets the receiver know what the email is about. Hope this helps! :D

You learned that you can use the tags to insert a link to another webpage. One problem that webpage developers face is that, after a time, links may no longer work. Can you think of ways that you can avoid broken links?

Answers

Answer:Image Control

We can use the height and width properties to control the size of our image. Let’s say we only want the recipe image to take up approximately one-third of the page. Do you remember from math class what percentage one-third is? Type in the following CSS rule, and watch your picture change size before your very eyes!

img {

   height:33%;

   width:33%;

}

That wasn’t too difficult, right? Let’s make the image stand out a bit more by adding a border. Inside the img rule, add the following declarations:

border-style:dashed;

border-width: 5px;

Your picture should now have a dashed border around it that is five pixels in width. Play around with the different border styles that are available. You should see a drop-down box of choices, including dotted, dashed, double, groove, inset, and outset. You can also adjust the width of your border. Using your informative guessing skills, can you predict what property you might use to change the color of the border? Try it and see if you’re right!

Explanation:

 this is a direct quote from my lesson

Color codes are stored as:


A) int
B) float
C) dec
D) Strings

Answers

Answer:

the correct answer is Strings, have a great evening yall

Explanation:

What are the missing whole numbers on this number line? Enter your answers in the boxes. plz show work I'm I need answer 3rd grade​

Answers

1 3 and 4... you are just counting up from 0

Which is the hanging indent on the ruler?



A
B
C
D

Answers

My question needs to put 20 character long but the answer is C

bob has 2 candy bars he is fat what hapennes

Answers

Answer:

he eats The candy Bar

Explanation:

I think cause As You told he is fat He might like sugary items

Answer:

It is thought that some people are destined to gain weight because they have inherited “fat genes” from their parents. There can be no doubt that people vary in their genetic makeup and some people are inclined, because of genetic reasons, to become tall, or broad-shouldered, or squat, or fat.

Explanation:

it also has to do that your digest system do not digest it fast enough

You have been given an assignment to create a webpage that has a calming effect on the viewer. Which of these is most likely to achieve that goal?A.multiple font sizes B.a textured background C.rotating elements D.use of blues and greens

Answers

Answer:

The answer should be D.

Explanation: Cool colors make someone feel calm,mainly blue and green

Answer:

“Use of blues and greens”

Explanation:

Reading (BCK FORM 2C IT 2020-2021)
Hi Sheneille, when you submit this form, the owner will be able to see your name and email address.
1. It are a gud idear to deliberatli type sum errurs so wee can sea ow the spellcherker
werks When the spelling checker encounters a word it doesn't recognize it determir
which words in its dictionary are similarly spelled and displays a list of those words
the most likely match highlighted The contents of the list determined only by spellir
any instances of terms that seem inapropriate in context are completely coincedent
You might have to ecide on the right anser
the carpenter indcated that he did not no that the materals was already pur
you advise him! This situation prevented him form bilding the shelfs last we
4 days left in the month; it is unlikely that he will be able to compleet the tw
time for the store opening? Should we arrange to get a new carpenter that i
in Kingstown. Please let me no as soon as posible, as I will need to advice t
request there permision!
Thank you very much fo yo telephone call 2day we r in-deed glad 2 here tha
utain during the y
fell​

Answers

Answer:

Use grammarly

Explanation:

Answer:

It is a good idea to deliberately type sum errors so we can see how the spellchecker  works. When the spellchecker encounters a word it doesn't recognize the correct spelling or words in its dictionary that are similarly spelled and displays a list of those words . The most likely match highlighted, the contents of the list determined only by spelling.  

Any instances of terms that seem inappropriate in context are completely coincidental

You might have to decide on the right answer.

The carpenter indicated that he did not know that the materials were already perfect,  so you advise him. This situation prevented him form building the shelves last week.  Four days left in the month, it is unlikely that he will be able to complete the work.

Time for the store opening. Should we arrange to get a new carpenter that I had looked into in Kingstown? Please let me no as soon as possible, as I will need to request there permission!

Thank you very much for your phone call today we are in-deed glad to here that  you would like some help.

Explanation:

uh- I have no idea what this is and I had so much trouble trying to figure this out...

Even though data travels at the speed of light, networks can be slow. What affects the download speed of the network? Check all of the boxes that apply.

Answers

Answer:

bandwidth and internet connection

Explanation:

Answer: bandwidth and internet connection

Explanation:

Write a program that takes three numbers as input from the user, and prints the largest.

Sample Run
Enter a number: 20
Enter a number: 50
Enter a number: 5

Largest: 50

Answers

Answer:

In Python:

n1 = int(input("Enter a number: "))

n2 = int(input("Enter a number: "))

n3 = int(input("Enter a number: "))

if n1 >= n2 and n1 >= n3:

   print("Largest: "+str(n1))

elif n2 >= n1 and n2 >= n3:

   print("Largest: "+str(n2))

else:

   print("Largest: "+str(n3))

Explanation:

The next three lines get three numbers from the user

n1 = int(input("Enter a number: "))

n2 = int(input("Enter a number: "))

n3 = int(input("Enter a number: "))

This checks if the first number is greater than the other two. If yes, the first number is printed as the largest

if n1 >= n2 and n1 >= n3:

   print("Largest: "+str(n1))

This checks if the second number is greater than the other two. If yes, the second number is printed as the largest

elif n2 >= n1 and n2 >= n3:

   print("Largest: "+str(n2))

This prints the third number as the largest, if the other two conditions fail

else:

   print("Largest: "+str(n3))

Answer:

x=int(input("Enter a number: "))

y=int(input("Enter a number: "))

z=int(input("Enter a number: "))

print("Largest: "+ str(max(x,y,z)))

Explanation:

Got it right and I hope this helps :)


Nano technology uses include...
A: Tennis racquets (high strength to weight)
B: Self-cleaning fabrics
C. Antibacterial fabrics
D: All of the above

Answers

The answer is c. Antibacterial fabrics

Which of the following statements are true about file naming conventions? Check all of the boxes that apply.

Answers

Answer:

They increase the likelihood of finding files in the future.

They help others identify files.

The true statements about file naming conventions are that they increase the likelihood of finding the filing in the future and help others find the files.

What are the naming conventions for files?

The file naming conventions is determined as the proposal for denominating any files in such a manner that it traces what they comprise and how they associate to another data files or records.

The file naming conventions increase the likelihood of finding the file in the future and also assist others in finding the files.

Therefore, the correct options are A and C.

Learn more about the naming conventions, refer to:

https://brainly.com/question/9070060

#SPJ2

How is net pay different from gross pay?

Answers

Net pay is your gross pay reduced by any state and federal taxes.

What are the differences between linear algorithm and iterative algorithm

Answers

Answer:

For example Tower of Hannoi algorithm is made easy by recursion while iterations are widely used, efficient and popular. Recursive vs Iterative Algorithms: Approach: In recursive approach, the function calls itself until the condition is met, whereas, in iterative approach, a function repeats until the condition fails.

Keira is creating an app for her cross-country team. Users will input their race times and the output will be a graph showing their progress.

Which Python module should Keira use to draw a line on the screen?

Design Graphics
Graphics Module
Math Module
Turtle Graphics

Answers

Answer:

Design Graphics

Explanation:

One benefit of open source software is that it

Answers

Answer:B

Explanation:

Which layer in the Transmission Control Protocol/Internet Protocol (TCP/IP) model is responsible for delivering data between two nodes?

Answers

Answer:

Network.

Explanation:

The Transmission Control Protocol/Internet Protocol (TCP/IP) model is a standard networking protocol which allows network devices such as routers, switches, and host computers to interconnect and communicate with one another over a network. The Transmission Control Protocol/Internet Protocol (TCP/IP) model comprises of four (4) layers and these includes;

I. Application layer.

II. Transport layer.

III. Internet layer.

IV. Network layer.

The network layer in the Transmission Control Protocol/Internet Protocol (TCP/IP) model is responsible for delivering data between two nodes.

Basically, this layer known as network layer is the fourth layer of the Transmission Control Protocol/Internet Protocol (TCP/IP) model and it is typically responsible for the transmission of packets from one network device to another.

2.32 LAB: Musical note frequencies On a piano, a key has a frequency, say f0. Each higher key (black or white) has a frequency of f0 * rn, where n is the distance (number of keys) from that key, and r is 2(1/12). Given an initial key frequency, output that frequency and the next 4 higher key frequencies. Output each floating-point value with two digits after the decimal point, which can be achieved by executing cout << fixed << setprecision(2); once before all other cout statements. Ex: If the input is: 440.0 (which is the A key near the middle of a piano keyboard), the output is: 440.00 466.16 493.88 523.25 554.37

Answers

Answer:

Explanation:

[tex]\text{This is a python code:}[/tex]

[tex]\text{import math}[/tex]

[tex]your {\_} {value 1 }= float(inpu \ t ())[/tex]

[tex]your{\_}value 2 = your{\_}value1*math.exp(1 * math.log(2) / 12)[/tex]

[tex]your{\_}value 3 = your{\_}value1*math.exp(2 * math.log(2) / 12)[/tex]

[tex]your{\_}value 4 = your{\_}value1*math.exp(3 * math.log(2) / 12)[/tex]

[tex]your{\_}value 5 = your{\_}value1*math.exp(4 * math.log(2) / 12)[/tex]

[tex]print('\{:.2f\} \{:.2f\} \{:.2f\} \{:.2f\} \{:.2f\}'.format(your\_value1, \ your\_value2, \ your\_value3,[/tex][tex]\ your\_value4, \ \ your\_value5))[/tex]

[tex]\mathbf{OUTPU \ T :}[/tex]

[tex]\mathbf{440.00 \ 466.16 \ 493.88 \ 523.25 \ 554.37}[/tex]

The code for musical note frequencies On a piano, a key has a frequency, say f0 is in the explanation part below.

Here is a C++ program to the stated problem:

#include <iostream>

#include <iomanip>

#include <cmath>

int main() {

   double frequency;

   std::cout << "Enter the initial key frequency: ";

   std::cin >> frequency;

   std::cout << std::fixed << std::setprecision(2); // Set output precision to 2 decimal places

   std::cout << frequency << " ";

   for (int i = 1; i <= 4; ++i) {

       frequency *= std::pow(2, 1.0 / 12); // Calculate the next frequency

       std::cout << frequency << " ";

   }

   return 0;

}

Thus, in this program, we use the user's original key frequency as input. The starting frequency and the following four higher key frequencies are then calculated and produced using a loop.

For more details regarding C++ program, visit:

https://brainly.com/question/33180199

#SPJ6

Here is a sequence of binary digits:
011000101110010100110100010001110101001110001010101
What could this sequence represent? What could it mean?

A. A piece of text
B. A number
C. A set of instructions
D. Musical notes
E. Any piece of information

Could I have some help please?

Answers

Answer:

E

Explanation:

trust me

According to the video, what are common tasks performed by Tour Guides? Check all that apply.

leading trips
maintaining equipment
shepherding tourists and luggage
socializing
purchasing tickets for flights
selling equipment
setting up meals
teaching first aid

Answers

Common tasks of the tour guide.

As per the question, the video shows us the tour guide n the ways he handles the tasks. The tour guide can be seen using making techniques such as providing tips, giving information, socializing with people, and setting up meals and other arrangements.

Thus the answer is leading trips, maintaining equipment, shepherding the tourists and luggage, and socializing, setting up meals.

Thus the duty of the tour guide its provide the latest information and provide the cratered services to the clients. The services like hotel, travel and maintains of the equipment's is essential for them. Thus the option 1, 2, 3,4 and 7 are correct.

Learn more about the according to the video.

brainly.com/question/19175630.

Answer: 1 2 3 4 7

Explanation:

what the other guy said

Choose the first programming language for personal computers that was released in the 1970s by Microsoft

Answers

Answer:

Altair BASIC programming language

Explanation:

The Altair BASIC programming language was built for the Altair 8800 microcomputer by childhood friends, Bill Gates and Paul Allen in March 1975

The interpreter for the Altair BASIC programming language was developed by Bill Gates while Paul Allen worked on the simulator

The newly developed programming language worked without flaw during the demonstration to Micro Instrumentation and Telemetry Systems, MITS

Microsoft was founded by Bill Gates and Paul Allen on the 4th of April 1975

Answer:

C.) Altair BASIC programming language

Explanation:

What color is (255, 0, 255)?

A) lime
B) yellow
C) fuchsia
D) cyan

Answers

Answer:

Fuschia!

Explanation:

Try using rgb.to to find specific colors

which kind of blocks is used to hold values​

Answers

Answer:

Variable block.

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, variable stores information which is passed from the location of the method call directly to the method that is called by the program.

For example, they can serve as a model for a function; when used as an input, such as for passing a value to a function and when used as an output, such as for retrieving a value from the same function. Therefore, when you create variables in a function, you can can set the values for their parameters.

For instance, to pass a class to a family of classes use the code;

\\parameter Name as Type (Keywords) = value;

\\procedure XorSwap (var a,b :integer) = "myvalue";

Hence, variable block is used to hold values. Also, it can be used to hold strings in variables, which may be displayed through the computer monitor.

What preference should you set prior to importing a bunch of photographs?

Answers

Answer: Timeline

Explanation:

James’s work computer has lost its Internet connection but is otherwise working. If James’s colleagues have lost their Internet connections, too, which of the following is most likely to be true?

A. A server is down somewhere.
B.They need a repairman to fix the hardware on their computers.
C.Their computers are not part of a network anymore.
D.They have a software problem on their computers.

Answers

A. Server is down somewhere

Answer:

A server is down somewhere.

Explanation:

Edge

Does anybody know how to get this little search bar thing off of my task bar on a HP laptop.

Answers

Try clicking the down arrow on the search bar or right clicking it and selecting an option no if that doesn’t work then drag the || to somewhere or right click it. If none of those work you can right click the taskbar and see if there is anything that looks like it could be the search bear and uncheck it

future quirk ideas! for bnha

Answers

A computer chip that tracks down any hacker and destroys there hacking device

Elliott is trying to normalize a database that he has designed. Which is not one of the elements of 1NF or 2NF?

Each cell of a table must contain a single value.
The table must not contain repeating groups.
Each table must depend on the entire primary key.
Each table must depend on the entire foreign key.

Answers

Answer: I think it’s D

Explanation: the rest apply to the the rules of 1NF and 2NF

Use the drop-down menu to complete the steps for using the Goal Seek feature.
1. Go to the
tab.
2. In the
from the drop-down What-If Analysis menu.
3. Specify the cell that contains the formula to solve and enter the desired result.
4. Specify the
that contains the value to adjust.
5. Click OK
group, select

Answers

Answer:

1. Go to the  data tab.

2. In the  forecast ribbon from the drop-down What-If Analysis menu.

3. Specify the cell that contains the formula to solve and enter the desired result.

4. Specify the  changing cell that contains the value to adjust.

5. Click OK

Answer: see below

Explanation:

Other Questions
I need help dudessss A republic is a form of government in which all citizens participate in the government decisions. False True How many stanzas does Frederick Douglass poem have the pet store has 8790 clownfish. they keep 6 fish in one tank . how many tanks do they have? I have a voltage source of 12V but a light that only burns at 5V. The lamp works on 18 mA. Calculate the resistance that you EXTRA have to include in this series connection. Pedro buys lunch at school every day. He always gets pizza when it isavailable. The cafeteria has pizza about 80% of the time.Pedro runs a simulation to model this using a random number generator. Heassigns these digits to the possible outcomes for each day of the week: Let 0 and 1 = no pizza availableLet 2, 3, 4, 5, 6, 7, 8, and 9 = pizza availableThe table shows the results of the simulation.95032 4715071709 3888994007350135789072924 19365 47879What is the estimated probability that Pedro will eat pizza for lunch every daynext week?O A. 0.0B. 0.3OC. 0.4D. 0.7Answer is B: 0.3 Reason: in each box, there are 5 digits to represent the 5 days in a week. Theres 10 boxes to represents 10 weeks. In each box theres a chance out of 5 for Pedro to get pizza. You multiply each days possibly of Pedro getting pizza by each other n get about .26 & round it to .3 - hope that helps! ((: 3. Mauricio no quiere verla porque hay que hacer para los estrenos y no le gusta One of the benefits of crop rotation was itA. divided land into small pieces.B. used less land.C. caused people to leave the land.D. kept the soil fertile. Room 1: Answer the questions below. Provide evidence from the text to support your response.1. Compare the text with the recording, what do you hear when listening to the recording?2. What does the listener learn from the reading of the text that is not conveyed by the text itself?3. How does the woman react when the boy tries to steal from her?a. She fears him but fights him off bravely.b. She makes him consider what he has done.c. She threatens to turn him into the police.d. She feels bad that he resorted to stealing.Room 2: Answer the questions below. Provide evidence from the text to support your response.1. How does the information presented in (text/media version) contribute to a particular topic, text, or issue?2. Part A: How is the theme of "Kindness or trust" revealed in the text? Part B: How is the theme of "Kindness or trust revealed in the poem?3. How does the woman react when the boy tries to steal from her?a. She fears him but fights him off bravely.b. She makes him consider what he has done.c. She threatens to turn him into the police.d. She feels bad that he resorted to stealing.Room 3: Answer the questions below. Provide evidence from the text to support your response.1. What is a similar theme found across the various texts?2. Part A: Which sentence states a theme that is shared in both text and video? Part B: Select one quotation (quote) that supports the answer in Part A.3. How does the woman react when the boy tries to steal from her?a. She fears him but fights him off bravely.b. She makes him consider what he has done.c. She threatens to turn him into the police.d. She feels bad that he resorted to stealing.Room 4: Answer the questions below. Provide evidence from the text to support your response.1. What does the listener learn from the reading of the text that is not conveyed by the text itself?2. How does the information presented in (text/media version) contribute to a particular topic, text, or issue?3. How does the woman react when the boy tries to steal from her?a She fears him but fights him off bravely.b. She makes him consider what he has done.c. She threatens to turn him into the police.d. She feels bad that he resorted to stealing.Room 5: Answer the questions below. Provide evidence from the text to support your response.1. What is a similar theme found across the various texts?2. What does the listener learn from the reading of the text that is not conveyed by the text itself?3. How does the woman react when the boy tries to steal from her?a She fears him but fights him off bravely.b. She makes him consider what he has done.c. She threatens to turn him into the police.d. She feels bad that he resorted to stealing. 7(x+1)-4x+19 how to solve what is ur favorte star wars person? 2 x 3/8 as a fraction in simplest form Nine more than thirty divided by ten. Numerical expression HELP ME ASAP With Art Part BNow, you are ready to propose your thesis statement. Click here or conduct online research to refine your thesis statement.Write your thesis statement in the space provided. Dally informed ponyboy and johnny that there was going to be what the next night? GIVING BRAINLIEST TO BEST ANSWER!! How can you tell if a relationship is nonproportional? Select all that apply. is the same for all ordered pairs. is NOT the same for all ordered pairsThe graph does NOT go through the point (0,0The graph goes through the point (0,0). 30 laps in 6 days = ? laps per day who made godwho made the gods zeuswho made the galaxywho made the earthwhat came from nothingwho made prymidsadam and eve came out of nowhere?who made the dinosaursif god was created who made godwho made himwho made thatwe eat pizza inside outspace isnt emptytheres only one sunset,you did not acknowledge my exisetanse till now.what does a mirror look like when we dont look at it? Adidea Corp. Estimates that $5,670 of its accounts receivables are uncollectible. How will the company record the transaction? The company will record the uncollectible $5,670 of its accounts receivable as a debit to uncollectible accounts expense and a credit to the account.