a___ is a placeholder where you can enter text to manipulate and give new graphical effects.​

Answers

Answer 1

Answer:

A "text box" is a placeholder where you can enter text to manipulate and give new graphical effects


Related Questions

Digital and analog audio recordings have pros and cons. Do you think the pros of digital recordings outweigh the cons and therefore prefer digital audio recordings? Or, do you think the cons outweigh the pros and therefore you prefer analog audio recordings? Explain.

Answers

Digital vs Analog Audio is completely personal preference and there is no clear winner on which is better.

But there are some pros and cons about both, Analog sometimes distorts when playing and can be easily scratched and ruins the grooves. Analog is believed to be the true representation of the sound when it was recorded. Digital is not the actual recording of the sound, it's actually a combination of binary code. It is also sometimes mixed or remastered in Digital and sounds a bit different to make it sound better. It also depends on the system you are listening it from. You could have a horrible Digital system its playing through and an amazing Analog system playing, of course the Analog system will sound better in that case. Some believe that Digital is on par to overtake Analog in the "true picture of sound" category but some also say Analog will forever be the best at playing sound and Digital will always be the alternative.

But, in the end it's all personal preference and the pros and cons don't overweigh to make one better than the other.

Can someone urgently help me with my java code (I WILL GIVE BRAINLIEST)?! Ive been working on it for hours and its not working! (please give an actual answer...)

*examples of required output at the bottom*

code: public class CircularList
{
private ListNode head;
private ListNode tail;
private int size;







public CircularList()

{

head = tail = null;

size = 0;

}





public int size()

{

return size;

}





public boolean isEmpty()

{

return (size == 0);

}





public int first()

{

if (head != null) {

return head.getValue();

}

return -1;

}




public Integer last()

{

if (tail != null) {

return tail.getValue();

}

return -1;

}



public void addFirst(Integer value)

{

head = new ListNode(value, head);

if (tail == null) {

tail = head;

}

size++;

}





public void addLast(Integer value)

{

ListNode newTail = new ListNode(value, null);

if (tail != null) {

tail.setNext(newTail);

tail = newTail;

} else {

head = tail = newTail;

}



size++;

}





public void addAtPos(int pos, Integer value)

{

if (pos == 0) {

addFirst(value);

return;

}

if (pos <= 0 || pos > size) {

return;

}

if (pos == size) {

addLast(value);

return;

}



ListNode ptr = head;

for(int i=0; i = size) {

return retVal;

}

if (pos == 0) {

return removeFirst();

}

ListNode ptr = head;

for(int i=0; i
ptr = ptr.getNext();

}

retVal = ptr.getNext().getValue();

if (pos == size-1) {

tail = ptr;

tail.setNext(null);

} else {

ptr.setNext(ptr.getNext().getNext());

}



size--;

return retVal;

}





public int findNode(Integer find)

{

ListNode ptr = head;

for(int pos=0; pos
if (ptr.getValue() == find) {

return pos;

}

ptr = ptr.getNext();

}

return -1;

}




public void rotate()

{

addLast(removeFirst());

}




public String toString()

{

String output = "";

ListNode iter = head;

while(iter != null) {

output += String.format("%d ", iter.getValue());

iter = iter.getNext();

}

return output;

}



}

size = 6 first = 50 last = 60
50 20 10 40 30 60

removeFirst = 50
size = 5 first = 20 last = 60
20 10 40 30 60

removed = 30
size = 4 first = 20 last = 60
20 10 40 60

size = 4 first = 20 last = 60
20 10 40 60

found at -1
removed = -1
size = 4 first = 20 last = 60
20 10 40 60

size = 4 first = 10 last = 20
10 40 60 20

Answers

Answer:

code 345code 4537

Explanation:

Select the best answer to the following question.
Remote data storage and the ability to access data from any device using the Internet is called

Answers

Answer:

I think its called "cloud computing"

Answer:

cloud computering

Explanation:

I am doing a inquiry task for A.I. taking over coding I need answer for in the coding industry be ok with A.I. taking over their job. Any links to webs pages like this would be useful too

Answers

Answer:

hi! How are you? I’m sorry I really need points, but I hope you find the answer soon tho <3

Explanation:

Select all the correct answers.
Which TWO of the following are recommended practices to protect users' privacy while using email services?
Avoid forwarding a personal emails to others.
Avoid forwarding jokes and trivia using email.
Avoid using webmail if you have an email client on your computer.
Avoid opening emails from unrecognized senders.
Avoid using webmail in the workplace:

Answers

Answer: Avoid forwarding a personal email to others and most likely Avoid forwarding jokes and trivia using email.

The recommended practices to protect users' privacy while using email services are options A and C: avoid forwarding a personal emails to others and avoid using webmail if you have an email client on your computer.

What do you mean by term E-mail?

An E-mail is refers to as the communication source. It is a specialized computer network that stores, processes, and send the material from one person to another within seconds..

E-mail is considered as the computer equivalent but it has many advantages like timeliness and flexibility.

Moreover, the content of email include text, files, images or other kind of attachments send by the specified person to the one or more than one groups.

In order to protect the personal data of the user, it is recommend that people should note share their personal information with other and specially the young generation do not use webmail if the another party already utilize your computer.

Nowadays more frauds are happen due to the fact that people are more indulge in these communications for their better advancements. So, we have to take every step very carefully.

Therefore, correct options are A and C.

Learn more about E-mail, refer to the link:

https://brainly.com/question/13313275

#SPJ2

A
is the smallest of the network types and provides connectivity for one person’s devices.

Answers

Answer:

Personal Area Network (PAN)

Explanation:

A  Personal Area Network (PAN) is the smallest of the network types and provides connectivity for one person’s devices.

A personal area network refers to a computer network that is used for interconnecting various electronic devices that are centered on the workspace of an individual. A PAN enables data transmission among the following devices: 1. Computers

2. Smartphones

3. Tablets

4. Personal digital assistants.

I need somebody to help me with this question I’ll give points!
Please help no funny business

Answers

Answer:

create a new folder (you need that in order to choose it as a destination)

click the rules button

new rule; blank rule

select forms and conditions

apply the rule to messages received

Decrypt this message: P ht uva h zwf
It has been encrypted with a shift of 7 (remember each letter needs to go backwards.
uhhh pls help with this ill mark brainliest

Answers

translation: I am a spy

Question 6 (2 points)
The recipe for good communication includes these "ingredients":

a.clause, brevity, comments, impact, value

B.clarity, brevity, comments, impact, value

C.clarity, brevity, context, impact, value

D.clause, brevity, context, impact, value

Answers

Answer:

C

Explanation:

i think lng hehehehehe

With what finger do you type the letter m​

Answers

Answer:

Index Finger

Explanation:

I type m with my middle because it’s just right down from j

What will be printed if the below code is run?
1. a = "123"
2. b = “456"
3. a = b + "123"
4. b = a
5. print (b + a)

Answers

Answer:

What will be printed if the below code is run?

1. a = "123"

2. b = “456"

3. a = b + "123"

4. b = a

5. print (b + a)

What is the theory of relativity? How does it relate to the creation of electricity through solar energy?

Answers

Answer and Explanation:

The theory of relativity applies to all physical phenomena in the absence of gravity and explains the law of gravitation and relation to nature's force. Solar energy is regarded as the power source of the future and uses sunlight to generate electricity. It is a potential solution to the ongoing environmental problem and caused by the overuse of Earth resources. Solar energy is a power source and widely used by the scientific community. It is a potential solution to the environmental problems caused by Earth resources and high fossil fuel conception. The theory of relativity proposes a fundamental and straightforward presentation of fission with some application. Some characteristics of solar energy produced from the fusion process and deducted from the same equation. Relativity determined physics law for all non-accelerating observers and showed the speed of light within a vacuum. Space and time were interwoven in the single continuum.

How do I calculate this square footage?

Answers

Answer:

To calculate it, you have to break it apart. Sorry for the bad writing but after you break it apart, you multiply the smaller squares. Then with all of the smaller areas, add them together for the final answer which in this case is 456.

Edhesive 8.5 code Practice help me pls

Answers

Answer:

twainQuotes = ['I have never let my schooling interfere with my education.', 'Get your facts first, and then you can distort them as much as you please.', "If you tell the truth, you don't have to remember anything.", 'The secret of getting ahead is getting started.', "Age is an issue of mind over matter. If you don't mind, it doesn't matter. "]

print(twainQuotes)

twainQuotes.sort()

print(twainQuotes)

twainQuotes.insert(1,'Courage is resistance to fear, mastery of fear, not absence of fear.' )

print(twainQuotes)

Explanation:

ok

The program is an illustration of lists and list manipulation

Lists

Lists are variables that are used to hold multiple values in one variable name

Python Program

The program in Python, where comments are used to explain each line is as follows:

#This initializes the list

twainQuotes = ['I have never let my schooling interfere with my education.', 'Get your facts first, and then you can distort them as much as you please.', "If you tell the truth, you don't have to remember anything.", 'The secret of getting ahead is getting started.', "Age is an issue of mind over matter. If you don't mind, it doesn't matter. "]

#This prints the list elements

print(twainQuotes)

#This sorts the list elements

twainQuotes.sort()

#This prints the sorted list

print(twainQuotes)

#This inserts an element into the list

twainQuotes.insert(1,'Courage is resistance to fear, mastery of fear, not absence of fear.' )

#This prints the new list

print(twainQuotes)

Read more about lists and list manipulations at:

https://brainly.com/question/24941798

What’s an input Device

Answers

Somthing that you plug in can I have brainlyist I just need one more :)

Answer:

._.  a computer is a input why because you can tell

Explanation:

HELP ME ASAP AND YIU GET THE POINTS
Use the drop-down menus to complete statements about multiple calendar options in Outlook.
The default multiple calendar view is
Overlay view will color-code multiple dates in
Calendar
include multiple users' calendars as a team

Answers

Answer:

The default multiple calendar view is

✔ side-by-side

.

Overlay view will color-code multiple dates in

✔ one view

.

Calendar

✔ groups

include multiple users’ calendars as a team.

Explanation:

Answer:

The default multiple calendar view is

✔ side-by-side

.

Overlay view will color-code multiple dates in

✔ one view

.

Calendar

✔ groups

Explanation:

There is one clear definition of IT. True False

Answers

Answer:

That is False. it has more definitions not only one.

int x = 42
fill in the missing part of the following code to divide x by 3 using the shorthand division operator ​

Answers

42/3 will be equal to 14

After inserting a video into your slide how can you test it

Answers

Explanation:

How to insert video into PowerPoint

Click on the slide you want, then go to Menu > Insert.In the top right corner, click Video > Video on My PC.Find the video you want to add and click “Insert”.Adjust the settings in the Video Format toolbar to make sure it plays the way you want.

You do not have to move your fingers to click the top row reach keys.
1. True
2. False

Answers

False you have to move your fingers

Document accurately describes the differences between servers and computers and between local and wide area networks. Document provides at least four suggestions including password managers and safe browsers.

Thinks someone could help me out with this? ​

Answers

Answer:

Cell towers and internet uses allow local and wide area networks, but they also allow you to steal IP and things like that.

Explanation:

This is quite difficult. I appologize if I get this wrong.

(Also if you upload a file for someone to answer, and they give you a link, don't click on it!! They track your IP address and things like that!)

Meat and poultry exposed to some forms of radiations to extend shelf life. *

Answers

Answer:

Food Irradation

Explanation:

:)

PLS HELP MEE!!!

Which characterization would accurately describe hump notation?


1. starting with uppercase letters, followed by the underscore and dollar sign


2. starting with lowercase letters, followed by an underscore, and followed by lowercase


3. starting with lowercase letters, using uppercase letters for the first letter in a new word


4. starting with a dollar sign, using lowercase for the remaining parts of each word

Answers

Answer:

starting with lowercase letters, using uppercase letters for the first letter in a new word

Explanation:

starting with a dollar sign, using lowercase for the remaining parts of each word

Actuators drive everything that moves on a competition robot. The most
common type of actuator in this application is a motor; in particular, VEX
Robots utilize____Motors. *

A)Direct Speed

B)Direct Current

C)Free Current

D)Direct Circulating

Answers

Answer:

c

Explanation:

HELP ASAP
What can be created to handle large numbers of meeting responses?
a task
an event
a new rule
a calendar

Answers

Answer:

a new rule

Explanation:

Sending meeting invitations, updates and receiving responses generates many messages.

And for this reason we create a rule that filters all meeting related messages to a specific folder and handles a large number of meeting responses.

I think it would be a calendar as it is a great was to keep up to date while handling this situation. Hope this Helps!

Which of the following algorithms is the same as the flowchart shown below?

Answers

Answer:

i believe it’s c

Explanation:

A computer game picks a random number between 1 and 100, and asks the player to guess what the number is. If the player makes a correct guess, the game congratulates them, and stops. If the player does not make a correct guess, the game tells the player that their guess is either too high, or too low. If the player guesses with an answer that is not a number between 1 and 100, an error message is displayed. The game continues to give the player chances to guess, until the player guesses correctly. You are going to plan an interactive program to implement this game. do this using scratch

Answers

Answer:

In Python:

import random

computerguess = random.randint(1,101)

userguess = int(input("Take a guess: "))

while not (userguess == computerguess):

   if userguess<1 or userguess>100:

       print("Error")

   elif not (userguess == computerguess):

       if userguess < computerguess:

           print("Too small")

       else:

           print("Too large")

   userguess = int(input("Take a guess: "))

print("Congratulations")

Explanation:

This imports the random module

import random

Here, a random number is generated

computerguess = random.randint(1,101)

This prompts the user for a guess

userguess = int(input("Take a guess: "))

The following loop is repeated until the user guess correctly

while not (userguess == computerguess):

If user guess is not between 1 and 100 (inclusive)

   if userguess<1 or userguess>100:

This prints error

       print("Error")

If the user guessed is not correct

   elif not (userguess == computerguess):

If the user guess is less

       if userguess < computerguess:

It prints too small

           print("Too small")

If otherwise

       else:

It prints too large

           print("Too large")

This prompts the user for a guess

   userguess = int(input("Take a guess: "))

The loop ends here

This prints congratulations when the user guess correctly

print("Congratulations")

Which of these is a way of making applications less vulnerable to hacking?

make Deny the default

make Allow the default

apply the principle of greatest privilege

have a single point of defense

Answers

(First one )
---------------------
With deny as the default, applications are less vulnerable to hacking. (so yeah the first one lol)

___________ is the number of pixels per inch

Answers

Answer:

Explanation:

What ever the number is inches is divide it by pixels

PlEASE HELP!

Identify in the space below three rules you feel are most important for deciding what personal information is
appropriate to post online.

Answers

Answer:

.

Names. Be careful how you use your name. Avoid using your full name. Even a nickname could spell trouble -- for instance, if it says something suggestive about your character, if it's a name you already use with others who know your real identity, or if it's made up from your real name (say, from your initials). First names are best, unless yours is extremely unusual. These days, many people do use their full names for online posting -- on social media sites and blogs for example. Just know that in doing so you're raising the risk of becoming an identity theft victim.

Photos. Bearing in mind Golden Rule #1, don't post photos you wouldn't want everyone to see. Full face, high resolution photos may be "snagged" (copied) and used for identity theft. Some people don't know how easy this is to do with any photo, with just a couple of clicks. Also, as a matter of etiquette, don't post photos of others without their permission, unless you're prepared for the consequences if the other person doesn't think it's funny. For preference, use photos in which identities are obscured. And, as a general rule, don't post photos of children online (especially not other people's children without permission). If you want to share photos of your kids, put them in a private online album, accessible by invitation or password. Or email them directly to your friends.

Explanation:

Other Questions
what is "the rule of law"? In what ways does Joan's behavior highlight larger trends in late medieval spirituality and popular piety? PLEASE HELP THIS ASSIGNMENT IS OVER DUE PLZ HELP WILL BRAINLIEST balance the following equation: N2 + H2 --> NH3 Write the coefficients that you decide to balance the equation like this 3, 4, 3. If you do not add a coefficient in front of an element or compound, use a 1 in your answer. For instance the for this balanced equation: 2H2 + O2 --> 2H2O you would write your answer: 2, 1, 2 This is a trigonometry question When magnesium reacts with sulfuric acid the products are magnesium sulfate and hydrogen. If there are 15 grams of magnesium at the start of the reaction, how much magnesium will be present in the magnesium sulfate 4. Find the following function values. (3)/ (3) ( (2)) f(f'(-4)) g(x+2) the narrator of the namesake is what type of narrator?limited narrator omniscient narratorfirst-person narratorsecond-person narrator PLEASE HURRY IM RUNNING OUT OF TIME ON MY TESTGIVING 50 POINTS Which statement BEST explains why the percentage of union membership in nonagricultural jobs today is lower than it was in the mid-1940s?A.Waves of recent strikes and economic hardships have caused growing anti-union feelings.B.Mediation and arbitration have reduced the need for picket lines and active striking by union members, resulting in decreased interest and awareness of unions.C.The risk of losing ones job due to union membership is too great of a risk in unstable economic times.D.The vast improvements already made have reduced the incentive to push for change. A compound and oxidant react to produce heat and a new product is what reaction In VWX, x = 41 cm, v = 17 cm and W=134. Find the length of w, to the nearest centimeter. I need help thank you [tex] \sqrt{121} [/tex] plz help me thank you and have a nice afternoon How is the phytoplankton affected by the changes we see in the global carbon cycle, write the claim, evidence, reasoning. There are 12 cupcakes. 34 of them have pink icing.13 of the cupcakes with pink icing have sprinkles. How many of the cupcakes have pink icing and sprinkles? hello help please ill mark brainliest!!! Use the distributive property to write an equivalent expression. 4(x+2) convert 2 1/2 cups to pints At the start of 6th grade, Maya measured 140 cm tall. At the start of 7th grade, Maya was 150.5 cm tall. What is the percent increase in Maya's height between the start of 6th and 7th grade?