lmk when someone has an answer
Answer: D. Amplify
Explanation:
Correct Plato answer
Opportunity and Spirit, NASA's Mars Exploration Rovers, were the first scientific instruments able to collect samples directly from the surface of Mars. One of the mission's goals was to determine the likelihood that life ever existed on Mars. How were Spirit and Opportunity best able to supply evidence that in the distant past Mars may have had an environment favorable to life?
Answer:
The rovers sent images of cross beds, centimeter-scale areas in rock layers, that could indicate whether water once flowed on Mars.
Explanation:
An array is mirrored if one half of the array is a reflection of the other. For example, these are mirrored arrays:
int[] a = {5, 4, 3, 4, 5};
int[] b = {9, 2, 2, 9};
The intent of the following methods is to determine whether an array is mirrored or not.
public boolean isMirrored(int[] array) {
// Add code here
}
private boolean isMirrored(int[] array, int leftIndex, int rightIndex) {
if (leftIndex > rightIndex) return true;
if (array[leftIndex] != array[rightIndex]) return false;
return isMirrored(array, leftIndex + 1, rightIndex - 1);
}
Which of the following statements, when inserted at the comment, “Add code here”, would complete the first isMirrored() method, call the second isMirrored() method, and produce the correct results?
A. return isMirrored(array)
B. return isMirrored(array, 0, 0)
C. return isMirrored(array, 0, array.length - 1);
D. return isMirrored(array, array[leftIndex], array[rightIndex]);
Which of the following is a method of the File class that can return an array of Files in a directory?
A. listFiles()
B. files()
C. getFiles()
D. directory()
Consider the following code.
public static int fileMethod(File dir) {
File[] files = dir.listFiles();
if (files == null) return 0;
int count = 0;
for (File f : files) {
if (f.isFile()) count++;
else count += fileMethod(f);
}
return count;
}
If dir represents a starting directory, which of the following statements best describes the operation of fileMethod()?
A. It counts and returns the number of files and directories inside dir and all subdirectories of dir.
B. It counts and returns the number of files, not counting directories, inside dir and all subdirectories of dir.
C. It counts and returns the number of files and directories only inside dir and inside only the first subdirectory found inside dir.
D. It counts and returns the number of files, not counting directories, but only those found inside dir and not its subdirectories.
Which of the following methods will correctly calculate the factorial of a positive number using iteration?
A.
public static long factorial(int n) {
if (n == 0) return 1;
else return n * factorial(n);
}
B.
public static long factorial(int n) {
if (n == 0) return 1;
else return n * factorial(n - 1);
}
C.
public static long factorial(int n) {
int product = n;
while (n > 0) {
n--;
product *= n;
}
return product;
}
D.
public static long factorial(int n) {
int product = n;
while (n > 1) {
n--;
product *= n;
}
return product;
}
Consider the following code.
public static String display(String s, int c) {
if (c == 0) return s;
else {
if (c > 3) return "-" + display(s, c - 1) + "-";
else return "=" + display(s, c - 1) + "=";
}
}
Which of the following methods most accurately reproduces the behavior of the display() method without using recursion?
A.
public static String d1(String s, int c) {
String retVal = "";
for (int i = 0; i < c; i++) {
if (i > 3) retVal += "-" + s + "-";
else retVal += "=" + s + "=";
}
return retVal;
}
B.
public static String d2(String s, int c) {
String retVal = "";
for (int i = 0; i < c - 3; i++) {
retVal += "-";
}
for (int i = 0; i < Math.min(3,c); i++) {
retVal += "=";
}
retVal += s;
for (int i = 0; i < Math.min(3,c); i++) {
retVal += "=";
}
for (int i = 0; i < c - 3; i++) {
retVal += "-";
}
return retVal;
}
C.
public static String d3(String s, int c) {
String retVal = "";
for (int j = 0; j < c - 3; j++) {
retVal += "-";
}
for (int j = 0; j < 3; j++) {
retVal += "=" + s + "=";
}
for (int j = 0; j < c - 3; j++) {
retVal += "-";
}
return retVal;
}
D.
public static String d4(String s, int c) {
String retVal = "";
for (int i = 0; i < c; i++) {
for (int j = 0; j < c - 3; j++) {
retVal += "-";
}
retVal += "===" + s + "===";
for (int j = 0; j < c - 3; j++) {
retVal += "-";
}
}
return retVal;
}
Answer:
Sierra Madre Oceandental rangeHURRY
Dr. Khan works for the marketing department of a company that manufactures mechanical toy dogs. Dr. Khan has been asked to assess the effectiveness of a new advertising campaign that is designed to be most persuasive to people with a certain personality profile. She brought four groups of participants to the lab to watch the video advertisements and to measure the likelihood that they would purchase the toy, both before and after watching the ad. The results of Dr. Khan’s study are presented below.
Part A
Explain how each of the following concepts applies to Dr. Khan’s research.
Survey
Dependent variable
Big Five theory of personality
Part B
Explain the limitations of Dr. Khan’s study based on the research method used.
Explain what Dr. Khan’s research hypothesis most likely was.
Part C
Use the graph to answer the following questions.
How did the trait of agreeableness affect how people responded to the new ad campaign?
How did the trait of conscientiousness affect how people responded to the new ad campaign?What's the output of a system modeled by the function ƒ(x) = x5 – x4 + 9 at x = 2?
Please Help
A)
24
Prompt Using complete sentences post a detailed response to the following. Give one example of digital art that you have seen today and where you saw it. Where do you most frequently see digital art? What does it say about our culture?
Answer:
Digital art forms can be frequently seen in film, television and video games
Explanation:
There are various forms of digital arts such as Fractal/Algorithmic Art, Dynamic Painting, Pixel Art, computer graphics, etc. I have seen computer graphic in a movie today.
Most of the digital art forms are used as a conceptual drawing in film, television and video games
HELP GIVING 20 POINTS IF RIGHT
Answer:
Negative space im pretty sure
Explanation:
What does the revolver do?
sends the domain name and requests the IP address
sends the IP address and requests the content of the web page
sends the IP address and requests the domain name
sends the domain name and requests the content of the web page
Answer:
last one
Explanation:
the_____ tool is used to change the select text to capital letters or small letters (change case /grow font)
Answer:
on word you can use shortcut "Shift+f3" to change uppercase lowercase and title case if that is what you are asking for
Complete the sentence.
A requirements document is created during the ______ phase of software development.
Coding
Release
Design
Planning
Answer:
Release
Explanation:
Answer:
its planning
Explanation:
took the test
A chain of coffee servers is sending a spreadsheet of projected costs and profits to some of its investors. When, Kyle, the administrator making the spreadsheet, adds an image of his company’s logo, he realizes it would fit and look best if turned to read sideways.
How can Kyle change the image to make it fit in such a way?
He can select the image and hold down on the green handle above it while sliding the mouse.
He can select the image and hold down Control while sliding the scroll bar to the right.
He can press the PivotTable button and select “Rotate 90 degrees” and then click OK.
He can click on the Pictures Tool tab and select press Artistic Effects to access the rotate option
Answer:
On a spreadsheet application including MS Excel;
He can select the image and hold down the rotation handle above it while sliding the mouse
Explanation:
Manual rotation of a picture or a text box can be performed by selecting the image or text box in MS Word or a spreadsheet application such as MS Excel. With the mouse select the rotation handle of the picture and drag in the direction desired, left or right.
So as to limit the rotation to 15 degrees hold down the shift button while dragging the rotation handle by clicking on it with a mouse and dragging in the desired direction
This isn't academic, but what do I do if HI-REZ won't let me sign into an existing account. “Something went wrong” keeps popping up when I type in the correct info
Answer:
contact their support
Explanation:
so i just went to play forge of empires and when i logged on to it all of my progress was gone and i was so far in to it
Answer:
That's tough...
Explanation:
Answer:
ok and?
Explanation:
This is not a question
Ryan is applying a sort to the data in a table that you have inserted in Word. Which option is important for most tables that have column headings?
• Sort in descending order.
• Sort in ascending order.
• Select the option "My List has Header Row."
• Choose the correct sort field.
Ryan is applying a sort to the data in a table that you have inserted in Word.By Choose the correct sort field option is important for most tables that have column headings.
What is statistics?A statistics desk is a number cell wherein you may alternate values in a number of the cells and give you one-of-a-kind solutions to a problem. An appropriate instance of a statistics desk employs the PMT feature with one-of-a-kind mortgage quantities and hobby fees to calculate the low-priced quantity on a domestic loan you can set up in descending, or you may set up in ascending.
And D, has not have anything to do with this requirement. You do not have this feature to be had with you. Select the option, "My listing has header row" isn't always to be had to us. And clearly, you want to pick out the excellent type of discipline first. And then you may set up or type accordingly.
Read more about the column headings:
https://brainly.com/question/1788884
#SPJ2
select all the correct answers
which two programming languages are most commonly used to write web based software programs?
1. Python
2. C
3. PHP
3. Ada
Answer:
PythonPHPExplanation:
Plato Correct!
The two programming languages most commonly used to create software for websites are Python and PHP.
We have,
Python is known for being easy to understand and read, which makes it popular for building web applications.
It has tools and frameworks that help developers create websites quickly.
PHP is a language specifically designed for web development.
It is used to write code that runs on the server and helps create interactive websites.
Many popular websites and content management systems, like WordPress, are built with PHP.
While the C language can also be used for web development, it is not as commonly used as Python and PHP in this context.
Ada is a programming language mainly used in specialized industries like aerospace and defense.
It is not commonly used for creating websites.
Thus,
The two programming languages most commonly used to create software for websites are Python and PHP.
Learn more about programming languages here:
https://brainly.com/question/23959041
#SPJ4
Why is one climate different from another?
You defined a class as follows.
def __init__(self, style, color):
self.style = style
self.color = color
This portion is the _____.
creator
instantiator
constructor
initiator
Answer:
instantiator
Explanation:
MRK ME BRAINLIEST PLZZZZZZZZZZZZZZZ
Answer:
instantiator
Explanation:
What is the web page path on the web server for the URL:
http://www.mydomain.com/main/index.html?
O http://
O www.mydomain
O main/index.html
O index.html
Answer:
C: main/index.html
Explanation:
Type the correct answer in the box. Spell all words correctly.
The students of a college have to create their assignment reports using a word processing program. Some of the questions in their assignment involve comparison between different items. Which function of a word processing program will be the most useful to present this information?
The function of a word processing program will be the most useful for comparison.
Answer:
The Insert Table function
Explanation:
Presenting information that involves the comparison between different (two or more) items where the given details on the items are available as text will be aided when the similarities and differences of the information are placed side by side, such as in tabular form categorically arranged with rows listing items under comparison
The function in a word processing program such as MS Word that would be most useful, therefore, is the Insert Table function
The Insert Table function is located under the Insert menu on the Menu bar, where the table, in the drop down list under the Table button
When the Table drop-down button is clicked, it reveals a table that can be adjusted to different number of columns and rows by moving the mouse.
After the table with the desired number of columns and rows is inserted, the comparison between specific characteristics of the items in the assignment report can then be placed in different columns on the same row in the created table.
Answer:
The insert table function of a word processing program will be the most useful for comparison.
Explanation:
Define the term, external hard drive. Explain why you would use an external hard drive instead of a second internal hard drive.
Answer:
An external hard drive is a storage device located outside of a computer that is connected through a USB cable or wireless connection. An external hard drive is usually used to store media that a user needs to be portable, for backups, and when the internal drive of the computer is already at its full memory capacity.
Explanation:
External hard drives are usually portable thats why it is commonly used!
45 points
Multiple Choice: Choose the answer that best fits each statement below.
______ 5. Which of the following can be found by clicking the AutoSum drop‐down?
a. Average
b. Min
c. Sum
d. All of the above
______ 6. Which option is used to prevent a cell reference from changing when a formula is copied to
another location?
a. Named ranges
b. Absolute cell reference
______ 7. An advantage to defining range names is:
a. Selections can be larger
b. Selections can be any format
c. Name ranges are easy to remember
d. Name ranges clear cell contents
True/False: Answer True or False for each statement below.
______ 8. You can only increase or decrease the decimal places by two.
______ 9. The comma style allows you to format with a thousands separator.
______ 10. Excel does not allow you to copy and paste formulas with AutoFill.
Answer:
5 its either a or b and 6 is b 7 is d and 8 t 9 f 10 f
Explanat ion:
20 Points and Brainliest!!!!!!
Select the correct answer.
Amara is designing a website to encourage people in a city to vote in local elections. She wants to include a web page that shows first-time voters the steps to follow to register and vote in the elections. How can Amara best use multimedia to show the voting process on the web page?
A.
by providing a paragraph of instructions with pictures
B.
by providing an audio file along with downloadable pictures
C.
by creating a brief animation with optional text instructions
D.
by creating a static slideshow of the steps showing just pictures
E.
by adding automatically playing audio with text instructions
Answer:
I think E, sorry if I'm wrong.
Answer:
I think it might be C
Explanation:
You were recently hired by a small start-up company. The company is in a small office and has several remote employees. You have been asked to find a business service that would accommodate the current size of the company, but would also be able to scale as the company grows. The service needs to provide adequate storage, as well as additional computing power. Which cloud service model should you use
Answer:
Infrastructure as a Service (IaaS)
Explanation:
Infrastructure as a Service, are services based online that provide a client with required server infrastructures including networking services, storage services, virtual environment services, security, processing services based, and scaling by using high-level API's that redirects the low-level data of the underlying network on a leasing or rent arrangement, such that the operation and maintenance cost of the servers are taken care of by the service provider.
What are good components to preorder a PC with that are cheep? It would be my first PC by the way.
Answer:
Good Components
.CPU AMD Threadripper 3960X Amazon
.CPU cooler NZXT Kraken X63 (280mm AIO liquid cooler) Overclockers
.GPU Zotac Gaming GeForce GTX 1660 6GB CCLonline
.Memory 32GB Corsair Dominator Platinum RGB 3200MHz Scan
Explanation:
Ishmael would like to capture a selected potion of his screen and then capture action he performs on that selected portion. What should he do?
Use a video from my PC command
User the insert screen recording control
Create a poster frame
Use an embed code
Answer: User the insert screen recording control
Explanation:
Since Ishmael wants to capture a selected potion of his screen l, after which he'll then capture the action that he performs on that selected portion, he should use the insert screen recording control.
It should be noted that on most keyboards, there's an "insert screen" button. Also, Ishmael can simply open the window that he wants to screenshot and then click the screenshot button.
Therefore, the correct option is B.
Need answer ASAP!!! No links I’ll report
Select the correct answer.
Which statement is true for SQC?
A.SQC has organization-wide application.
B.The scope of SQC covers a specific product.
C.The scope of SQC covers all products produced by a process.
D.SQC involves activities to evaluate software engineering processes.
Answer:
Try C and hope for the Best
Explanation:
Answer:
The scope of SQC covers a specific product.
Examples of hardware that computes on a network can share are the operating system and the web browsers
Answer:
False.
Explanation:
The hardware component of a computer can be defined as the physical parts or peripherals that enables it to work properly. Some examples of hardware components are monitor, speaker, central processing unit, motherboard, hard-drive, joystick, mouse, keyboard, etc.
A software component of a computer comprises of software application or program that are used by the computer to manage or control software application, computer hardware and user processes. Some examples of software components are operating system, registry keys, antivirus, media player, word processor, etc.
In conclusion, the hardware components of a computer are the physical parts that can be seen and touched while the software components cannot be touched but rather are installed as a program.
Hence, examples of software but not hardware that computers on a network can share are the operating system and the web browsers
I’ll mark brainliest if correct
Select the correct answer.
Andy, a developer, is designing a new program. Which tool should Andy use to help him complete his task?
A. SQL-Integrity Check
B.Unified Modeling Language
C.Selenium
D.Perforce
Answer:
I believe the answer is B
Explanation:
How do we know if we can believe the things on the internet?
Answer:
you have to check for reliability
Explanation:
Answer:
you can't always believe the internet some stuff is false are bended
Explanation:
yea
Rob is planning his housewarming party. He wants to design an invitation and personalize it for each invitee. He needs to create a list of invitees, design the card, and personalize the card. How should he complete the tasks? a. Use mail merge for steps 1 and 2 and a word processor for step 3. b. Use a graphics software for step 1, mail merge for step 2, and a word processor for step 3. c. Use a word processor for steps 1 and 2 and a graphics software for step 3. d. Use a word processor for step 1, graphics software for step 2, and a mail merge for step 3.
Answer:
1: Word Processor
2: Graphics Software
3: Mail Merge
Explanation:
Given
1. Create a list of invitees
2. Design an invitation card
3. Personalize the card
Creating a list of invitees is a task that requires basic activities such as typing, using of numbers and bullets; these activities can be achieved using word processing software programs such as Microsoft Word, WordPerfect, amongst others.
So task 1 requires a word processor
An invitation card is a piece of graphics that can be perfectly handled by graphics software programs such as CorelDraw, Adobe Photoshop, etc.
So task 1 requires a graphics software
Task 3 can be achieved using mail merge and this is because mail merge can be used either to print or to mail recipients. While mailing the recipients, one can easily personalize each letter (or in this case, an invitation card) to suit the recipient it is being directed to.
select the correct answer
What is SQL used for?
A. to write machine language code
B. to design webpages
C. to extract information from databases
D. to convert machine language into a high-level language
The SQL used to extract information from databases. (Choice: C)
Functions of SQL languageIn this question we must understand about computer languages to answer correctly.
SQL stands for Structured Query Language and is a specific domain language intended for the management and retrieve of relational databases. Thus, SQL is used to extract information from databases.
Thus, SQL is used to extract information from databases. (Choice: C) [tex]\blacksquare[/tex]
To learn more on databases, we kindly invite to check this verified question: https://brainly.com/question/6447559
Answer:
The correct answer is C. To extract information from databases.
Explanation:
I got it right on Edmentum.
first calculating device
Answer:
abacus is first calculating device
You will then write a one- to two-paragraph summary describing your chosen type of biotechnology. You will then need to argue for either the benefits or the risks of your chosen type. Your arguments should present your position, and then give the evidence that led you to this position. Be sure to include the following in your argument:
a description of your chosen type of biotechnology (genetic engineering, cloning, or artificial section)
one benefit or one risk for the individual (based on whether you are for or against it)
one benefit or one risk for society (based on whether you are for or against it)
one benefit or one risk for the environment (based on whether you are for or against it)
A picture (you may hand draw, take photos in nature, or use stock images)
Answer:
Anti-biotics are a biotechnology I've chosen, its a benefit because it kills off bacteria and help improves your system. It kills and prevents the growth of bacteria and infections. A benefit you can get from antibiotics is protects your health and prevents acne. This is due to the bacteria it attacks when entering your body. Think of it as pouring peroxide on a cut. A benefit to society is it protects your health when coming close to a sick person and lowers the chance of you catching something. A risk of taking antibiotics is having a weaker immune system due to your body relying on antibiotics, it can also cause gonorrhea.
Explanation:
good luck! :)
Answer:
I Chose Genetic Engineering. Genetic Engineering Can be Used To Make Greater food production volume and increased vitamins Which Feeds More People In This growing population And That Helps society And A Individual. Genetic Engineering Genetically engineered bacteria and plants are altered to get rid of toxic waste Which Can Help The Environment.
This is what i submitted for a grade i actually got an 85 for it which is a B good luck!