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.
Please answer quick:))))
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.
hey yall i need help with email plz explain to me what happened
Answer: Oh looks like they disabled it :/ you should wait a little while so they can fix it I’m guessing
Explanation:
Answer:
Hi, I can try to help you.
I am on the software development club of my high school, and I also attended a summer camp at Google's headquarters. The steps below are written by me.
Explanation:
I have lots of experience with computers and Google. Generally, this problem usually happens when there's too much happening with your google account. This could happen from too many devices being logged into your account, or from sending/receiving a very large amount of messages. One common thing that happens is that there can be too many cookies and your computer cache may become full.
I recommend taking these steps:
1. Make sure you're not logged into your account on too many devices. If you are, for example, logged into the account on an iPad, iPhone, Macbook air, and a Mac, then you need to log out of the account on the devices you're not using at the time.
2. Clear your browsing history and cache. On a Macbook, just go to the top bar and click "History." Then, click "Show Full History" and then click "Clear Browing Data and Cache." This can resolve the issue.
3. If the issue is not resolved, restart your computer. This helps by rebooting your computer, and often you just need to restart it to resolve the issue.
4. If that hasn't worked, then I recommend that you wait. Generally, Google will unfreeze your account in a couple hours or so. If the above steps don't work, I recommend just waiting it out.
I hope this helps! If you feel this helped, feel free to give me Brainliest. :)
The individual pages on a website should maintain a consistent layout and style from one page to the next.
True or False
Answer:
I think they should.
Explanation:
It would be very confusing for people using the website to go from one page to the next and have the two pages look completely different.
Answer:
True
Explanation:
What key allows you to move to the next line
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.
What is the difference between Narrow AI and Artificial General Intelligence (AGI)?
(not from google please)
Which devices typically generate computer output? monitor, printer, speaker, projector, keyboard mouse, printer, speaker, projector, Braille embosser monitor, webcam, speaker, projector, 3D printer monitor, printer, speaker, projector, Braille embosser
The devices are monitor, printer, speaker, projector, Braille embosser. The correct option is 4.
What are output devices?Any piece of computer hardware that converts information into a human-perceptible form or, historically, into a physical machine-readable form for use with other non-computerized equipment is considered an output device. Text, graphics, tactile, audio, or video can all be used.
A monitor displays visual output, such as text and images, on a screen.A printer creates physical output on paper or other media, such as text and images.Music, sound effects, and spoken words are all produced by a speaker.A projector projects visual information onto a screen or other flat surface.A Braille embosser generates output in Braille format, which people who are blind or visually impaired can read.Thus, the correct option is 4.
For more details regarding output devices, visit:
https://brainly.com/question/13014449
#SPJ1
Your question seems incomplete, the probable complete question is:
Which devices typically generate computer output?
monitor, printer, speaker, projector, keyboard mouse, printer, speaker, projector, Braille embosser monitor, speaker, projector, 3D printer monitor, printer, speaker, projector, Braille embosser5. 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
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!
Repl.it Assignment 4.1.3 (Max and Min)
Please help me
I will give brainliest and a like
Impersonal communication involves _________________. a. sharing personal information b. trying to become friends c. barriers to developing positive relationships d. both b and c
Answer:
its ccccccc
Explanation:
Answer:
c took it on e2020 and got 100 on my test
Explanation:
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
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!