Questions
Without plagiarism or copying word for word from the internet. Please write at least two strong...

Without plagiarism or copying word for word from the internet. Please write at least two strong paragraphs in response to the prompt below. Each paragraph should be 8-12 sentence for a total of 300-550 words. Use lots of examples.

Describe/explain/summarize a mental health issue that you are familiar with and one that you would like to know more about.

In: Psychology

How to make a random word generator from a list of array? string word ={ "RD","BL",...

How to make a random word generator from a list of array?

string word ={ "RD","BL", "YW", "GR","OR","VL","WH","BL" }

The output should produce 4 random words from the list like;

Expected output: RD YW OR BL

CODE USED: C++

In: Computer Science

find 15 words associated with Ear and eye and break them down according to the prefix/word...

find 15 words associated with Ear and eye and break them down according to the prefix/word root or combining form/ suffix and their meaning of the word.

In: Nursing

Assess the objectives of financial management and the role of different stakeholders in the financial strategy...

Assess the objectives of financial management and the role of different stakeholders in the financial strategy of a company.(Minimum Word count 700)

Take note of word count

In: Finance

Reference Needed. 200 word if possible. Discuss sources of healthcare revenue, assets, liabilities, and net worth....

Reference Needed. 200 word if possible.

Discuss sources of healthcare revenue, assets, liabilities, and net worth.

Reference Needed. 200 word if possible.

In: Accounting

solution using stack Reversing a word or a sentence: Write an algorithm that will display a...

solution using stack

Reversing a word or a sentence:

Write an algorithm that will display a given word in a reverse order.

- e.g. "Data Structures" will be "serutcurtS ataD".

In: Computer Science

2. (WordValue.scala) Write a Scala function, to compute the value of a word. The value of...

2. (WordValue.scala) Write a Scala function, to compute the value of a word. The value of a word is defined as the sum of the values of the individual letters of the word with value of "a" being 1, "b" being 2 etc. Upper and lower case letters have the same value. You can assume that the word consists of just letters. Here is the signature of the function:

def wordValue(s: String): Int = ???

For example, wordValue("Attitude") = 100. No loops/iterations allowed. Use recursion. Submit just the code for the function and any helpers you develop. We will call your function with our test cases.

In: Computer Science

1. For all of the following words, if you move the first letter to the end...

1. For all of the following words, if you move the first letter to the end of the word and then spell the word backwards, you get the original word:

banana dresser grammar potato revive uneven assess

Write a program that gets a word from the keyboard and determines whether it has this property. treat uppercase and lowercase letters alike. That means that poTato also has this property.

2. Write a program that generates a random number (between 1 and 10 inclusive) 100 times. Output the total number of 1s, 2s, ….10s.

Code language is Java. using JGrasp to code

In: Computer Science

Use the Internet to research a desktop PC, a laptop, and a tablet. Prepare a report...

Use the Internet to research a desktop PC, a laptop, and a tablet. Prepare a report using Microsoft Word 2016 to compare each computer, including specifications such as cost, features, and computing power. In addition mention at least one advantage and one disadvantage of each type of computer.
You may use the Microsoft 2016 Office Text Manual and the Online Word Help (Online Word Help is available by clicking the “?” located in the upper right hand corner of Word Tool Bar) or use the “Tell me” box for entering words or phrases about what you want to assist in developing your assignment.

In: Computer Science

(1) Prompt the user for a string that contains two strings separated by a comma. (1...

(1) Prompt the user for a string that contains two strings separated by a comma. (1 pt)

  • Examples of strings that can be accepted:
    • Jill, Allen
    • Jill , Allen
    • Jill,Allen

Ex:

Enter input string:
Jill, Allen


(2) Print an error message if the input string does not contain a comma. Continue to prompt until a valid string is entered. Note: If the input contains a comma, then assume that the input also contains two strings. (2 pts)

Ex:

Enter input string:
Jill Allen
Error: No comma in string.

Enter input string:
Jill, Allen


(3) Extract the two words from the input string and remove any spaces. Store the strings in two separate variables and output the strings. (2 pts)

Ex:

Enter input string:
Jill, Allen
First word: Jill
Second word: Allen


(4) Using a loop, extend the program to handle multiple lines of input. Continue until the user enters q to quit. (2 pts)

Ex:

Enter input string:
Jill, Allen
First word: Jill
Second word: Allen

Enter input string:
Golden , Monkey
First word: Golden
Second word: Monkey

Enter input string:
Washington,DC
First word: Washington
Second word: DC

Enter input string:
q

_________________________

Given code to work with: main.cpp

#include <iostream>
#include <string>
using namespace std;

int main() {

/* Type your code here. */
  
return 0;
}

thanks.

In: Computer Science