File > Share > Export > Select file type.
What is abode XD?
Adobe XD is a vector-based user experience design tool for web apps and mobile apps, developed and published by Adobe Inc. It is used for designing, prototyping, and sharing user experiences for websites and mobile applications. It features reusable components, intuitive design tools, a powerful asset library, and integration with other Adobe Creative Cloud products. Adobe XD provides a comprehensive set of features and capabilities to help you create stunning designs and prototypes quickly, and easily share them with stakeholders.
You can export your project as an image file or a PDF file. You can also share an interactive prototype or a code snippet. With Adobe XD, you have the tools to create amazing designs and share them with the world.
To know more about adobe XD?
https://brainly.com/question/28374750
#SPJ4
Multimedia Presentation: Mastery Test
Select the correct answer.
Helen wants to use actual voice testimonials of happy employees from her company in her presentation. What is the best way for her to use these
testimonials in the presentation?
OA. She can provide a link in her presentation where the audience can listen to the testimonials.
She can ask the employees to write down their thoughts for the presentation.
She can record the testimonials directly in her presentation.
D. She can read out the testimonials from a transcript.
B.
O C.
Reset
>
Next
The best way for Helen to use actual voice testimonials of happy employees from her company in her presentation is A) She can provide a link in her presentation where the audience can listen to the testimonials.
Using actual voice testimonials adds authenticity and credibility to Helen's presentation.
By providing a link, she allows the audience to directly hear the employees' voices and genuine expressions of satisfaction.
This approach has several advantages:
1)Audio Engagement: Listening to the testimonials in the employees' own voices creates a more engaging experience for the audience.
The tone, emotions, and enthusiasm conveyed through voice can have a powerful impact, making the testimonials more relatable and persuasive.
2)Employee Representation: By including actual voice testimonials, Helen gives her colleagues an opportunity to have their voices heard and to share their positive experiences.
This approach emphasizes the importance of employee perspectives and allows them to become active participants in the presentation.
3)Convenience and Accessibility: Providing a link allows the audience to access the testimonials at their own convenience.
They can listen to the testimonials during or after the presentation, depending on their preferences.
It also allows for easy sharing and revisiting of the testimonials.
4)Time Management: Including voice testimonials via a link enables Helen to efficiently manage the timing of her presentation.
She can allocate the appropriate time for other aspects of her talk while still giving the audience access to the full testimonials, without the need to rush or omit important information.
For more questions on presentation
https://brainly.com/question/24653274
#SPJ8
Selet the correct answer.
In the field of audio production, which recording technology was the first to make overdubbing possible?
A.
acoustic
B.
digital
C.
electrical
D.
magnetic
E.
thermal
Answer:
magnetic
Explanation:
With tapes, you can selectively overwrite parts of a recording with new content.
Changing the color of the text in your document is an example of
Answer:
???????????uhhh text change..?
Explanation:
Answer:
being creative
Explanation:
cause y not?
Sasha is viewing a primary component of her Inbox in Outlook. She sees that the subject is “Meeting Time,” the message is from her co-worker Trevon, and the message was received on Monday, January 10th. Sasha can also see the contents of the message. Which part of the Inbox is Sasha viewing?
the status bar
the Reading Pane
the message header
the Task List
sasha is viewing the status bar
Answer: Its B, The reading pane
When creating and modifying templates, which keys are used to add placeholders?
Alt+F9
Shift+F8
Delete+F8
Ctrl+F9
Answer:
Ctrl + F9
Explanation:
D is the answer to you're question!
Answer:
d
Explanation:
right on edg <3
How is a struck-by rolling object defined?
Answer:
Struck by rolling object is commonly defined as Struck-By Rolling Object Hazard because it was caused by rolling objects or any objects that moves in circular motion that could cause an injury or accident.
Explanation:
Please hurry, it's a test! 30 POINTS. :)
What computing and payment model does cloud computing follow?
Cloud computing allows users to_____ computing resources and follows the ______
payment model.
1. Buy, Own, Rent, Sell
2. pay-as-you-go, pay-anytime-anywhere, pay-once-use-multiple-times
TCP supports connection-oriented services, so many Internet applications are running on TCP. But we still say Internet is connectionless, why
Answer:
Much of the traffic on the internet is connectionless because this approach makes it easier to handle certain types of traffic without incurring the overhead of data transmission services, such as connection-oriented protocols
Declare an eight by eight two-dimensional array of strings named chessboard.
Answer:SOLUTION:
String [][] chessboard = new String [8][8];
In the QuickSort algorithm, the partition method we developed in class chose the start position for the pivot. We saw that this leads to worst case performance, O(n2), when the list is initially sorted. Try to improve your QuickSort by choosing the value at the middle, instead of the value at the start, for the pivot. Test your solution with the Driver you used for homework. Upload the output produced by the Driver, and your modified QuickSort source file.
====================================================
ORIGINAL
public class QuickSort> implements Sorter
{
List list;
public void sort(List list)
{
this.list = list;
qSort(0, list.size() -1);
}
public void qSort(int start, int end)
{
if(start >= end)
return;
int p = partition(start,end);
qSort(start, p-1);
qSort(p+1,end);
}
public int partition(int start,int end)
{
int p = start;
E pivot = list.get(p);
for(int i = start+1; i <= end; i++)
if(pivot.compareTo(list.get(i)) > 0)
{
list.set(p, list.get(i));
p++;
list.set(i,list.get(p));
}
list.set(p,pivot);
return p;
}
}
====================================================
Driver
public class DriverQuicksort
{ static final int MAX = 20;
public static void main(String[] args)
{
Random rand = new Random(); // random number generator
List numbers = new ArrayList ();
Sorter sorter;
sorter = new QuickSort ();
// Test QuickSort with random input
System.out.println ("Testing Quicksort");
for (int i=0; i
numbers.add (rand.nextInt(50)); // random int in [0..49]
System.out.println ("Before sorting:");
System.out.println (numbers);
sorter.sort (numbers );
System.out.println ("After sorting:");
System.out.println (numbers);
System.out.println ();
// Test QuickSort with ascending input
numbers.clear();
for (int i=0; i
numbers.add (i * 10); // initially in ascending order
System.out.println ("Before sorting:");
System.out.println (numbers);
sorter.sort ( numbers);
System.out.println ("After sorting:");
System.out.println (numbers);
System.out.println ();
// Test QuickSort with descendng input
numbers.clear();
for (int i=0; i
numbers.add (MAX-i); // initially in ascending order
System.out.println ("Before sorting:");
System.out.println (numbers);
sorter.sort ( numbers);
System.out.println ("After sorting:");
System.out.println (numbers);
System.out.println ();
numbers.clear();
numbers.add(75);
numbers.add(93);
numbers.add(35);
numbers.add(0);
numbers.add(75);
numbers.add(-2);
numbers.add(93);
numbers.add(4);
numbers.add(6);
numbers.add(76);
System.out.println ("Before sorting:");
System.out.println (numbers);
sorter.sort(numbers);
System.out.println ("After sorting:");
System.out.println (numbers);
System.out.println ();
}
}
4. Why do animals move from one place to another?
Answer:
Animal move from one place to another in search of food and protect themselves from their enemies.They also move to escape from the harsh climate. Animal move from one place to another in search of food,water and shelter.
Answer:
Animals move one place to another because he search food and shelter
Justify any FOUR significant factors to remember when installing your motherboard
Answer:
The answer is below
Explanation:
When a computer system is being assembled by individuals or to provide a repair. There are factors to remember when installing your motherboard. Some of them include:
1. RAM (Random Acess Memory) support: Ensure the RAM of the PC supports the motherboard capacity.
2. Main Use of the PC: The motherboard to be installed on a PC should be based on the regular usage of the PC.
3. Compatibility with the operating system of the PC is essential. This will allow you to check if it will work well with PC without a glitch
4. Cost of the motherboard: it is advisable to go for a motherboard that can deliver value even if it is somehow expensive.
where is tan accent 3 lighter 40% in excel?
Answer:
Tan Accent 3 Lighter 40% can be found in the color palette of Excel 2007-2013. It is available in the Orange Theme Colors as Tan Accent 5 Lighter 40%. Once you select that set of Theme Colors, it will be available in any of the color palettes in Excel 2007-2013 [1]. For Text 2 and the Accent colors, the sequence of shades goes Lighter 80%, Lighter 60%, Lighter 40%, Lighter 0%/Darker 0% (the baseline shade) [2]. The color system in Excel 2013 is reportedly more friendly to those with color vision deficiencies [3
Explanation:
The main reason for using a comment in your HTML code is to
tell the browser what type of document it is
O give visitors information about the page
o indicate the end of information in the file
O document and explain parts of the code
Answer:
D, document and explain parts of code
Explanation:
Mark me brainliest :)
How should excel categories telephone numbers: as txt, numbers, or dates and time? Why?
Which XXX and YYY correctly output the smallest values? Array userVals contains 100 elements that are integers (which may be positive or negative). Choices are in the form XXX / YYY.
The XXX and YYY which correctly outputs the smallest integer values is minVal = userVals[0] and userVals[i] < minVal respectively.
What is an array?An array can be defined as a set of memory locations (data structure) on a computer system that is made up of a group of elements with each memory location sharing the same name.
This ultimately implies that, the elements contained in an array are all of the same data type such as:
StringsIntegersFrom the source code for the array userVals, the XXX which correctly outputs the smallest integer values is minVal = userVals[0].
From the source code for the array userVals, the YYY which correctly outputs the smallest integer values is userVals[i] < minVal.
Read more on array here: https://brainly.com/question/19634243
What is the HIE? What is its purpose?
Answer:
Electronic health information exchange (HIE) allows doctors, nurses, pharmacists, other health care providers and patients to appropriately access and securely share a patient's vital medical information electronically—improving the speed, quality, safety and cost of patient care.
Explanation:
Answer:
HIE is a system that helps tansport patients when it becomes overwhelmed.
Explanation:
At the point when medical services suppliers approach total and exact data, patients get better clinical consideration. Electronic wellbeing records (EHRs) can improve the capacity to analyze illnesses and lessen risks. Doing this helps patients get timely care. More severe cases can be treated quickly.
5. What are Excel cell references by default?
Relative references
Absolute references
Mixed references
Cell references must be assigned
Answer: relative references
Explanation:
By default, all cell references are RELATIVE REFERENCES. When copied across multiple cells, they change based on the relative position of rows and columns. For example, if you copy the formula =A1+B1 from row 1 to row 2, the formula will become =A2+B2.
int r=6;
int v=20;
System.out.println( r % v );
Answer:
output: 6
Explanation:
6 is the remainder of 6/20
What is the difference between a baseline and an objective?
A baseline is a start, and an objective is an ending.
A baseline is measurable, and an objective is not measurable.
A baseline is a start, and an objective shows progression.
A baseline is a benchmark, and an objective is an ending.
The difference between a baseline and an objective is a baseline is a start, and an objective is an ending. Therefore, option A is correct.
What is the objective of baseline?Regardless of the study topic, a baseline study is a descriptive cross-sectional survey that primarily offers quantitative data on the current condition of a specific situation in a given population. It seeks to quantify how various variables are distributed over time within a study population.
A baseline is a constant point of comparison that is employed in comparison studies. In business, a project's or product's success is frequently evaluated in comparison to a baseline figure for expenses, sales, or any other number of factors. A project may go over or under its predetermined benchmark.
Thus, option A is correct.
To learn more about the objective of baseline, follow the link;
https://brainly.com/question/15018074
#SPJ1
What are other ways you could use the shake or compass code blocks in physical computing projects?
Answer:
There are different ways of quick navigation between files and functions. ... You should use the menu 'Remove file from project' instead of deleting files. ... A Makefile generation tool for Code::Blocks IDE
what are the earliest invention in human history
Answer: Tools, Boats, Hand made bricks.
Explanation: The tools were the first technological advancement, the boats were the next, them hand made bricks for construction.
Determine the value of a and b at the end of the following code segment:
int a = 5;
int b = 10;
a++;
b*=a;
a = b + b;
The value stored for a is _____ and the value stored for b is _____
Choices
120 and 60
60 and 30
5 and 10
30 and 60
Answer:
30 and 60
Explanation:
A free software license allows users to
obtain the software at no cost.
view the source code but not alter it.
use, alter, and distribute the software as
desired.
distribute the original software but no altered
versions.
A free software license allows users to obtain the software at no cost and use, alter, and distribute it as desired.
A free software license grants users certain rights and freedoms to use, modify, and distribute the software. One of the key aspects of a free software license is that it allows users to obtain the software at no cost, meaning they can acquire it without any financial obligation.
Additionally, a free software license typically grants users the freedom to use, alter, and distribute the software as desired. This means that users have the freedom to customize and modify the software according to their needs, and they can distribute both the original software and any altered versions they create.
The ability to view and modify the source code is often an important characteristic of free software licenses. While the option to view the source code may be available, it is not exclusive to free software licenses, as other types of licenses may also provide access to the source code.
However, the specific freedom to alter the source code is typically associated with free software licenses.
In summary, a free software license allows users to obtain the software at no cost and provides them with the freedom to use, alter, and distribute the software as desired.
For more questions on software
https://brainly.com/question/32393976
#SPJ8
Answer: C (use, alter, and distribute the software as desired.)
Explanation: i got i right
if we add 100 + 111 using a full adder, what is your output?
A digital circuit that performs addition is called a full adder. Hardware implements full adders using logic gates. Three one-bit binary values, two operands, and a carry bit are added using a complete adder. Two numbers are output by the adder: a sum and a carry bit. 100 has the binary value, 1100100. Is your output.
What full adder calculate output?When you add 1 and 1, something similar occurs; the outcome is always 2, but because 2 is expressed as 10 in binary, we receive a digit 0 and a carry of 1 as a result of adding 1 + 1 in binary.
Therefore, 100 has the binary value, 1100100. As we all know, we must divide any number from the decimal system by two and record the residual in order to convert it to binary.
Learn more about full adder here:
https://brainly.com/question/15865393
#SPJ1
this twentieth-century artist, and creator of fountain (a factory-made urinal), was very influential for later artists working in alternative media. question 2 options: marcel duchamp jackson pollock john cage claes oldenburg all of the other answers
This twentieth-century artist, and creator of fountain (a factory-made urinal), was very influential for later artists working in alternative media is Marcel Duchamp. The correct option is a.
Who was Marcel Duchamp?Dada, a movement that challenged long-held beliefs about what and how art should be created, was founded by Marcel Duchamp.
Duchamp set the path for later movements including Pop (Andy Warhol), Minimalism (Robert Morris), and Conceptualism. He is linked to numerous aesthetic movements, including Cubism, Dada, and Surrealism (Sol LeWitt).
Marcel Duchamp, a 20th-century artist and the designer of the fountain (a manufactured urinal), had a significant impact on succeeding artists working in alternative media.
Thus, the correct option is a.
For more details regarding Marcel Duchamp, visit:
https://brainly.com/question/10549260
#SPJ1
To ensure AD RMS network transmission is protected from being read and interpreted by protocol analyzers, which of the following must be allowed to enroll for a computer certificate?
a) File Server
b) Domain Controller
c) SQL Server
d) Internet Information Services (IIS)
Answer:
b) Domain Controller
Explanation:
Active Directory Rights Management Services (AD RMS) is a server software that is developed by Microsoft to manage information rights on the Windows server.
The AD RMS servers produce a rights account certificate to link various users with particular PC systems. They also issue end-user licenses.
To ensure that AD RMS network transmission is protected, the domain controller needs to be allowed to enroll for a computer certificate.
A domain controller is a server that authenticates requests from users on a particular computer network. It keeps user data organized and secure.
1. Describe your Microsoft word skills that need to be improved upon the most. 2. Explain the Microsoft word skills you are most confident in performing. 3. How can your Microsoft word processing skills affect your overall writing skills on the job?
Answer:
The answer varies from person to person.
Explanation:
All kinds of people are using Word, so people would recognize if the answer if plagiarized. So, simply answer truthfully; no matter h1ow embarrasing.
The Microsoft word skills that I will need to improve upon the most is how to be faster when typing.
It should be noted that the Microsoft word skill that I am mostly confident in performing is the creation of word documents and text formatting.
Lastly, Microsoft word processing skills have affected my overall writing skills on the job as it has helped in improving my writing and grammar.
Learn more about Microsoft on:
https://brainly.com/question/20659068
Question
What protocol is used to discover the hardware address of a node with a certain IP address?
Answer:
ARP is a simple query–response packet protocol used to match workstations hardware addresses to IP addresses. In other words, ARP is the protocol used to identify nodes in a LAN. ARP is described in RFC 826
Name three current problems in your life that might be solved through a heuristic approach. Explain why each of these problems is heuristic in nature.
Heuristics are mental shortcuts for solving problems in a quick way that delivers a result that is sufficient enough to be useful given time constraints.Heuristic methods can help ease the cognitive load by making it easy to process decisions. These include various basic methods that aren't rooted in any theory per se but rather rely on past experiences and common sense.
Three current problems that can be solved through Heuristic Approach:
1. Challenging and routine work
2. When a student decide what subject she will study at university, her intuition will likely be drawn toward the path that she envisions most satisfying, practical and interesting.
3. Trial and error, which can be used in everything from matching nuts and bolts
The three heuristics Mentioned are: availability, representativeness, and anchoring and adjustment.
To know more about Heuristic from the given link
https://brainly.com/question/24053333
#SPJ1