what type of waves are used on a tv remote control?

Answers

Answer 1

Answer:

(IR) Light

Explanation:

The signal of the remote control, control the pules of the infrared light. But human eye cant see, but can see through a digital camera.


Related Questions

Which of the following statements best illustrates how value was created for eggs? when a farmer sells a chicken who is no longer producing eggs when a chef raises the price of his omelet to match a competitor's price when a consumer throws away cracked eggs and only uses the good ones when a baker uses eggs to create cookies and cakes

Answers

Answer:

When a baker uses eggs to create cookie and eggs

Explanation:

I got it right on edg


Binary digits can represent the state of an electrical charge. How
many different states of an electrical charge can binary digits
represent?

Answers

On and off can be represented.

if you were any type of fnaf charater who would you be and why?

Answers

Answer:

Foxy

Explanation:

Cause he's cool and he's my favorite.

Which of these causes problems because it causes all words to have the same shape?

using left-aligned text
using all uppercase text
putting two spaces after a period
using an image instead of text

Answers

Answer:

using probably all uppercase

Explanation:

because the person will more likely think your yelling at them

but maybe even left - aligned text

Someone plz answer my question!!
There are infinite black and white dots on a plane. What is the distance between one black dot and one white dot?​ If you get it right I will give you the crown!!!!!​

Answers

Answer:

infinite I know I got it right so might as well give me brainliest :)

Explanation:

Dr. Wayne is trying to developing techniques to cure Parkinson’s disease by inserting genetic material into patients’ cells to counteract defective genes. This type of treatment is called

.

Answers

I think it called gene therapy

Answer:

gene therapy

Explanation:

It is correct. I just did it

what is main function of processing unit?

Answers

Answer:

to control the operation of all part of the computer.

hope it helps.

Answer:

to control the operations of the computer

Explanation:

hope it's help you have a great day keep smiling be happy stay safe ☺

list out the features of a computer.​

Answers

Answer:

Speed. A computer works with much higher speed and accuracy compared to humans while performing mathematical calculations. ...

Accuracy. Computers perform calculations with 100% accuracy. ...

Diligence. A computer can perform millions of tasks or calculations with the same consistency and accuracy

Who is obsessed with Stranger Things, and waiting for the new season?!?!

Answers

Answer:

Me

Explanation:

Answer:

ME I CANNOT WAIT I'VE BEEN WAITING EVER SINCE ME AND MY STRANGER THINGS OBSESSED REALLY CLOSE FRIEND AND I FINISHED SEASON 3 THE DAY IT CAME OUT

Explanation:

so i am taking to edhesive computer science course in my school, and i am confused on 1.6 code practice,
here are the intructions, it is also for the python coding language

Write a program that uses two input statements to get two words as input. Then, print the words on one line separated by a space. Your program's output should only include the two words and a space between them.

Hint: To print both words on one line, remember that you can concatenate (add) two phrases by using the + symbol. Don't forget that you'll need to add a space between the words as well.

Sample Run

Enter a word: Good
Enter a word: morning
Good morning

Answers

I included my code in the picture below. Best of luck.

What are the three primary components of an inbox?
O the Task List, the Calendar, and the Status bar
O the Task List, the Calendar, and the Reading Pane
o the message header, the Folder Pane, and the Reading Pane
O the message header, the Status bar, and the Reading Pane

Answers

The three primary components of an inbox are the message header, the Folder Pane, and the Reading Pane. Hence option c is correct.

What is inbox?

Inbox is defined as a location in an email client or online email account where email messages are received. You may view and manage received emails in your inbox. The sender's name, the message's subject, and the date it was received are provided with each email. You can find the Inbox in the Message List. Opening in the Reading Pane are emails. You have more options for organizing emails with the ribbon.

A computer or smartphone's inbox is a folder where new emails are saved. An email program's inbox is a repository where incoming messages are stored. Email applications may provide several inboxes into which new communications are filtered after being examined for content

Thus, the three primary components of an inbox are the message header, the Folder Pane, and the Reading Pane. Hence option c is correct.

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

https://brainly.com/question/208303

#SPJ2

one disadvantage of using a wireless network over a wired network​

Answers

Answer:

Slower than wired network​

Explanation:

This is much weaker than a wired connection. It is likely that the network is less secure. A variety of factors, including large distances or artifacts, can impede wireless transmission around wireless devices as well as other wireless devices.

The coordinates that determine the position of an element in space are expressed as:

A. Different Shapes
B. 1, 2, 3
C. X, Y, Z
D. L, T, P​

Answers

Answer:

xyz

Explanation:

think of it like a graph, you graph on the x, y, and z coordinates

It is also known as the embryonic stem.
A. radicle
B. hypocotyl
C. epicotyl
D. testa
It is a series of activities carried out in a form management system prior to planting the seed or planting materials.
a. pre-planting operation
b. prior planting operation
c. first planting operation
d. start planting operation

Answers

Answer:

A and B, I really hope.

Explanation:

Answer:

the first one is D and the second one is B

Peer collaboration helps develop critical-thinking skills, which is the ability to

focus on multiple subjects at once.
criticize the thoughts of others.
examine a subject more closely.
focus on a single opinion or perspective.

Answers

Answer:

its c

Explanation:

after a few googel searches this is the answer

Answer:examine a subject more closely.

Explanation:

i just finshed the test

What are three ways that functions can be useful when you are writing programs

Answers

Answer:

Reduces the overall complexity of your program

Allows you to easily call a function from different parts of your program after defining it.

Helps break a problem into logical chunks

Explanation:

In a computer language, a function is the set of instructions that are made for reducing the need to repeat a large amount of data by breaking it into small chunks of codes and giving concise readable human names.

They thus help in reducing the complexity in writing and maintaining the program, Hence they help in breaking it into logical chunks. They can be useful in increasing the reusability of the code. Can be used as a good alternative. Perform a single high-level task.

Learn more about the three ways that functions can be useful when.

brainly.com/question/13728820.

7.2.8: Part 2, Replace a Letter


"Write a function called replace_at_index that takes three arguments - a string, an integer (representing an index), and a string. Return a string that is the same as the first string, except with the character at the specified index replaced by the second string.

Ask the user for some text, which index to replace, and what to replace that index with (in that order!).

Print out the result of calling your function.

If the user enters the following input:

Enter a word or phrase: dog
Enter an index value: 0
Enter the new letter: f
The following should be output:

fog"

Answers

def replace_at_index(txt, ind, let):

   new_txt = ""

   for x in range(len(txt)):

       if x == ind:

           new_txt += let

       else:

           new_txt += txt[x]

   return new_txt

print(replace_at_index(input("Enter a word or phrase: "), int(input("Enter an index value: ")), input("Enter the new letter: ")))

I wrote my code in python 3.8. I hope this helps.

A line graph titled Unemployment Percentages and Levels of Education where the x-axis shows dates from November 2007 to November 2010 and the y-axis shows the percentage unemployed. No High School diploma starts at 7.5 percent in November 2007, rises steadily to 15 percent in November 2009, and stays at 15 percent to November 2010. High School diploma starts at 4.8 percent, rises steadily to 10.5 percent in November 2009, and falls to 9.5 percent in November 2010. Some college starts at 4 percent in November 2007, rises to 9 percent in November 2009, and falls to 8 percent in November 2010. Bachelor's degree or higher starts at 2 percent, rises to 5 percent in November 2009, and slowly falls to 4.9 percent in November 2010.

Based on the above graph, what was the percentage of difference between someone without a high school diploma and someone who has completed some college in November 2009?

A.

4%

B.

5%

C.

7%

D.

10%

can yall please answer my question pls

Answers

Answer:

D

Explanation:

the answer is D because

Answer:

It's B

Explanation:

IM SORRY IF ITS WRONG

anybody know any educational game sites unblocced in school besides funbrain and pb skids

Answers

Answer:

cool math games is the best

Explanation:

Which of the following statements about content-based filtering is TRUE?

Answers

Answer:

with content-basedfiltering users receive recommendations for items that are similar in type to ones they already like

In what situation is a read receipt notification not sent when an email is opened or previewed bya recipient?
O when the recipient selects to disallow the sending of the receipt
O when the recipient has previewed but has not opened a message
O when the recipient reads and then permanently deletes the message
when the recipient uses the Reading pane to open the message

Answers

Answer:

when the recipient selects to disallow the sending of the receipt

Explanation:

A read receipt notification allows the sender to know when the receiver has opened the message he sent. However, there are cases when the read receipt may not be delivered. The recipient has the option not to allow the sending of the receipt. In this case, some people want privacy so they don't want the sender knowing when they opened the message. In other case, the email program of the recipient simply doesn't support it. Therefore, the read receipts will not be sent.

Answer:

A

Explanation:

4. If d is a double variable with a value of 7.5, which of the following statements results in a (1 point) value of 7 being assigned to x?
int x = (int)d;
int x = d;
int x = int(d);
double x = d;​

Answers

Answer:

int x = (int)d

Explanation:

(int) means the largest integer value smaller than <value>.

which is 7.

Only the first choice has the correct syntax.

The second choice sets an int as a double, which does not work.

The third one shows int as a function, d as a parameter, which is not allowed, as int is a keyword in java

For the last choice, you are setting x to 7.5 not 7.

So int x = (int)d is correct.

PLEASE HELP THIS WAS DUE YESTERDAY AND I DIDN'T GET TO IT IN TIME!!!!!!
You must show all of your work to get full credit.
Part 1) Convert the following decimal numbers to binary.
5
89
191
25
7

Part 2) Convert the following decimal numbers to hexadecimal.
72
91
1000
57
3500

Part 3) Convert the following binary numbers to decimal.
101
11011
1001
10101
11001100

Part 4) Convert the following hexadecimal numbers to decimal.
50
200
ABC
DEF
F2A7

Part 5) Convert the following binary numbers to hexadecimal.
10101
110011
101010
1100
1001100

Part 6) Convert the following hexadecimal numbers to binary.
102
200
AB
EF
9F

Answers

Answer:

part 1 ) 5=0b101

89=0b1011001

191=0b10111111

25=0b11001

7=0b111

Part 2) 72=0X48

91=0X5b

1000=0X3e8

57=0X39

3500=0Xdac

part 3  101=5

11011=27

Explanation:

hope this helps took me a while pls make me brainliest

may someone help me with the this question pls , The governor of a state wants to inform the people about a change in the tax policy. Which people should he definitely invite to convey the message?
A.
bank and tax officers
B.
news reporters
C.
business heads
D.
radio DJs
E.
lawyers

Answers

Answer:

Option B: News reporters is the correct answer.

Explanation:

First of all we have to observe the reach of all options available in the question. We know that the largest reach in the country or province or state is of media and journalists of that particular region. So the governor should invite the news reporters to convey the message.

Hence,

Option B: News reporters is the correct answer.

The "Rule of Thirds" is a technique photographers use to __________ .

a
compose an image in order to offset the subject and create overall visual interest

b
plan their photography shoots by creating a three-step process

c
divide images into three different and specific focal areas

d
divide image files so they will fit onto hard drives

Answers

Answer:

answer is D i think i think

A compose an image in order to offset

Robert's got a quick hand
He'll look around the room he won't tell you his plan
He's got a rolled cigarette
Hanging out his mouth, he's a cowboy kid
Yeah, he found a six shooter gun
In his dad's closet, in a box of fun things
And I don't even know what
But he's coming for you, yeah, he's coming for you
All the other kids with the pumped up kicks
You better run, better run, outrun my gun
All the other kids with the pumped up kicks
You better run, better run faster than my bullet
All the other kids with the pumped up kicks
You better run, better run, outrun my gun
All the other kids with the pumped up kicks
You better run, better run faster than my bullet
Daddy works a long day
He's coming home late, yeah, he's coming home late
And he's bringing me a surprise
Cause dinner's in the kitchen and it's packed in ice
I've waited for a long time
Yeah, the slight of my hand is now a quick pull trigger
I reason with my cigarette
Then say your hair's on fire
You must have lost your wits, yeah
All the other kids with the pumped up kicks
You better run, better run, outrun my gun
All the other kids with the pumped up kicks
You better run, better run faster than my bullet
All the other kids with the pumped up kicks
You better run, better run, outrun my gun
All the other kids with the pumped up kicks
You better run, better run faster than my bullet
All the other kids with the pumped up kicks
You better run, better run, outrun my gun
All the other kids with the pumped up kicks
You better run, better run faster than my bullet
All the other kids with the pumped up kicks
You better run, better run, outrun my gun
All the other kids with the pumped up kicks
You better run, better run faster than my bullet
All the other kids with the pumped up kicks
You better run, better run, outrun my gun
All the other kids with the pumped up kicks
You better run, better run faster than my bullet

Answers

verry
good
song
love
it
ALL THE OTHER KIDS WITH THE PUMPED UP KICKS YOU BETTER RUN BETTER RUN ! FASTER THAN MY GUN !

Read the following code:

# Calculate average
average = numl + num2 + num3 / 3.0

There is an error in the code. How should the code be revised in order to get the correct output?

A:average = numl + num2 + num3 - 3.0

B:average = numl + num2 + num3 - 3.0

C: average = (numl + num2 + num3) / 3.0

D: average = numl + num2 + num3 / (3.0)

Answers

C is the correct answer

Complete the code.
import csv
inFile = open ("one.txt","r")
outFile = open("another.txt", "w")
myReader = csv.reader(inFile)
for item in myReader:
aWord = item[0]
aNumber = ___ (item[1]) + 0.4
line = aWord + "," + str(aNumber) + '\n'
outFile.write(line)

Answers

Answer:

The answer is float.

Explanation:

In which way is a copper cable related to a wireless transmission

Answers

Answer: whats the answer choices

Explanation:

Do the lengths of 10,4 and 5 form a triangle explain why please I’m confused

Answers

Answer:

no

Explanation:

Imagine having sticks of these lengths. Attach the 4 and 5 to both ends of the 10. No way you can have them touch each other, not even when the triangle is flat.

The 4 and 5 add up to 9, that is less than 10.

The Triangle Inequality Theorem states that the sum of any 2 sides of a triangle must be greater than the measure of the third side.

Other Questions
MR. ARCEO TAKES A TAXI FROM THE AIRPORT TO A HOTEL. THE TAXI CHARGES $2.50 INITIAL CHARGE PLUS $2.65 PER MILE. WHICH EQUATION CAN BE USED TO FIND Y, THE TOTAL COST OF THE TRIP, IF X REPRESENTS THE NUMBER OF MILES OF THE TRIP? Oliver invested $53,000 in an account paying an interest rate of 2.7% compounded daily. Assuming no deposits or withdrawals are made, how much money, to the nearest cent, would be in the account after 20 years? In what ways can a teacher help you to be a successful learner? Which of the following accurately describes the lieutenant governor?A. twoB. threeC. fourD. unlimitedWhat formal powers does the governor use to achieve his or her legislative goals?A. The vetoB. administrative billsC. presenting the state budgetD. all of the above A celebrity testimonial is an example of a fact.a. Trueb. False 34.23 times one year is .... ?? anyone know thank you If you were a Chinese person, what might your point of view be concerning the unequal treaties and the Chinese government that signed them? I WILL GIVE YOU BRAINLY PLSSIt costs Fred $0.20 to send a text message from his cell phone. He has already spent $4 in text messages this month. If he has a total of $10 that he can spendthis month on text messages, which inequality shows the greatest number of textmessages that he can send?A. 4 + 0.20 10B. 4 + 0.20 10C. 4 + 0.20 < 10D. 4 + 0.20 < 10PLSS SHOW YOUR WORK PLSS Using a pulley, you apply a force of 10 Newtons to life an object that weighs 100 Newtons. What is the mechanical advantage of that pulley? Y'all I kinda need help in this problem happy new year OPEN ENDED QUESTION PLEASE HELP I NEED IT QUICK!!!!Reread the poems "End of April" and "End of August" by Heather Burns. End of AprilIn an effort to become more like springShe put on bright socks fuchsia pink like the Azaleas in the gardens she soughtOut often to escape what winter stillKept lodged in her mind. For who would go toA garden to worry? Wanting to blendIn more, she began to clothe herself withWisteria, honeysuckle, trumpetVines so the hummingbirds came to know herAs spring itself. Whatever remainedOf her winter evaporated and thenRained down in homage. When clouds were broken Open by the sun, she was gone no oneCould say for sure what she used to look like.End of AugustWe gather at the place where historyWounds our future and its too bad that theBalance gets thrown off again and we fallLike peaches out of a bag, tumbling toBruised stops on the countertop. Summer isReally over. All of our desires for howTo best spend it we wrote on paper platesIn June, in parables that made us laugh.The thistle has bloomed, scattered. Our hearts cracked Open like thunderstorms that clustered on most Afternoons in July. No grief draws aRing around us like the end of August.Our focus must shift to a new season,A new frontier of weather, land, and fruits.Identify and explain characteristics of Romantic poetry and Realist poetry in these poems. Then explain what makes these poems contemporary. In your opinion, what is the greatest benefit of living in a capitalist economy? The ratio to ally's money to Jonathan's money is 4:9 if ally has 36 dollars then how much does Jonathan have Explain the production of urine, include the processes of Ultra filtration and selective reabsorption. 10. ______ t nervioso hoy? is (12,6) a solution to y=-x+7? Type in two factors of 26 other than 1 and 26.Type the factors in the increasing order Calculate the value of A in the triangle below