Which term describes the gallery that allows you to customize and format text as a graphic?

Pull Quote
Text Box
WordArt
Drop Cap

Answers

Answer 1

Answer:

Word Art

sWord art as the ability to be custom designed and formatted as a graphic

Answer 2

Answer:

Word Art

Explanation:


Related Questions

What is presentation

Answers

To present something infront of a crowd

Answer:

Presentation is the giving of something to someone, especially as part of a formal ceremony.

Explanation:

questions about the data policy and privacy policy of YT
the questions are in the picture attached below!

Answers

Answer:

I'm confused

Explanation:

Which term best describes a popular marketing strategy that centers

around the acquisition, enhancement, and retention of long-term

relationships that add value for the organization and the customer?

Answers

Answer:

Customer Relationship Management (CRM).

Explanation:

CRM is an acronym for customer relationship management and it typically involves the process of combining strategies, techniques, practices and technology so as to effectively and efficiently manage their customer data in order to improve and enhance customer satisfaction.

This ultimately implies that, these employees are saddled with the responsibility of ensuring the customer are satisfied and happy with their service at all times.

Marketing can be defined as the process of developing promotional techniques and sales strategies by a firm, so as to enhance the availability of goods and services to meet the needs of the end users or consumers through advertising and market research. It comprises of all the activities such as, identifying, anticipating set of medium and processes for creating, promoting, delivering, and exchanging goods and services that has value for customers.

Basically, CRM involves understanding customer needs, building and maintaining healthy long-term relationships with them, in order to add value or scale up your business.

Hence, customer relationship management (CRM) is one of the popular marketing strategy that is mainly based on the acquisition, enhancement, and retention of long-term relationships that add value for the organization and the customer.

When planning your App what difficulties did come across and why?

Answers

Answer:

1. An engaging app idea

2. Sufficient funds

3. Cross-platform apps

4. Interactive apps

5. Application content management

ETC...

There are a lot difficulties you might come across but thats based on your knowledge

What are the uses of various lights? How are they all different? How do you decide on their usage? How can you use natural light to your advantage?

Answers

Answer:

lights

Explanation:

Using the simple alphabet code below, you will decode and encode the message. Write the Full
Message on the line given. Your spaces have been indicated.
1
3
5
6
7
8
9
10
12
13
2
b
4
d
11
k
a
с
e
h
i
m
f
19
j
23
1
25
14
15
16
17
18
20
21
22
24
26
Z
n
O
p
q
r
t
u
V
w
х
у

Answers

Answer:

acefghijlmb2d4k1113589136510waynopqrtuvx2261415161718202122232425

Explanation:

I need the answer ASAP. I’ll mark brainliest if right

Answers

Answer:

copy or repeat

Explanation:

Select the correct answer. In which item is energy stored in the form of gravitational potential energy? A. a slice of bread B. a compressed spring C. an apple on a tree D. a stretched bow string

Answers

Answer:

C. an apple on a tree

Explanation:

Energy can be defined as the ability (capacity) to do work. The two (2) main types of energy are;

a. Kinetic energy (KE): it is an energy possessed by an object or body due to its motion.

b. Gravitational potential energy (GPE): it is an energy possessed by an object or body due to its position above the earth.

Mathematically, gravitational potential energy is given by the formula;

[tex] G.P.E = mgh[/tex]

Where;

G.P.E represents gravitational potential energy measured in Joules.

m represents the mass of an object.

g represents acceleration due to gravity measured in meters per seconds square.

h represents the height measured in meters.

In an apple on a tree, energy is stored in the form of gravitational potential energy.

he superclass Student contains: a constructor that accepts a String corresponding to the name of the school the student attends a toString method that returns 'student at X' where X is the name of the school the student attends. Write a public subclass HighSchoolStudent, based on Student, which contains: a constructor accepting a String which is used as a parameter to the superclass constructor a toString method that returns 'high school student at X'. This method must use the toString method of its superclass.

Answers

Solution :

public [tex]$\text{class}$[/tex] Student {

[tex]$\text{protected String}$[/tex] school[tex]$;$[/tex]

public [tex]$\text{Student}$[/tex](String school) {

[tex]$\text{this.school}$[/tex] = school;

}

public String [tex]$\text{toString}()$[/tex] {

return [tex]$\text{"student at"}$[/tex] + school;

}

}

HighSchool[tex]$\text{Student.java}$[/tex] :

public class [tex]$\text{HighSchoolStudent}$[/tex] extends Student {

public [tex]$\text{HighSchoolStudent}$[/tex](String school) {

super[tex]$\text{(school)}$[/tex];

}

public String [tex]$\text{toString}()$[/tex] {

return [tex]$\text{"high school"}$[/tex] + super.[tex]$\text{toString}()$[/tex];

}

}

In order to restrict editing to a document, a user will go to Review, , Restrict Editing, and will then select what kinds of editing are allowed.

Answers

Answer:

Then select No Changes (Read only) from the drop-down list

Explanation:

Why do computers use binary code?

Answers

Answer:

To make sense of complicated data, your computer has to encode it in binary. Binary is a base 2 number system. Base 2 means there are only two digits—1 and 0—which correspond to the on and off states your computer can understand

Answer:

It has two clearly distinct states that provide a safety range for reliability and the least amount of necessary circuitry, which results in the least amount of space, energy consumption, and cost.

Match each role to the corresponding web development task.

Answers

Answer:

1. Art director: selecting color palettes.

2. Web project manager: creating budget spreadsheets.

3. Usability lead: researching target audiences.

4. Developer: coding.

Explanation:

HTML is an acronym for hypertext markup language and it is a standard programming language which is used for designing, developing and creating web pages.

Generally, all HTML documents are divided into two (2) main parts; body and head. The head contains information such as version of HTML, title of a page, metadata, link to custom favicons and CSS etc. The body of the HTML document contains the contents or informations of a web page to be displayed.

The various role performed during the web development process (task) includes;

1. Art director: selecting color palettes. This individual is saddled with the responsibility of choosing the color that best fits a website.

2. Web project manager: creating budget spreadsheets. He or she is responsible for performing tasks such as creating a financial (budget) plan, start and finish date (timing), procurement, etc.

3. Usability lead: researching target audiences. This individual is saddled with the responsibility of surveying and collecting data from the demography for which the website is designed.

4. Developer: coding. This is the technical expert referred to as a web developer and is responsible for writing the set of instructions (codes) that enables the website to work properly and serve a purpose.

In Java:

Assume the availability of an existing class, ICalculator, that models an integer arithmetic calculator and contains:

a private instance variable currentValue that stores the current int value of the calculator
a getter method for the above instance variable
methods add, sub, mul, and div
Each method in ICalculator receives an int argument and applies its operation to currentValueand returns the new value of currentValue. So, if currentValue has the value 8 and sub(6) is invoked then currentValue ends up with the value 2, and 2 is returned.

Write a public subclass, ICalculator1, based on ICalculator. The class ICalculator1 has one additional method, sign, that receives no arguments, and doesn't modify currentValue. Instead, it simply returns 1, 0 or -1 depending on whether currentValue is positive, zero, or negative respectively.

Answers

Answer:

A subclass?

Explanation:

A public subclass for ICalculator1 has one additional method, sign, that receives no arguments, and doesn't modify current Value. Instead, it simply returns 1, 0 or -1 depending on whether current Value is positive, zero, or negative respectively.

What is public subclass?

A member's access is declared to be public with the Java keyword public. All other classes can see members of the public class. This implies that a public field or method can be accessed by any other class. In addition, public fields can be changed by other public subclass or classes unless they are marked as final.

Further a subclass is defined as a class that is descended from another class (also a derived class, extended class, or child class). A superclass is the class from which a subclass is descended (also a base class or a parent class).

A public subclass for ICalculator1 has one additional method, sign, that receives no arguments, and doesn't modify current Value:

In Java,

public class ICalculator1 extends ICalculator {

public int sign() {

if (getCurrentValue() > 0)

return 1;

else if (getCurrentValue() == 0)

return 0;

else

return -1;

}

}

Therefore  the availability of an existing class, I-Calculator, that models an integer arithmetic calculator, above public subclass has been made.

Learn more about public subclass:

https://brainly.com/question/15992142

#SPJ12

I just played slither.io and got a length of 50632! Can you beat that? http://slither.io



I WANNA SEE YOU BEAT ME ¯\_(ツ)_/¯ if my name is on the leader board it's kirishima​

Answers

Answer:

Nice

Explanation:

Answer:

well yes

Explanation:

can you plz tap the thanks button and rate 5 stars thx

Cindy, our company’s Chief Technology Officer (CTO), suspects that someone is trying to hack into the company, and she’s heard that you have some cybersecurity skills that could prove useful. Cindy suspects that there are some hackers who are using SQLi to launch attacks and steal information from one of the databases and also to hijack users’ sessions and take over certain accounts. Can you use your cybersecurity penetration testing skills with SQLi to track down the hackers?
Cindy will need for you to submit a report with recommendations on your findings, which is pretty typical for others in your industry with this type of role.
Write a security assessment report that will be sent to the technical team and senior management, and specifically Cindy, the CTO. Your report should be approximately 3 pages and address the following:

Summary of Findings (overview of vulnerabilities found)

Types of tests used (with details on outcomes)

Impact of Threats

How any parts of the CIA Triad could be compromised with the vulnerabilities

Does OWASP have any recommendations that you can apply?

Executive Summary (what recommendations would you give to the CTO)

Present potential solutions, mitigations, or other
suggestions for reducing or eliminating the vulnerability​

Answers

Answer:

I'm a cyber security enthusiast

Explanation:

How do you want the report delivered to you?

WHAT SYPHERPKS REAL NAME

Answers

Answer:

Ali Hassan

Explanation:

Answer:

His real name is Ali Hassan. Because, he was born from Austin, Texas

Explanation:

Best beginner racing drones?

Answers

One that are somewhere between 200-400 for the good quality

Answer:

Walkera Runner 250

Explanation:

This drone is durable, and offers a lot of features while not totally being over the top!

in what tab the translate button found

Answers

Answer:

Display the Review tab of the ribbon and click the Language tool and then click Translate. Click Translate Selection. Word displays the Translator pane. (A window may appear on the screen after clicking Translate Selection asking you to turn on Translation Services.)

     

                                      Hope this helps : )

In your own words! Give me an example of Digital Literacy? (50 words
No links or I will report!!!!!!!

Answers

Answer: See explanation

Explanation:

Digital literacy is when an individual can compose, find, and evaluate, a clear and composed information on digital platforms.

It involves possessing the skills that one need to live, and learn, through the use of digital platforms such as social media, mobile

Example of digits literacy is the use of search engines, understanding how web browser can be used or sending of emails. etc

who doesn't like reeses

Answers

Answer:

I like Reeses. but then sometimes I don't

literally nobody lol

Data Warehouse: Mastery Test
CMS
ouronzarana
Select the correct text in the passa
Which phrase suggests that Dan wants to ensure accurate data in the data warehouse?
Dan and his team are in the process of finanga data warehouse for their organization
they stress on the importance of clear communication. Dan and his team create a test
arrange training for the business users of the data warehouse
Reset
Ne

Answers

Answer:

The phrase "create a test plan for testing data" suggests that Dan wants to ensure accurate data in the data warehouse

Explanation:

The phrase "create a test plan for testing data" clearly indicates that Dan and his team are inclined towards creating an accurate data base in the data warehouse as they plan to check/test the data before storing in the data bank.

essay about important of

education
and discipline?​

Answers

Answer:

Importance of Education & Discipline

Explanation:

Education is an enlightening learning process.

It enhances knowledge & perspective towards selves & outside world. It enriches our capabilities, virtues & minimises our vices.

Education is a crucial strong tool, which can empower & transform individuals & society, make world better.

Discipline is obedience to appropriate code of behaviour.

It is very integral to maintain orderliness, no chaos in life. It is interconnected with good qualities of dedication (commitment) to goal & hard work. So, it helps attain desired goal with positive outlook & sense of self accomplishment.

Abby wants a high-end computer system for her home office that can be upgraded. Which of the following should she choose?
Laptop
Gaming Console
Desktop
Server

Answers

Desktop, it can be customised more and laptops are poorly made often, gaming console makes no sense same with server

Decimal numbers are based on __________.

letters (a and b)
16 digits
10 digits
two digits (1s and 0s)

Answers

They are based on 10 digits.

I’m not sure.

Answer:

They are based on 10 digits.

Explanation:

I just did the test and got the answer right.

How does computer science play a role in art?

Answers

Answer:

Many artists now learn to code; computer scientists develop algorithms with aesthetics as the goal. Projects such as Deep Dream, a program that uses neural networks to produce new visuals, let anyone use AI approaches to generate, ostensibly, art.

please help
match the features with the software
Word Processor, Spreadsheet, Database

- addiction of images, drawings, tables and graphics to text
- centralized data management
- data security
- digital version accounting sheets
- supports multiple users for adding data simultaneously
- visual representation of data
- digital version of a typewriter

Answers

Answer:

word processor- addition of images, drawing tables, and graphics to texts and digital version of a typewriter. spreadsheet- digital version of accounting sheets and visual representation of data. database- centralized data management, data security, and supports multiple users for adding data simultaneously

Just switch the two I got wrong and you'll get the correct answers. :)

True or False A safety data sheet (SDS) is a technical document or bulletin that summarizes the health and safety information available about a controlled product.

Answers

Answer:

True.

Explanation:

The Occupational Safety and Health Administration (OSHA) is a federal agency saddled with the responsibility of assuring and ensuring safe and healthy working conditions for employees by setting and enforcing standards, providing education, trainings and assistance to various organizations.

According to the Occupational Safety and Health Administration (OSHA), trainings on the adoption and application of safety precautions (tools) such as wearing a personal protective equipment e.g masks (respirators), ear plugs, safety boots, gloves, helmet, etc. are very important and are essentially to be used by employees (workers) while working in a hazard prone environment or industries. Therefore, all employers of labor are required to provide work tools and ensure that their employees properly use those tools, as well as abide by other safety precautions and standards highlighted in the safety data sheet.

A Safety Data Sheet (SDS) can be defined as a text-based document or bulletin that provides information with respect to the chemical and physical properties such as flammability, temperature, radioactivity, etc., of a substance or equipment. Also, it contains information on the potential health hazards and safety precautions for proper use (handling), storage and transportation of such substance or equipment.

Hence, a safety data sheet (SDS) is a technical document or bulletin that summarizes the health and safety information available about a controlled product such as toxic chemicals, radioactive elements, weapons or ammunition, etc.

Which code segment results in "true" being returned if a number is even? Replace "MISSING CONDITION" with the correct code segment.

function isEven(num){

if(MISSING CONDITION){

return true;

} else {

return false;

}

}


A. num % 2 == 0;

B. num % 0 == 2;

C. num % 1 == 0;

D. num % 1 == 2;

Answers

Answer:

The answer is "Choice A".

Explanation:

In this code, a method "isEven" is declared that accepts the "num" variable in its parameter, and inside the method and if block is declared that checks the even number condition if it is true it will return a value that is "true" otherwise it will go to else block that will return "false" value, that's why other choices are wrong.

The correct code segment that tests if a number is even is num % 2 == 0

When a number is divided by 2, and the remainder after the division is 0, then it means that the number is an even number.

Assume the variable that represents the number is num

The condition that tests for even number would be num % 2 == 0

Hence, the correct code segment that tests if a number is even is (a) num % 2 == 0

Read more about boolean statements at:

https://brainly.com/question/2467366

What protects your computer so that it doesn't get a computer virus?

Answers

Answer:

an anti-virus program such as avg

An anti virus program or a vpn also protects your information and makes all of the stuff on your computer safe

Art directors win awards for their work, and awards can make their careers. Art directors win awards for work in fields like the following:

film
animation
television
advertising
gaming
For this project, focus on the career of one award-winning art director in one of the above fields and research award(s) that he or she has won through the Art Directors Guild within the past five years. .

As this is a visual arts area, you will need to present examples of the art. Be sure the Terms of Use from your sources allow for student use. You can research your topic and the available range of topics by a variety of means:

internet searches
movie databases
the award organization archives
industry news and magazines
Use reliable sources and factual content while keeping quotes to a minimum. Present the topic in your own words, and do not present copied text from published sources as your own reporting.

In your paper, include a timeline, a discussion of your chosen art director’s education, and career highlights. You will need to show why the art director won the award.

Your presentation should be 3-4 pages if written, or five minutes long if presented as a Power Point presentation. Use your own words, and use quotes sparingly. If your presentation is oral, practice presenting your project and adjust your length for a clear, calm, and concise delivery. Check your work.

Please include the following:

A title
Introduction to your topic
Why you chose it
Background info, and bio of the subject of your presentation
Explanations of terms as needed
What you found out about your subject
Examples, timeline, photos, artwork
What you particularly like about your subject
Conclusion, with personal ideas if you imagine a similar career for yourself
Citations of sources
Question # 1
File Upload
Submit your biography of an art director.

Answers

Answer:

N/A

Explanation:

im sorry mate, but this sounds like its supposed to be a paper by you, i cant write a paper for you, but i can help you make one, ive got some methods and tricks i can share to make it easier

again not trying to be mean, just trying to help the best way i can :)

Answer:

slide 1

A title

And the Art Direction Award Goes to...ME

slide 2

Intro to Tamara Deverell

Tamara Deverell is an actress who has appeared in Nightmare Alley (2021), Guillermo del Toro's Cabinet of Curiosities (2022), and Star Trek: Discovery (2017). Since February 7, 1992, she has been married to Ken Woroner. They've got two kids.

slide 3

Career

Tamara Deverell is a production designer who has worked on Star Trek: first two seasons as well as the live action episodes of Star Trek: Short Treks. She received the 2019 Directors Guild of Canada Award for Best Production Design - Dramatic Series for her work on the episode "Such Sweet Sorrow, Part 2" of Star Trek: Discovery.

Deverell was interviewed for the DIS Season 1 DVD and Blu-ray special feature "Designing Discovery," as well as the Star Trek: Discovery Official Companion feature "Making Discovery.

In the late 1980s, Deverell attended Capilano University in Vancouver, completed a four-year degree at the Emily Carr Institute of Art and Design, and began working in film art departments in Montreal.

slide 4

Citations of source

Image from wiki

Other Questions
verify the following i.[ -3/4]3 = -27/64ii. [-2/3]6 = 64/ 729 From a distance of 1217 feet from a spotlight,the angle of elevation to a cloud base is 43 degrees. Find the height of the cloud base to the cloud base to the nearest foot While walking to the gym, Marie decides to play a game using a her lucky fairsix-sided die (which she carries with her all the time). Tossing an even number wouldindicate walking forward that many steps and, likewise, tossing an odd number wouldmean walking backwards that many steps (i.e. if she tosses a 3, she walks backward 3steps). If the probability that after 2 rolls of the die, she is further away from the gymthat she was at the beginning of the game, can be represented as m/nfor m and n being relatively prime positive integers, find m^2 + n^2 ? What is the mean price of $29 $58 $15 $129 $75 $22 I need help ASAP, pls This table shows a proportional relationship between the grams of peanuts and raisins in a bag of trail mix. Enter the number of grams of peanuts in a bag for every 1 gram of raisins Exercise 10-2 Recording bond issuance at par, interest payments, and bond maturity LO P1 Brussels Enterprises issues bonds at par dated January 1, 2019, that have a $2,700,000 par value, mature in four years, and pay 6% interest semiannually on June 30 and December 31. 1. Record the entry for the issuance of bonds for cash on January 1. 2. Record the entry for the first semiannual interest payment and the second semiannual interest payment. 3. Record the entry for the maturity of the bonds on December 31, 2022 (assume semiannual interest is already recorded). Please with steps urgent Raymond's hair was 13 centimeters long after his last haircut, and it grows 7 centimetersevery year. Raymond last got his hair cut 6 years ago. How long is it now? Write and solve anequation to find the answer. Which well-respected military leader declared that the 45th Infantry Division, which included Oklahoman soldiers, was "one of the best fighting divisions in American history"? A. Admiral Chester Nimitz B. General George S. Patton C. General Dwight D. Eisenhower D. General Douglas MacArthur Rani takes a 40-question test. She answers 5% of the questions incorrectlyHow many questions does she answer incorrectly? Show your work. How would you feel if forced into hiding for two years, not being able to breathe fresh air and participate in any outdoor activities? PLEASE HELP !! ILL GIVE BRAINLIEST !! what was industrial revolution during world war 1? please give a good and detailed answer and only if you know it When is the carbon stored in plants released?a. during cellular respirationb. during photosynthesisc. when they died. none of the abovePlease select the best answer from the choices provided B who sings song passive voice Favorite animal paragraph In 2015, the population of the United States was about 320 million people. About 7 out of 10 Americans live in urban areas. How many Americans live in or near large cities? 224 million 32 million 96 million 10 millionplz I need help fast Why does understanding the Rock Cycle help us to plan living on the ocean? answer before it's too late! When the rudder moves to the left the plane will move to the right