6. In the Essentials workspace, there are three additional docks on the right of the screen. Each dock can be expanded
or collapsed, and each dock contains panels that can be docked or undocked. Starting from the center of the
workspace and working outward, name a panel from each dock:
a)?
b)?
c)?

Answers

Answer 1

Answer:

A. Brushes - you use to select, modify, or create a brush for use.

B. Character - gives option where you can use a text tool.

C. Info - displays general information about your image, info on color, position, dimension's, and more.

Explanation:


Related Questions

Functions can accept any number of arguments.
*
O True
False

A return statement in JavaScript operates like a *
Computer
Calculator
cell phone
None of the above
other


Answers

True
Calculator

Functions can accept any amount of arguments if the program allows it.
Return statements return any value specified

What do you need to start writing HTML?
Browser
Notes
Microsoft Word
Text Editor

Answers

Answer:

Text editor

Explanation:

You will need a text editor to start HTML

Which of these conclusions supports the fact that Eclipse is categorized as an IDE?


The user cannot use cheat sheets because it is frowned upon.

The user must get used to a proprietary and unique menu system.

The user must specify the programming language he or she wants to use.

The user must have a high level of expertise before quality results can be obtained.

Answers

Answer:

The user must specify the programming language he or she wants to use.

Explanation:

Which equipment is a standalone recorder?

Answers

Answer:

i think its Pro tool

Hopes it helps you

How is binary used in pixels and in sound?

Answers

Answer:

Sound needs to be converted into binary for computers to be able to process it. To do this, sound is captured - usually by a microphone - and then converted into a digital signal. The samples can then be converted to binary. They will be recorded to the nearest whole number.

Explanation:

is this it?

Answer:

Sound needs to be converted to binary.

Which of the following characterizes how an enabled security program might react to a new program installation on a computer system?


It might alert you to space requirement excesses.

It might report an error or tell you that the file is corrupted.

It might protect the new installation from getting viruses.

It might automatically set a restore point for the computer system.

Answers

Answer:

It might automatically set a restore point for the computer system

Answer:

It might report an error or tell you that the file is corrupted.

Explanation:

Write a program that will read two floating point numbers (the first read into a variable called first and the second read into a variable called second) and then calls the function swap with the actual parameters first and second. The swap function having formal parameters number1 and number2 should swap the value of the two variables

Answers

Answer:

In Python:

def swap(number1,number2):

   a = number1

   number1 = number2

   number2 = a

   return number1, number2

   

first = float(input("First Number: "))

second = float(input("Second Number: "))

print("After Swap: "+str(swap(first,second)))

Explanation:

The swap function begins here

def swap(number1,number2):

This saves number1 into variable a

   a = number1

This saves number2 into number1

   number1 = number2

This saves a (i.e. the previous number1) to number2

   number2 = a

This returns the numbers (after swap)

   return number1, number2

   

The main begins here

The next two lines prompt the user for first and second numbers

first = float(input("First Number: "))

second = float(input("Second Number: "))

This calls the swap function and print their values after swap

print("After Swap: "+str(swap(first,second)))

Which file type is used when forwarding a contact as a business card to another user to share their information?
PST
CSV
XML
VCF

Answers

Answer:

VCF

Explanation:

Answer:VCF

Explanation:

7. Write a python program to get the following output.
1-----99
2-----98
3-----97
. .
. .
. .
98-----2
99-----1
whats is the code of this question

Answers

Answer:

for i in range(1,100):

print(f"{i}-----{100 - i}")

OR:

for i in range(1,100):

print(str(i)+"-----"+str(100 - i)")

Explanation:

First off, we can see that the program starts off with an iteration of 1 and ends at 100. So we use this loop code to begin:

for i in range(1,100):

Then, we use this code to print the pattern (make sure to indent this):

print(str(i)+"-----"+str(100 - i)")

We can also use f-strings as a better and cleaner alternative (make sure to indent this too):

print(f"{i}-----{100 - i}")

This code will get us the output shown in the question.

Lena is completing her senior year of college and is living in an apartment with three friends. Her family has a subscription to HBO Go, and Lisa is able to use the log-on ID and password while she’s at college. Lena does not have cable TV or satellite TV as she typically streams shows or movies that are available online for free or through HBO Go. Several of Lena’s friends don’t have a subscription to Hulu, so Lena has given them her log-on ID and password so they can watch their shows. She doesn’t mind sharing the HBO Go subscription with her friends—what could it hurt? She has heard that the entertainment industry and HBO Go are upset over people sharing their subscription to the streaming services in this way. Lena’s sharing of her family’s HBO Go subscription is an example of:________
a) streaming piracy
b) illegal sharing
c) consumer copying
d) consumer misbehavior
e) digital stealing

Answers

Answer:

d) consumer misbehavior

Explanation:

This is an example of consumer misbehavior. What Lena is doing is not technically piracy or illegal because HBO has created the family feature on their accounts for the account to be used by multiple people at the same time. Yet, the feature was not intended to be used by individuals that are not technically family or even under the same roof. Therefore, what Lena is doing goes against HBO's reason for this feature and sharing the account as Lena is doing is ultimately hurting HBO's streaming service.

Which of these titles will work in Java syntax?


hello world

Helloworld

helloworld

HelloWorld

Answers

Answer:

I am pretty sure it is D, "HelloWorld"

Answer:

HelloWorld is the answer

Explanation:

Remember Java syntax for naming projects and classes: begin with a capital letter, and then capitalize the first letter of each new word.

9.6 question 1 edhesive

I need help

Answers

Answer:

its lit

Explanation:

Answer:

see image

Explanation:

it does what the instructions tell you to do.

Suppose you have a sentineled, doubly-linked list class as specified in project 2 and an object of that class called my_list. The function below finds and returns the first index of a specified value in that list, but portions have been removed. Using the minimum possible spacing at all in your answers, fill in the missing code. This algorithm does not employ the __iter__ and __next__ methods of the Linked_List class. Also note that this exercise does not include the object names, so your answers should include my_list. as appropriate. Finally, none of your responses should contain colons. As a reminder, the linked list implementation provides the following methods: insert_element_at(value, index) #cannot be used to append
append_element(value)
get_element_at(index)
remove_element_at(index)
__len__ #support for the len method to obtain the list's size
def index_of(my_list, val):
for k in :
if :
raise ValueError
and what is the performance?

Answers

Answer:

def index_of (my_list, val):

  for k in range(my_list.__len__):

      if my_list.get_element_at(k) == val :  

          return k

Explanation:

The python function "index_of" accepts two arguments, a list and the value to be searched for.

The for-loop iterates over the list using the "__len__" magic method to return the index of the searched term in the list if present.

What are some common uses of Excel?

Answers

Answer:

to make a spread sheet and to make sure you have all of the sum and didn[t miss a number

Explanation:

If you do not have the latest Java SDK in place when you download the Eclipse IDE, you will have to download the program again.


True

False

Answers

Answer:

True

Explanation:

What is the diagram of a combination circuit that accepts a 3 bit number and generates an output binary number equal to the square of input number?​

Answers

Answer:

see picture

Explanation:

Disclaimer: I didn't design this; I found it.

Search for "3 bit square circuit".

Use the drop-down menus to match each description to the correct term.

Has records and fields:
Has columns and rows:
Enables a user to interact with a database without working directly with data:
Works like a dialog box:
An interface that makes it easier for inputting data into a database:
Enables you to search several tables for data:

Answers

The application software Cermine is used to record data, query the database to find specified data, format the display of a database object, and search for data entry. Other part of the question is discussed below:

What are the perfect match of the given words?

Application Software Cermine: Matching the items with the best options

To answer this question, you need to match each description on the left with the corresponding item on the right:

The first description is "A collection of records" which matches with "record".

The second description is "A data retrieval tool that finds specified data within a database" and this matches with "query".

The third description is "The display format that you choose when working with a database object on the screen" and this matches with "form".

The fourth description is "All of the fields for a single database entity" and this matches with "record".

The last description is "A data entry tool you use to input data into a database" and this matches with "Search".

Therefore, The application software Cermine is used to record data, query the database to find specified data, format the display of a database object, and search for data entry.

Learn more about Programming:

brainly.com/question/23275071

#SPJ3

What is the most likely reason a user would export data with the formatting in place?

A) The fields will not have any errors.

B) The file will be much easier to read.

C) The file is automatically spellchecked.

D) The columns are automatically alphabetized.

Answers

Answer:

its d

Explanation:

Answer:

its b on edge

Explanation:

believe me if youre a viber

You are the IT administrator for a small corporate network. The employee in Office 2 is setting up a virtualization environment for software development. To make the system easier to use, she has requested dual monitors. You need to upgrade the computer in Office 2 to support dual monitors. You have purchased a second monitor and placed it in the Workspace (the monitor on the left). The video card in the computer currently only supports a single monitor, so you will need to upgrade the video card to support dual monitors. In this lab, your task is to configure dual monitors as follows:
Select and install a video card that provides you with dual monitor support for both monitors using a digital connection to the video card. When installing the video card, connect the PCIe power connector to the video card.
Connect the left monitor to the newly installed video card using an HDMI cable. The new monitor is already plugged into the surge protector.
Connect the original monitor to the new video card using the DVI-D cable.
Turn on the computer.
Turn on the new monitor.
Make sure Extend these displays is selected.
Configure the display properties to show the Start menu and taskbar on the left monitor.
Configure the relationship of the two monitors to reflect the physical placement of both monitors with the new monitor 2 on the left as the main display.

Answers

Answer:

Explanation:

There is no actual question in entry. The Information provided explains exactly how to set this up. Almost all video cards nowadays come with atleast 1x HDMI port and 1x DVI-D port so there should be no problem setting up the dual display. The surge protector basically provides power to the pc and monitor while also protecting it from sudden electricity spikes or low tension. Once the cables are connected to the proper slots you would simply need to go to the display settings in your OS and choose Extend these Displays under multiple displays. If the displays are not properly aligned you would then need to right click on the desktop and choose graphic settings. From there you need to click on the multiple displays tab and align the displays as you wish.

When handling a project scope creep, which are two things that all parties involved need to be aware of

Answers

Answer:

Additional resource needed for the projects

Additional time needed for the project

Explanation:

In any project handing their will expected diversion and add on requirement, so to complete a project additional time and additional resource is required to finish a project.

As advice due the project details, end user has keep enough buffer for deviations on resource of man power and additional times taken to finish the project.

While design the project each scope of work is measure with additional time to complete the task

Each scope of work is considered as task in project management.

Explanation:

Jobs with only 7 letters

Answers

Answer:

nursing

Explanation:

it's needs 20 words so don't mind thisssss part hehe

Answer: Teacher!!!!!!

For this exercise, you are going to create a part of an Animal hierarchy. Unlike some of our examples and the previous exercises, this exercise is going to have 3 levels in the hierachry.
At the top is the Animal class. Below that, we are going to have a subclass for Pets. Under pets, we are going to have 2 subclasses, Dogs and Fish.
You will need to create your class hierarchy and add instance variables, getters, and setter methods to accommodate the following information:
I need to save what type of animal I have (String variable)
I want to be able to save a name for my fish and dog (String variable)
I want to know which fish need salt water v. fresh water (String variable)
I want to know if my dog has been trained (boolean variable)
I want to know the size of my dog and fish (String variable)
Make sure you use common sense names for your variables!
public class Animal
{
}
public class Fish extends Pet public class Pet extends Animal public class Dog extends Pet
{ { {
} } }

Answers

Answer:

vehicle super class 9.1.4

Explanation:

So you need to create a super class containig all the animals use the class above for referance

What is Accenture's role in Multi-party Systems?
consulting on new technologies for investment purposes
developing a messaging solution between two companies
helping ecosystems reimagine their processes to unlock value
helping a single company develop a data ingress platform
I don't know this yet.

Answers

Answer:

helping a single company develop a data ingress platform

Explanation:

Accenture's role in Multi-party Systems is "helping a single company develop a data ingress platform."

This is evident in the fact that Accenture formed a strategic alliance with Marco Polo Network in recent times. The purpose of the alliance is to create a single data ingress platform for many connections. That is those on the network can easily install, either on-prem or through the cloud such as the Marco Polo platform, and then later incorporates the data into the enterprise resource planning system.

What are some common predefined number formats used in the United States? Check all that apply.
ratings
zip codes
kilograms
phone numbers
Social Security numbers
employee numbers

Answers

Answer:

B)__(Zip Codes)

D)__(Phone Numbers)

E)__(Social Security Numbers)

Amaya is curious how her computer actually boots up. Which of the
following should Amaya research to find out more?
hard drive
O RAM
OROM
O CPU

Answers

She should press OROM

Answer:

Options 1, Ram

Explanation:

That's how a computer works.

What are examples of Table Tools options that can help edit data?

Answers

Answer:

1 - change views

2 - change fonts

3 - add controls

4 - insert rows and columns

5 - add existing fields

6 - change margins

7 - view the property sheet

8 - change padding

Answer:

properties

add and delete

before change

Explanation:

a worldwide system of computer network​

Answers

Answer:

The internet is a worldwide system of computer network.

1. Mrs. Bautista has a bank balance of -42 dollars at the start of the month. After she
deposits 6 dollars, what is the new balance?​

Answers

Answer:

- 36

Explanation:

-42 + 6 = -36

Mrs. Bautista is kinda broke

Implement a class Quiz that implements the Measurable interface. A quiz has a score and a letter grade (such as B ). Use the implementation of the DataSet class to process a collection of quizzes. Display the average score and the quiz with the highest score (both letter grade and score).

Answers

Answer:

Explanation:

The following code is written in Java. The Measurable Interface and DataSet classes/Interfaces were found and implemented as requested. Then the rest of the code was created to work with and around those two methods to accomplish the task of Display the average score and the quiz with the highest score (both letter grade and score)

package sample;

interface Measurable {

       double getMeasure();

       String getGradeString();

}

class DataSet

{

   private double sum;

   private Measurable maximum;

   private String grade;

   private int count;

   public DataSet()

   {

       sum = 1;

       count = 0;

       maximum = null;

   }

   public void add(Measurable x)

   {

       sum = sum + x.getMeasure();

       if (count == 0 || maximum.getMeasure() < x.getMeasure())

           maximum = x;

           grade = x.getGradeString();

       count++;

   }

   public double getAverage() {

       return sum / count;

   }

   public Measurable getMaximum()

   {

       return maximum;

   }

}

class Quiz implements Measurable

{

   private double score;

   private String grade;

   public Quiz(double aScore, String aGrade)

   {

       this.score = aScore;

       this.grade = aGrade;

   }

   public double getMeasure()

   {

       return score;

   }

   public String getGradeString() {

       return grade;

   }

}

class QuizTester

{

   public static void main(String[] args)

   {

       DataSet quizData = new DataSet();

       Quiz q1 = new Quiz(85, "B");

       Quiz q2 = new Quiz(93, "A-");

       Quiz q3 = new Quiz(78, "C+");

       quizData.add(q1);

       quizData.add(q2);

       quizData.add(q3);

       System.out.println("Maximum: " + quizData.getMaximum().getMeasure() + ",  " + quizData.getMaximum().getGradeString());

       System.out.print("Average: ");

       System.out.printf("%.2f", quizData.getAverage());

   }

}

Define the Database ​

Answers

A structured base in a computer
Other Questions
I WILL GIVE BRAINLIEST. 1/2 of the problems on a 20-question test are algebra and one-half are geometry. Determine the probability that when 10 of these problems are chosen randomly, 1/2 of them are algebra questions. Express your answer as a decimal rounded to the nearest thousandth.Please help and explain :) A car dealership needs to transport 4,200 cars to an island. If the ferry can hold 60 cars, how many trips will the ferry need to make? In the process of photosynthesis, plants produce glucose. They use some of this glucose to grow. They store the rest in fruit and seeds in order toreproduce. What is the use of this stored glucose in the seed? which phrase best defines the word culture as it applies to one's community? representation of idea false stereotypes respect for state symbols customs and traditions You are given the expression x^2 +3x - 4. What is the value of x? how to solve (s + 5)(s - 5) What are the ocean zones of a marine ecosystem, from most shallow to deepest? The table shows values for functions f(x) and g(x) .x f(x)=4x+1 g(x)=3x+143 11 3592 7 1131 3 30 1 11 5 52 9 233 13 77What is the solution to f(x)=g(x) ?Select each correct answer.3210123 Woidtke Manufacturing's stock currently sells for $25 a share. The stock just paid a dividend of $1.60 a share (i.e., D0 = $1.60), and the dividend is expected to grow forever at a constant rate of 5% a year. What stock price is expected 1 year from now? Do not round intermediate calculations. Round your answer to the nearest cent. $ What is the estimated required rate of return on Woidtke's stock (assume the market is in equilibrium with the required return equal to the expected return)? Do not round intermediate calculations. Round the answer to two decimal places. % Why do you think that the Incas collected tribute (taxes)? Find the midpoint, M, of CD. C = (2,5) D = (-4,1)M = ([?],[ ]) Tom can mow a large estate's lawn in 6 hours. It would take Tom and Ralph 4 hours to mow the lawn ifthey work together. How long does it take Ralph to mow the lawn by himself? Please help I don't understand this Oxygen has an electronegativity of 3.4, phosporus has an electronegativity of 2.2 The bond between them isa. polar covalentb. non polar covalentc. metallicd. ionic Read the excerpt from the Supreme Courts Brown v. Board of Education decision. We conclude that, in the field of public education, the doctrine of "separate but equal has no place. Separate educational facilities are inherently unequal. . . . [The courts must issue] orders and decrees . . . to admit to public schools on a racially nondiscriminatory basis with all deliberate speed the parties to these cases. Brown v. Board of Education, Chief Justice Earl Warren, 19541955 Which phrase did state leaders who were opposed to integration use to drag out the process of desegregation? Social studies/Texas historyWhat did the Emancipation Proclamation do?a. Freed all enslaved people in rebelling Confederate statesb. Freed all enslaved people in the United Statesc. Gave citizenship to all African-Americans in the United Statesd. Gave African-American men the right to vote A low ph scale would indicate that the water is A. Neutral B. Basic C. Acidic Type the participial phrase in this sentence. The children laughing at the silly clown didn't notice the act in the next ring. What is the voting age in Mexico plz i give heart tho What does the variety of languages in South Asia indicate about the region'shistory?