Final answer:
The storyboarding techniques are: narrative storytelling techniques, descriptive narrative techniques, spatial structure.
Explanation:
The storyboarding technique that matches with its appropriate description is as follows:
Offer background information. Use narrative, or storytelling, techniques. Use reporting techniques, providing supporting facts and answering questions of who, what, when, where, why, and how.
Show and tell: descriptive and narrative techniques to help readers imagine the subject combined with reporting techniques to relay factual information.
Spatial structure: used in profiles of buildings, artworks, and public spaces. This structure reflects a "tour" of the space or image.
Can you run dragon ball fighterz on MacBook air (Early 2015)
1.6GHz* dual-core Intel Core i5 processor with 3MB* shared L3 cache.
4GB of 1600MHz LPDDR3 RAM
128GB* PCIe-based flash storage.
13.3-inch, 1440 x 900-pixel display.
Intel HD Graphics 6000. 1536 MB
Answer: Possibly.
Explanation: The specs required for the game are "Dragon Ball Z Kakarot requires a Radeon R9 280X graphics card with a Core i5-3470 3.2GHz or Ryzen R3 1200 processor to reach the recommended specs, achieving high graphics setting on 1080p. 8 GB will also be needed to achieve the Dragon Ball Z Kakarot rec specs and get 60FPS." You may be able to play it, but have a hard time hitting 60 FPS.
As it relates to the internet the term “host” means
Answer:
The host, which we also know as the network host, happens to be a computer or any other device which communicates with various other devices that can communicate with various other hosts on a network. And a node is a much broader term that covers everything which is connected to a network. And the host requires an IP address.
Explanation:
Please check the answer section.
briefly explain why it is necessary to empty the recycle bin on the computer
Answer:
When you empty the recycling bin, the computer marks the header of each of those file you deleted as not needed anymore. Therefore if your computer ever needed to use the memory location where those files was once stored, it's gonna look at the file header and be like, "hey, this file is marked as unneeded, therefore I'm allow to overwrite this area now."
If you don't empty the recycle bin then those file can't be overwritten.
Question 2(Multiple Choice Worth 5 points)
(02.01 LC)
Which will display output from a tablet?
Memory
Screen
Power button
Power cord
Answer:
Screen
Explanation:
The memory is used to save the data, and the power cord is used to connect to the power supply. And the Power button is used to power on the tablet. And the display output from a tablet is shown on the screen. Hence, the correct option here is the screen. And It is the screen that displays the output.
Answer:
Screen
Explanation:
I took the test :)
When pasting text and tables,which of these paste options is generally available
Answer:
For text and table in common: Keep Text Only
And hence, B. Paste as a text item is the correct option.
The above is the common option available in case we are pasting the Text or you are pasting the Table. If you copy a text and try to paste it, and when you will try to paste the table, then you will find this option in common, and hence it is the option that is generally available. Hence, B is the correct option.
Explanation:
Please check the answer section.
While creating an animation, Gina has prepared a document stating the purpose and type of audience for the animation. What has
prepared?
Gina has prepared a “blank”
for the animation?
Final answer:
Gina has prepared a document stating the purpose and type of audience for the animation.
Explanation:
Gina has prepared a document for the animation, which states the purpose and type of audience for the animation. This document serves as a guide for Gina's creative process and helps her ensure that the animation aligns with her goals and target audience.
642
+277
What does 642+277
Which line of code will print I can code on the screen?
print("I can code")
print(I can code)
print("I CAN CODE")
print = I can code
Answer: print("I can code")
Explanation:
luckily im a coder
Final answer:
The correct line of code is print("I can code"). This will print the phrase 'I can code' on the screen.
Explanation:
The line of code that will print I can code on the screen is:
print("I can code")
In Python, to print text to the console, you have to put the text you want to display inside of quotes (single or double ones are fine), and then use the print function to output it. If you're using a version like Python 2.7, running the code without parentheses may work, but in versions of Python 3.0 and newer, you'd need to use parentheses.
To check spelling errors in a document, the Word application uses the _____ to determine appropriate spelling.
other text in the document
user-defined words
built-in dictionary
Internet
Answer:
built-in dictionary
Explanation:
Can you ever imagine making use of other text in the document for finding the meaning? They help but only when we are concerned about the intent, and it is a tough method. The word application makes use of the built-in dictionary in reality, and the use of other text in the document is now done through the new version, but to find the intent. And the internet is never used, as this software is required to work offline as well. And user-defined words are only a few, whereas the built-in dictionary covers all words. And hence built-in dictionary is the correct option here, and manuals also confirm this.
What is the purpose of an attribute in HTML?
A. It is a property that changes the default behavior of an element.
B. It is an empty element.
C. It consists of a start tag and an end tag.
D. It is a tag without angular brackets.
An attribute in HTML changes an element's default behavior or appearance and provides additional information to produce functional web pages.
The purpose of an attribute in HTML is to provide additional information about an element, acting as a modifier that changes the element's default behavior, appearance, or characteristics in some way. For example, the src attribute of an <img> tag defines the URL of the image to be displayed, and the alt attribute provides alternative text in case the image cannot be displayed. Attributes are an essential part of HTML, providing richer, more functional web pages and allowing for customization and interactivity.
Question 8
Which of the following statements about written communication is TRUE?
It is only used for informal communication.
It can be more easily misunderstood than face-to-face communication.
It is temporary and cannot be permanently recorded.
It is always private and cannot be shared with others.
Answer:
It can be more easily misunderstood than face-to-face communication.
Explanation:
With written communication, you can't see facial expressions, see body language, and hear tone of voice.
The statement "It can be more easily misunderstood than face-to-face communication." is true. Therefore, the correct answer is option B.
Transmission of a message is not the same as the message being received. It is an understanding that is shared and comes from the recipient. Effective communication is essential in business. The foundation of management is communication. The fundamental features of without efficient communication, management (Planning, Organising, Staffing, Directing, and Controlling) cannot be accomplished successfully. Information is always flowing throughout business communications. A crucial component of business communication is feedback.
Therefore, the correct answer is option B.
Learn more about the communication here:
https://brainly.com/question/29811467.
#SPJ6
I don't know the answer and I tried different ones and they not what the book is looking for.
Write a statement that outputs variable numObjects. End with a newline.
Program will be tested with different input values.
import java.util.Scanner;
public class VariableOutput {
public static void main (String [] args) {
int numObjects;
Scanner scnr = new Scanner(System.in);
numObjects = scnr.nextInt(); // Program will be tested with values: 15, 40.
Then I have to write my code below this and I don't know what to put.
Answer:
The complete program is:
import java.util.Scanner;
class Main
{
public static void main (String [] args) {
int numObjects;
Scanner scnr = new Scanner(System.in);
numObjects = scnr.nextInt(); // Program will be tested with values: 15, 40.
System.out.println(numObjects);
}
}
Explanation:
The program is as mentioned above, And we can check with inputs 15, and 40. And it was found that correct answer is obtained on running the program.
Which sentences use antonyms to hint at the meaning of the bolded words? Check all that apply
The cowered and hid behind the couch during thunderstorms
Most of the house was destroyed by the tomada but the kitchen remained intact
He was extravagant with money buying everything insight whenever he had the means
Potom ontage caused him discomfort het comfortable staying out of the spotlight
The opportunity and lastlong it quickly dwindled or went away
Answer:
Most of the house was destroyed by the tornado, but the kitchen remained intact.
Performing onstage caused him discomfort; he felt comfortable staying out of the spotlight.
The sentences that use antonyms to hint at the meaning of bolded words are;
Option B; Most of the house was destroyed by the tornado but the kitchen remained intact.
Option D; Performing onstage caused him discomfort; he felt comfortable staying out of the spotlight
Antonyms are simply defined as words that are opposite in meaning.
For example, the antonym of laugh is cry.
Let's now look at the options;
Option A; The sentence does not have 2 words that are antonyms and so this does not apply.
Option B; The words destroyed and intact are antonyms because they are opposites of each other and thus this statement applies to the use of antonyms.
Option C; Extravagant and buying are not opposite words and therefore this statement does not apply to antonyms.
Option D; Discomfort and comfortable are opposite words because they mean the exact opposite of each other and as such they are antonyms.
Option E; Dwindled is not an opposite of went away and so is not an antonym.
Read more at; https://brainly.com/question/18111017
What was Eisenhower's "covert action” policy?
Answer: "covert action policy" include activities by U.S Government to influence political, economic or military conditions in other communist countries.
Explanation:
Eisenhower was the General of the American army and he also served as the 34th president of U.S. Eisenhower used "covert action" policy. This policy was used against the communist government of other countries.
There were many secret activities of this policy. This policy was used for national interests. It covered those activities of the U.S government which were undertaken to affect the economic, political or military conditions in other countries. The main intention of this policy was not to reveal the role of the U.S government in other countries to the public.
Danny is editing the text content of a single page on a website he created a year ago. What part of the tag would he have to update?
A.
B.
C.
D. loc
Explanation:
<update> This tag does not belong to <URL> tag of the site map. Hence this option goes invalid.
<lastmod> This gives details of the date and time when the website content was changed. It will be in "W3C Date time format". This may omit time at times. This is the write answer.
<loc> This contains the URL of the web page.
<changefreq>: How frequently the "web page is likely to get modified". The values which it accepts are: "monthly, always , daily , weekly ,hourly, yearly , never"
A self improvement plan should begin with planning how you will accomplish your goal.
Answer:
True
Explanation: The first step is to make a goal. The second step is to plan how you will accomplish you goal. The third and final step is to accomplish your goal.
Answer:
Answer:
True
Explanation: The first step is to make a goal. The second step is to plan how you will accomplish you goal. The third and final step is to accomplish your goal.
Explanation:
Which structure does a web page normally use to define an area of focus?
Many web pages use a ______
structure to define an area of focus.
Answer:
meta Tag
Explanation:
The meta charset, meta name="description" content" ", meta name="keywords" content=" ", meta name="author" content=" " and meta name="viewport" defines the area of focus in a web page.
And hence, it is the meta tag that defines as well as describes the area of focus on a web page. The description describes keywords that add the keywords, and the author adds the author's name. The viewport helps in making the webpage responsive.
Answer:
Grid
Explanation:
a grid structure defines areas of focus.
Write a program with total change amount as an integer input that outputs the change using the fewest coins, one coin type per line. The coin types are dollars, quarters, dimes, nickels, and pennies. Use singular and plural coin names as appropriate, like 1 penny vs. 2 pennies.
Answer:
a=input("Amount in pennies")
b=int(a)
dollars=0
dimes= 0
quarters=0
nickels=0
pennies = 0
dollars = int(b/100)
b= b- dollars *100
quarters=int(b/25)
b=b-quarters*25
dimes = int(b/10)
b = b -dimes*10
nickels=int(b/5)
b=b - nickels * 5
pennies = b
print(dollars)
print(dimes)
print(nickels)
print(pennies)
Explanation:
The required program is in answer section. Note, the amount is entered in pennies.
COULD U ANSWER THIS ???
Which is an example of a closed loop that best models a circuit?
A.a crowd dispersing in all directions
B.lightning striking a tree
C.students jogging around an oval track
D.a cross-country run from one point to another
Answer:
B.lightning striking a tree
Explanation:
The crowd dispersing in all directions is not a closed-loop by any means, and students jogging around an oval track as well is not a closed-loop, and also not a cross country run from one point to another. However, the lightning striking a tree is a closed loop that best models a circuit. And as lightning strikes the tree, like a closed circuit, tree catches the fire, or in circuitry words, the current is generated, and tree catches the fire due to it, just like bulb starts glowing.
Methods for preventing/overcoming group conflict include all EXCEPT:
Answer:
recognizing that gender differences are a myth.
Explanation:
The options are:
active listening. recognizing that gender differences are a myth. structured debate.building cross-cultural understandingWithout active listening, structured debate, and cross-cultural understanding group conflict are definitely on the card. However, no one now is concerned about gender differences. As now both the genders are already having the equal status in at least developed countries. However, this too can play a role in avoiding group conflict. However, since this is not that important considering the current context, this looks like being the correct option here. Hence, the above mentioned in the answer section is the correct option.
Which word best describes RAM
Permanent
Stable
Unimportant
Volatile
Answer:
D) Volatile
Explanation:
Volatile memory needs the power to retain the work, and Random Access Memory (RAM) is one of the volatile memory in computers or laptops. If the power cuts, RAM cannot save the data. On the other hand, ROM or Read Only Memory can save the data, for example, hard drive. RAM is not a permanent data storage. It is not stable since it needs power. However, it is an essential element to start the computer. Therefore, option D is correct.
Jeremy wishes to create a site map for his website. What tag will surround the URL of his home page?
A.
B.
C.
D.
Answer:
C. <loc>
Explanation:
We need to mention the below details:
location changed frequency last changed priority of pageWe have the XML file for a sitemap, and we need to enter the above details for each of the Url. We need to enter the location, last changed, changed frequency and priority of the page for each of the URLs. And the URL of the home page is surrounded by the Loc tag. And hence, the correct option for this post is the C.<Loc> option.
Answer:
<loc>......................
Please help I really need it
define service business
Answer:
A commercial enterprise that provides work performed in an expert manner by an individual or team for the benefit of its customers. The typical service business provides intangible products, such as accounting, banking, consulting, cleaning, landscaping, education, insurance, treatment, and transportation services.
Explanation:
What are the advantages of using a page description diagram?
A. They are rigid in construction.
B. Only an experienced designer can create a good PDD.
C. They are simple to grasp.
D. The contents are vast.
A page description diagram (PDD) is a visual representation of the structure and content of a web page. It is simple to grasp, aids in communication, and helps with planning and organization.
Explanation:A page description diagram (PDD) is a visual representation of the structure and content of a web page. It provides a high-level overview of how the different elements on a page are organized and related to each other. There are several advantages of using a PDD:
They are simple to grasp: PDDs use simple shapes and labels to represent different elements, making it easy for designers and developers to understand the page layout without getting overwhelmed by details.They help with communication: PDDs serve as a communication tool between designers, developers, and other stakeholders. They provide a common visual language to discuss page structure and ensure everyone is on the same page.They aid in planning and organization: PDDs help in planning and organizing the content of a web page. Designers can use them to identify the most important elements, prioritize content, and create a logical flow for users.If a computer has a multicore processor, what can the operating system do to improve performance? How does this technique work
Answer:
If a computer has a multicore processor then the operating system can run multiple threads to better the performance. And the maximum number of threads is equal to the number of cores. For one core there can be one thread. And the technique that is required here is termed as the multithreaded programming. And if you have a multicore processor, and if you assume that all your target device has that level of the processor then you can make use of it in designing applications as well. However, you need to provide an alternative for the device that does not have this facility.
Explanation:
Please check the answer section.
Jeremy wishes to create a site map for his website. What tag will surround the URL of his home page?
A.
B.
C.
D.
To discuss the website's visual appearance with his client, Jeremy should use option C: layout of each page with its respective elements, as it provides a visual representation of the design structure.
To help his client visualize how the website will look, Jeremy should utilize option C: layout of each page with its respective elements. This option involves creating wireframes or mockups that represent the structure and design of each page, including placement of images, text, buttons, and other elements. By presenting detailed layouts, Jeremy can effectively communicate the overall look and feel of the website to his client.
A bulleted list (option A) may provide some insight into the content and organization, but it lacks visual representation, making it difficult for the client to grasp the aesthetic aspect of the website. Similarly, a chart depicting navigational flow (option B) focuses more on the structure and flow between pages rather than the visual appearance. Option D, pictures and screenshots of other florists' websites, might offer inspiration but won't necessarily reflect Jeremy's specific design.
Programming code (option E) is not suitable for discussing visual aspects with a client, as it requires technical expertise to interpret. Therefore, option C provides the most effective way for Jeremy to convey the visual design of the website to his client.
The question probable maybe:
Jeremy is designing a website for a florist. He intends to discuss the web design with his client. Which tool should Jeremy use to help his client get an idea of how the website will look?
A. bulleted list of titles, subheadings, and images
B. chart depicting the navigational flow of the website
C. layout of each page with its respective elements
D. pictures and screenshots of websites of other florists
E. programming code for the website
The technology Herman Hollerith created in the 1880s began the modern-day data processing function in computers.
The tech
What was the name of this
transistor
punched-card machine
microprocessor
resistor
Answer:
punched-card machine
Explanation:
We know this as the punched-card machine, and it is also known as the Hollerith cards or the IBM cards. At that time, and through this technology, we used to punch a hole with hand or with the machine, and each hole used to represent the data and the instruction. And these were widely used for inputting the data in the early computers.
Answer:
D) Punched-card Machine
Edge 2021
All of the following are stages in the SDLC except _____.
JAD
Design
Development
Analysis
Final answer:
JAD is not a stage in the SDLC; it is a methodology used to involve clients during the design phase. The true stages of the SDLC include Analysis, Design, and Development, with iterative testing and refining during the design stage being crucial for project success.
Explanation:
The System Development Life Cycle (SDLC) consists of several stages that are essential for developing a successful information system. However, the term JAD (Joint Application Development) does not refer to a stage in the SDLC. Instead, JAD is a methodology aimed at increasing the efficiency of the design phase by involving the client in the analysis and design of the system.
The core stages of the SDLC include Analysis, Design, and Development. During the design stage, the development team may go through rounds of testing and refining a prototype to achieve the best possible design, which aligns with the project's criteria and constraints. This iterative design process plays a critical role in the overall success of the development project.
A doge is a shiba inu or probably a meme
Answer:
The doge is a shiba and a legendary meme
Explanation: