Jackie is planning a surprise birthday party for her best friend and is researching a location to have the party. Jackie found a great location, but they are requesting that she send her personal information over the internet. What should Jackie do?
A) Ignore the request and not enter any personal information.
B)Provide only her name and date of birth.
C) Provide only her name and address.
D) Provide the requested information.
PLS HELP ASAP
Answer:
A
Explanation:
She is going to get scam
Answer:
A) Ignore the request and not enter any personal information
Explanation:
I just took the exam and I got this question right
PlEASE HELP!
Identify in the space below three rules you feel are most important for deciding what personal information is
appropriate to post online.
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:
Many companies organize employees into work teams. The team meets to make plans, determine how work will be completed, and divide the work among the team members. The team is responsible for meeting objectives and may even have some say about their budget. Work teams still report to a manager and can ask for assistance when needed. True False
Write a program using For loop to find the cube of the numbers from 50 to 100
Answer and Explanation:
For JAVA programming.
for(int i = 50; i <= 100 i++;)
{
int cubedNum = Math.pow(i, 4);
System.out.println(cubedNum);
}
ANSWER ASAP!!!!!!!!
Which statement regarding dialogues in multiplayer games is true?
A.
Dialogues are based only on players’ actions.
B.
Dialogues are restricted to the game’s characters.
C.
Dialogues may be between the game’s characters as well as the players.
D.
Dialogues serve the sole purpose of advancing the storyline.
E.
Dialogues are based only on events that have occurred in the game.
Answer:
The answer to this question will mostly be E
Heather just received a customer payment and selected Undeposited Funds as the Deposited to account. Where can she see if she got it right?
Answer: Sales Center > All Sales, then select Open Invoices on the money bar
Explanation:
The options include:
• Sales Center > Invoices tab, then select Not Deposited on the money bar
• Sales Center > All Sales, then select Unbilled Activity on the money bar
• Sales Center > All Sales, then select Open Invoices on the money bar
• Sales Center > Invoices tab, then select Deposited on the money bar.
First and foremost, we should note that Heather will need to view the sales page. The sales page will provide her with the transaction that occured and the invoices.
To know where she can view the transaction that she processed, she need to go to the sales center. Then click on all sales. Once this is done, the money bar will be seen which will provide her with the status of the sales transactions and the paid invoices.
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
Answer:
code 345code 4537
Explanation:
int x = 42
fill in the missing part of the following code to divide x by 3 using the shorthand division operator
What validation type would you use to check that numbers fell within a certain range? a) range check b)presence check c)check digit d)consistency check
Answer:
a) range check
Explanation:
Validation can be defined as an automatic computer check that is designed to ensure any data entered is sensible, consistent, feasible and reasonable.
Basically, there are five (5) main validation methods and these includes;
I. Presence check: checks that the user enters (inputs) data into the field. It ensures a field isn't accidentally left blank.
II. Length check: checks that the data entered isn't too short or too long. It ensures that the data meets the minimum characters.
III. Type check: checks that the data entered is in the right format. For example, string, integer, float, etc.
IV. Check digit: checks that the digit entered is acceptable and consistent with the rest of the digits.
V. Range check: checks that the data entered is between the accepted lower (minimum) and upper (maximum) level.
Hence, range check is a validation type you would use to check that numbers fell within a certain range.
For example, 0 < x > 1000 is a range check.
Sorry this ain't bout HW but how do I get this off my screen it's pretty annoying
HOW TO USE THIS IN A STORY CAN ANYONE HELP PICK % WORD FROM THE PAGE AN MAKE A STORY WHY DO I LIKE SUMMER ?????////
get 60 piont if you if you help meeeeeeeeeeee
ASAPPPPPPPPPPPPPPPPPPPPPP
The sunshine
Light mornings
Long light nights
BBQs in the garden
The smell of sun cream
Pretty wildflowers
Cloudless blue skies
Going to the beach
Feeling the warm sun on your face
Summer clothes
Sunglasses
Picnics in the park
Long walks
Sitting out on a warm evening
Eating fresh tasty salads
Drinking sangria
Orange glowy sunsets
Fresh air
Exploring new places
Ice cream (or Dairy Free alternative)
Summer playlists
Road trips
Eating fresh strawberries
Ice cold drinks on a hot day
The smell of freshly cut grass
Not having to wear a jacket when out
Autumn is just around the corner
Holidays at home or abroad
Salty sea breezes
Summer always seems to make people happier
Answer:
Picnic in the Park
Explanation:
Parks are my favorite spots to chill or go for a stroll. Parks make walking in a neighborhood more fun and offer space for common sports, promoting physical activity. They have hiking trails and other amenities to get people moving. Every place, in my opinion, needs some green space where people can get away from the crowds. I live near a park, so if the weather is good, I usually go there once or twice a week. Therefor, my favorite summer activity is going to the park.
3. Rajat wants to assign green colour to a paragraph. Write the code that will help him in completing the task
Answer fast , will mark branliest .
Explanation:
use the style attribute
SELF-CHECK 1.2
LO1. Plan and prepare for work
A. Identification.
Directions. Identify what is referred to in each number and write your
answer on a separate sheet of paper.
______1. A drawing sheet that contains perspective, site development title,
page and sheet index.
______2. A drawing of the lot showing the setback and development of the
house in relation to the lot.
______3. The top view of the site or lot where the proposed house will be
built.
______4. Generally includes title block, table of contents, and
signs and sealed of the duly licensed and registered professionals
in the plans.
______5. He signs in the lot survey plans.
labels for
I'll give you a brainliest please answer it
Answer:
1. Architectural sheet.
2. Site plan.
3. Floor plan.
4. Title page and index.
5. Geodetic Engineer.
Explanation:
1. Architectural sheet: A drawing sheet that contains perspective, site development title, page and sheet index. It is generally used by architects as a graphical representation of a development plan or project.
2. Site plan: A drawing of the lot showing the setback and development of the house in relation to the lot.
3. Floor plan: The top view of the site or lot where the proposed house will be built.
4. Title page and index: Generally includes title block, table of contents, and signs and sealed of the duly licensed and registered professionals in the plans.
5. Geodetic Engineer: He signs in the lot survey plans. A geodetic engineer studies geodynamic phenomenon such as tide, polar motion and the earth movement.
which tool is used to select adjacent areas of the same colour in an image.
Answer:
Magic wand tool
Hope it helps
Please mark me as the brainliest
Thank you
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
Hello Everyone,
Please I have been have problems answering this question. I do not know if anyone could be of help to me.
Describe the difference between objects and values using the terms “equivalent” and “identical”. Illustrate the difference using your own examples with Python lists and the “is” operator.
Describe the relationship between objects, references, and aliasing. Again, create your own examples with Python lists.
Finally, create your own example of a function that modifies a list passed in as an argument. Describe what your function does in terms of arguments, parameters, objects, and references.
Create your own unique examples for this assignment. Do not copy them from the textbook or any other source
Meat and poultry exposed to some forms of radiations to extend shelf life. *
Answer:
Food Irradation
Explanation:
:)
I need anyone's help so please do so!
Do some research online about plasmapheresis. Then write a paragraph explaining what it is and in what kind of situation it would be useful to a patient.
the person who receives an e-mail
Tema: LA CIENCIA Y SUS APORTES AL MEJORAMIENTOO TÉCNICO SEGUNDO GRADO SECUNDARIA 1.¿Cuál es el inicio de los procesos técnicos y científicos? 2. En la actualidad ¿ De que están hechas la mayoría de las construcciones? 3.¿Que material usaron en la construcción de sus pirámides de los teotihuacanos? 4.Este material de construcción es artesanal, no contamina, es térmico y está hecho con tierra y paja.
Answer:
1. El inicio de los procesos técnicos y científicos es la realización de observaciones objetivas y basadas en hechos previos o recurrentes y verificables como verdaderas o falsas por otros observadores.
2. La mayoría de los edificios de hoy en día están hechos de hormigón que consiste en cemento adherido en una proporción fija con agregados, que se pueden moldear en la forma deseada cuando se convierten en una lechada. El agua del proceso de poro se evapora fácilmente y el hormigón se seca después de varios días para formar una estructura sólida de la forma deseada.
3. El material utilizado en la construcción de las pirámides de Teotihuacanos incluye una roca volcánica, conocida como tezontle tallada
4. Un material de construcción artesanal que no contamina, es térmico y está hecho con tierra y paja es el adobe
Un adobe consiste en una mezcla de paja, arena y arcilla, así como otros materiales fibrosos que se secan al sol después de moldear la mezcla en ladrillos.
Un adobe tiene una alta capacidad calorífica y, por lo tanto, una habitación con paredes de adobe se mantiene fresca en climas cálidos, mientras que en climas fríos, la pared de adobe libera calor lentamente para mantener la habitación caliente
Explanation:
A. RHYTHM
B. HARMONY
C. INFORMAL BALANCE
D. FORMAL BALANCE
E. PROPOTION
F. REPETITION
G. EMPHASIS
H.GRADIATION
I. BALANCE
G.RADIATION
1. It is a type of balance when the structure decoration and
accessories are different both sides from the center of the design.
2. These are smooth movement repeated again and again
3. It is a type of rhythm in which the eyes can move easily from
one part to the other on the small lines created by gathers
4. It a
principle of design in which from the center of the dress the
design should be identified on both sides.
5. It is a type of rhythm in which the parallel lines are formed by the
use of seams, lace, etc. which helps uninterrupted eye movement
6. It is a type of rhythm can be created by gradual change of lines,
shape or shade of the color
7. It is a type of balance shown when pants have pockets on both
sides with the same style, size and shape
8 It refers to a principle of design in which a large hat on a small
boy is out of proportion to his size.
9. It is a principle of design when a pretty collar, an attractive bow
bow or a lovely pin are observed
10. It is a relationship of different portion of a dress
Answer:
1. Informal balance.
2. Rhythm.
3. Radiation.
4. Balance.
5. Repetition.
6. Gradation.
7. Formal balance.
8. Proportion.
9. Emphasis.
10. Harmony.
Explanation:
Principles of designs can be defined as concepts which are typically used for organizing or arranging the structural
elements of a design. Thus, the ways in which these principles are applied generally affects the message of a piece of work.
1. Informal balance: It is a type of balance when the structure decoration and accessories are different both sides from the center of the design.
2. Rhythm: These are smooth movement repeated again and again
3. Radiation: It is a type of rhythm in which the eyes can move easily from one part to the other on the small lines created by gathers
4. Balance: It is a principle of design in which from the center of the dress the
design should be identified on both sides.
5. Repetition: It is a type of rhythm in which the parallel lines are formed by the use of seams, lace, etc. which helps uninterrupted eye movement
6. Gradation: It is a type of rhythm that can be created by gradual change of lines, shape or shade of the color
7. Formal balance: It is a type of balance shown when pants have pockets on both sides with the same style, size and shape.
8. Proportion: It refers to a principle of design in which a large hat on a small boy is out of proportion to his size.
9. Emphasis: It is a principle of design when a pretty collar, an attractive bow or a lovely pin are observed.
10. Harmony: It is a relationship of different portion of a dress.
What is the theory of relativity? How does it relate to the creation of electricity through solar energy?
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.
Charles was supposed to present his PowerPoint slides to his classmates in a classroom, but now he has to present in the auditorium in front of his entire grade. What change will Charles have to make when he presents his slides?
He will have to change his topic.
He will have to rearrange his slides.
He will have to speak more loudly and clearly.
He will have to tell his friends about the change.
HELP ASAP
Answer:
it is c
Explanation:
cus of the long and huge hall of u have in ur school
Answer: C
Explanation: Because he will need the whole grade to hear, or you know grab a mic :D HOPE YOU ENJOY YOUR DAY
Which is a type of intellectual property law? Select 4 options.
copyright
brand
patent
trademark
trade secret
TRADE SECRETS
Trade secrets refer to specific, private information that is important to a business because it gives the business a competitive advantage in its marketplace. If a trade secret is acquired by another company, it could harm the original holder.
Examples of trade secrets include recipes for certain foods and beverages (like Mrs. Fields’ cookies or Sprite), new inventions, software, processes, and even different marketing strategies.
When a person or business holds a trade secret protection, others cannot copy or steal the idea. In order to establish information as a “trade secret,” and to incur the legal protections associated with trade secrets, businesses must actively behave in a manner that demonstrates their desire to protect the information.
Trade secrets are protected without official registration; however, an owner of a trade secret whose rights are breached–i.e. someone steals their trade secret–may ask a court to ask against that individual and prevent them from using the trade secret.
PATENTS
As defined by the U.S. Patent and Trademark Office (USPTO), a patent is a type of limited-duration protection that can be used to protect inventions (or discoveries) that are new, non-obvious, and useful, such a new process, machine, article of manufacture, or composition of matter.
When a property owner holds a patent, others are prevented, under law, from offering for sale, making, or using the product.
COPYRIGHTS
Copyrights and patents are not the same things, although they are often confused. A copyright is a type of intellectual property protection that protects original works of authorship, which might include literary works, music, art, and more. Today, copyrights also protect computer software and architecture.
Copyright protections are automatic; once you create something, it is yours. However, if your rights under copyright protections are infringed and you wish to file a lawsuit, then registration of your copyright will be necessary.
TRADEMARKS
Finally, the fourth type of intellectual property protection is a trademark protection. Remember, patents are used to protect inventions and discoveries and copyrights are used to protect expressions of ideas and creations, like art and writing.
Trademarks, then, refer to phrases, words, or symbols that distinguish the source of a product or services of one party from another. For example, the Nike symbol–which nearly all could easily recognize and identify–is a type of trademark.
While patents and copyrights can expire, trademark rights come from the use of the trademark, and therefore can be held indefinitely. Like a copyright, registration of a trademark is not required, but registering can offer additional advantages.
Answer:
C.
trade secrets
Explanation:
Sincerely : Baby weeb
PLS HELP! Prompt
What is exporting?
Answer:
spread or introduce (ideas and beliefs) to another country.
Explanation:
Exporting is sending goods or services to another country for money. For example, Japan exported $16 million worth of mussels, meaning they sold $16 million worth of mussels to another country. Hope this helps!
ANSWER ASAP!!!!!
Which statement best describes licensed characters?
A.
They are based on real-life characters from past periods in history.
B.
They are given human qualities, and star in games for young children.
C.
They are based on preexisting media.
D.
They are based on legend and folklore.
E.
They are characters specifically created for a game.
Answer:
my friend thinks its c
hes too smart to be wrong 100% :DDDD
Explanation:
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)
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)
Explain the process of a for loop and how it is used in code
Ex:
FOR Count= 1 TO 50
.......................
Body
......................
NEXT
Next keeps incrementing count by 1
Hope it helps
To add a hyperlink to your presentation, select the text, choose Hyperlink from the Insert menu, and then
type the word “hyperlink" in the Target field.
O click Apply.
change the font to blue.
O type the Internet address in the Target field.
Answer:
I guessed D, taking it right now, sorry if it's wrong
Explanation:
Answer:I guess D
Explanation:
If a coach sent a weekly update to her team every week, it would be to her benefit to create a _____ to expedite the process.
confidential group
contact group
custom contact
networked group
Answer:
contact group
Explanation:
Answer:
contact group
Explanation: