Answer:
enter
Explanation:
press tab or enter and you will get what u need
Shannon wants to work with renewable energy. She is researching what it would take to become a geochemist. A geochemist is someone who uses chemistry to study water and elements in it. What skill or ability well Shannon need to be the most effective in this position?
Answer:
Critical thinking
Explanation:
Shannon needs to be a Critical thinker to be effective in this position. Critical thinking has to do with giving deep and good thoughts while doing analysis, or assessment in other to come up with good judgements about a subject or topic.
Since she is going to be studying water and elements in it, she would be doing a lot of analysis and assessments and In other to do good in her field she must learn to think critically before arriving at her conclusions.
Answer:
Critical thinking
Explanation:
Shannon needs to be a Critical thinker to be effective in this position. Critical thinking has to do with giving deep and good thoughts while doing analysis, or assessment in other to come up with good judgements about a subject or topic.
Since she is going to be studying water and elements in it, she would be doing a lot of analysis and assessments and In other to do good in her field she must learn to think critically before arriving at her conclusions.
Repl.it Assignment 4.1.3 (Max and Min)
Please help me
I will give brainliest and a like
TASK: Write a static method called repeatString that takes as input a String parameter word followed by an int parameter num. It should return a String that would be the result of repeating word exactly num times. If num is 0 or negative, the method should output an empty string.
HINT: Don't print out anything! Your method should return a string, not print it. print the output of your method behind the scenes to check that your method returns the right string; if you add your own print statements then the output won't be correct.
HINT: Make use of String concatenation!
Answer:
Follows are the method definition to this question:
public static String repeatString(String word, int num)//defining a String method repeatString that takes two parameters
{
String Val= "";//defining String variable Val
for(int x = 0;x<num;x++)//defining for loop to calculate number of string
{
Val=Val+word;//hold calculated value in Val
}
return Val;//return Val value
}
Explanation:
Follows are the full code to this question:
import java.util.*;//import package for user input
public class Main//defining class Main
{
public static String repeatString(String word, int num)//defining a String method repeatString that takes two parameters
{
String Val= "";//defining String variable Val
for(int x = 0;x<num;x++)//defining for loop to calculate number of string
{
Val=Val+word;//hold calculated value in Val
}
return Val;//return Val value
}
public static void main(String[] ar)//defining main method
{
int num;//defining integer variable
String word; //defining String variable
Scanner on=new Scanner(System.in);//creating Scanner class Object
System.out.print("Enter numeric value: ");//print message
num=on.nextInt();//input value
System.out.print("Enter String value: ");//print message
word=on.next();//input value
System.out.print(repeatString(word,num));//call method and print its return value
}
}
Output:
Enter numeric value: 3
Enter String value: data
datadatadata
Description:
Inside the main class, a static string method "repeatString" is defined that accepts two parameters "word and num", in which one is a string and one is an integer.
Inside the method, the string variable "Val" is defined, which uses the "for" loop to calculate the number of string and store its value in the variable.
In the main class, the above two variables are defined, that uses the Scanner class object for input the value and pass into the method and print its value.
Write the code for an if statement that adds 5 to the variable num1 if the value stored in the variable testA equals 25. Otherwise subtract 5 from num1.
In python
if testA == 25:
num1 += 5
else:
num1 -= 5
I hope this helps!
Josh needs to write a research report for his Civics class. Which file type will allow him to save his file?
A: DOC
B: GIF
C: JPG
D: ZIP
Answer:
Josh would have to use a DOC as that will allow him to save his file.
Explanation:
DOC is a document file format, basically, a typed file on your computer. It's the best place for anyone to edit their document.
5. Choose the correct options:
a. Each bead in the heaven of Abacus has .... value
i) One
ii) Three
iii) Five
iv) None of the above
Answer:
in my opinion the answer is number 2 three opinion the answer is correct then mark me as brain list
What is the difference between Narrow AI and Artificial General Intelligence (AGI)?
(not from google please)
Please answer quick:))))
i need help plz it keeps on happening and idk what to do
so right now im on my school computer and everytime i turn it on it shows this blue site and on the site it says something like anti-virus-protection. I dont need virus protection cause im on my school computer, then whenever i turn on chrome it closes the page i was on and then brings it bk on does anyone know what is happening or can help me//
I would probably try restarting/turning the computer off and on again first. If that doesn't work, you should probably contact a teacher to see if they can help you.
(and if you can't make it work, maybe try to see if you can use another computer)
Hope you can figure it out!
PLEASE HELP
Question #6
Multiple Select
Which of the following describes an application error? Select 2 options.
O Every time you try to run your new game, it crashes after displaying the opening screen.
After a recent Windows update, you can no longer access the internet on your laptop.
You see a message that the active application has stopped responding to input.
Nothing happens when you press the space bar on your keyboard, but the other keys are working.
Nothing happens when you press the Power button on your desktop PC.
Answer:
A and B
Explanation:
A: In this case, the application/game ran into an error not properly caught/not caught at all. Very little can be done about this error as it typically is a programatical error and not a end user error.
B: In this case, the error is within the Operating System(Windows) or a driver error. This can be fixed, either using troubleshoot or finding the driver to your Wifi Adapter and installing the newest update.
The statements that describes an application error are every time you try to run your new game, it crashes after displaying the opening screen and after a recent Windows update, you can no longer access the internet on your laptop. The correct options are a and b.
What is application error?An application error is defined as a flaw in an application program that causes it to fail and terminate unexpectedly.
Specifically, application errors The Access Violation error is typically caused by your computer's inability to properly sequence the documents and settings necessary to run a specific program or installation.
Many distinctive issues can prompt a Windows program to refuse to respond, freeze, or become unresponsive.
A conflict between the program and the computer's hardware, a lack of system resources, or software bugs, for example, can cause Windows programs to stop responding.
When you try to run your new game, it crashes after displaying the opening screen, and you can no longer access the internet on your laptop due to a recent Windows update.
Thus, the correct options are a and b.
For more details regarding application error, visit:
https://brainly.com/question/14702194
#SPJ5