Questions
Research and develop a MS Word document of at least 2000 words that: 1) Discusses a...

Research and develop a MS Word document of at least 2000 words that:

1) Discusses a renewable/sustainable energy project in the U.S.

2) The paper must include the background/history of the project. Who are the champions of the project? Who are the beneficiaries of the project? Is there an economical impact? Your opinion of the sustainability of the project.

3) State whether you are for or against the the effort and why.

4) Write a one or two paragraph conclusion stating what would you say to a decision maker to persuade them.


research on the renewable energy project that was established in USA. like solar energy, hydro enegry.

In: Operations Management

Design the topic and write a 500-word abstract on the Spark technology. Define the technology and...

Design the topic and write a 500-word abstract on the Spark technology. Define the technology and explain why it is indeed disruptive Show your understanding on its importance in industry. Site industry examples of use. Understand how and where it can be used in relation to Enterprise Computing. Why is it important? Site at least 5 references to show your research and use proper grammar and writing discipline. Note: Paper must include all 5 discussion points in content for grading. 50 points. Please use the APA Format Template below for all of your papers. mainframe

In: Computer Science

how to count the word of occurance in the text file example input text file :...

how to count the word of occurance in the text file

example input text file : "test1.txt
hello : 1
good : 1
morning: 1
how : 1
are : 2
you : 2
good : 1

example output text file : "test2.txt"
1 : 4
2 : 2
3 : 0
4 : 0
5 : 0

In: Computer Science

C++: A palindrome is a word, phrase, number, or other sequence of characters which reads the...

C++:

  1. A palindrome is a word, phrase, number, or other sequence of characters which reads the same backward as forward, such as madam or racecar. Sentence-length palindromes may be written when allowances are made for adjustments to capital letters, punctuation, and word dividers, such as "A man, a plan, a canal, Panama!", "Was it a car or a cat I saw?" or "No 'x' in Nixon".

Write a program using Stacks-Array and Queue-Array data structure we did in class to check whether a given string is a palindrome. (50 points)

      This is an exercise in Stacks and Queues. So you need to use both datastructures to test :

In the main you can test whether a string is a palindrome using the method

bool palindromeTest( string test) and should include “QueArr.h” and “StackArr.h”

QueArr.h

#include <iostream>

using namespace std;

template <class ItemType>
class QueArr
{
private:
   int maxSize;
   int front;
   int rear;
   ItemType * items;

public:
   QueArr();
   QueArr(int size);
   ~QueArr();

   void makeEmpty();
   bool isEmpty() const;
   bool isFull() const;

   void add(ItemType item);
   void remove(ItemType& item);
   void print() const;


};

template <class ItemType>
QueArr<ItemType>::QueArr()
{
   maxSize = 100;
   front = maxSize - 1;
   rear = maxSize - 1;
   items = new ItemType [maxSize];
}

template <class ItemType>
QueArr<ItemType>::QueArr( int size )
{
   maxSize = size;
   front = maxSize - 1;
   rear = maxSize - 1;
   items = new ItemType[maxSize];
}

template <class ItemType>
QueArr<ItemType>::~QueArr()
{
   delete[] items;
}

template <class ItemType>
void QueArr<ItemType>::makeEmpty()
{
   front = maxSize - 1;
   rear = maxSize - 1;
}

template <class ItemType>
bool QueArr<ItemType>::isEmpty() const
{
   return (rear == front);
}

template <class ItemType>
bool QueArr<ItemType>::isFull() const
{
   return ((rear + 1) % maxSize == front);
}

template <class ItemType>
void QueArr<ItemType>::add(ItemType item)
{
   if (isFull())
       cout << "Queue is Full" << endl;
   else
   {
       rear = (rear + 1) % maxSize;
       items[rear] = item;
   }
}

template <class ItemType>
void QueArr<ItemType>::remove(ItemType& item)
{
   if (isEmpty())
       cout << "Queue is empty" << endl;
   else
   {
       front = (front + 1) % maxSize;
       item = items[front];
   }
}

template <class ItemType>
void QueArr<ItemType>::print() const
{
   if (isEmpty())
       cout << "Que is empty" << endl;
   else
   {
       //cout << front << ", " << length << endl;
       int temp = front;
       while(temp != rear)
       {
           temp = (temp + 1) % maxSize;
           cout << items[temp] << " ";
       }
       cout << endl;
   }
}


StackArr.h

#include <iostream>

using namespace std;

template <class ItemType>
class StackArr
{
public:
   StackArr();           //Empty constructor
   StackArr(int max); //Constructor which takes a size

   bool IsEmpty() const;
   bool IsFull() const;

   void Push(ItemType item);
   void Pop();

   ItemType Top() const;
   void PrintStack();

private:
   int top;
   int maxStack;
   ItemType* items;
   int length;

};

template <class ItemType>
StackArr<ItemType>::StackArr()
{
   maxStack = 100;
   top = -1;
   items = new ItemType[maxStack];
   length = 0;
}

template <class ItemType>
StackArr<ItemType>::StackArr( int max)
{
   maxStack = max;
   top = -1;
   items = new ItemType[maxStack];
   length = 0;
}

template <class ItemType>
bool StackArr<ItemType>::IsEmpty() const
{
   return (top == -1);
}

template <class ItemType>
bool StackArr<ItemType>::IsFull() const
{
   return (top == maxStack - 1);
}

template <class ItemType>
void StackArr<ItemType>::Push(ItemType item)
{
   if (IsFull())
   {
       cout << "The stack is full and item cannot be pushed";
   }
   else
   {
       top++;
       items[top] = item;
       length++;
   }
}

template <class ItemType>
void StackArr<ItemType>::Pop()
{
   if(IsEmpty())
   {
       cout << "The stack is empty and item cannot be popped";
   }
   else
   {
       top--;
       length--;
   }

}

template <class ItemType>
ItemType StackArr<ItemType>::Top() const
{
   if (IsEmpty())
   {
       cout << "The stack is empty and no item on top";
   }
   else
       return items[top];

}

template <class ItemType>
void StackArr<ItemType>::PrintStack()
{
   if (length == 0)
       cout << "Stack is empty" << endl;
   else
   {
       for (int i = 0; i < length; i++)
           cout << items[i] << ", ";
       cout << endl;
   }

}


In: Computer Science

/* * bitCount - returns count of number of 1's in word * Examples: bitCount(5) =...

/*

* bitCount - returns count of number of 1's in word

* Examples: bitCount(5) = 2, bitCount(7) = 3

* Legal ops: ! ~ & ^ | + << >>

* Max ops: 40

* Rating: 4

*/

int bitCount(int x) {

return 2;

}

Can you please complete this code in C language without the use of any loops such as if, do, while, for, switch, etc., macros, other operations, such as &&, ||, -, or ?: .

In: Computer Science

Fill in the given blanks with an appropriate word(s). 1.As a general rule of thumb, a...

Fill in the given blanks with an appropriate word(s).
1.As a general rule of thumb, a location is considered good for construction of wind turbines if the average wind power density is about - - - - - -
2.The temperature of geothermal water should be - - - - - - for cooling applications for reasonable values of performance factor.

2.In a Lancashire steam boiler, there is a - - - - - - at the end of the fire grate which is utilized in deflecting the flue gases upwards.
4.There are geothermal resources named - - - - - -contain hot liquid water at temperatures up to 450 K and pressures up to 60 MPa.
5.There are fine flat plates in the combustion chamber of a single-ended scotch marine boiler. These plates require - - - - - -
6.The main objective of the - - - - - - is to protect the turbines against the water hammer effect at the time of starting or shutting off the hydroelectric power plant.
7.Based on the furnace position, Cornish boiler is classified as - - - - - -

In: Mechanical Engineering

Choose a Topic for a Dissertation in Cyber Security in 2020 Create a 750-word document that...

Choose a Topic for a Dissertation in Cyber Security in 2020

Create a 750-word document that includes the following:

  • An opening paragraph introducing the topic and the reasons why you chose the topic.
  • A summary of each of the articles you used that provide support for further research on the topic you chose (5 articles preferably) . Include in the summary information on why the article supports further research. Each summary should be approximately 100 words in length.
  • A concluding paragraph that summarises the need for further research in your chosen topic.

In: Computer Science

Submit a minimum of 200-word answer for each of the following questions : Imagine you are...

Submit a minimum of 200-word answer for each of the following questions :

Imagine you are starting the firm with your Team and you are all college seniors with limited work experience (as probably some of you are!). You may not have impressive credentials to include in the management team section of your business plan.

  1. How can you construct this section of your plan, and the company itself, in a way that reassures the readers of the plan that you know what you’re doing and will get the advice you need to launch a successful company.
  2. Please discuss with your Team your answer and agree on what to do for your final plan.
    • Please summarize your discussion and final recommendation.

In: Accounting

Create a use case diagram for the following system. Attach a WORD file with the diagram....

Create a use case diagram for the following system. Attach a WORD file with the diagram.

UVA Chatbot

Chatbot is a computer program powered by AI that allows business to interact with the customers via a chat interface. Assume you are working on a project to develop a Chabot that will provide student services for ODU. The Chabot you are working on has the following functions:

Gathering Information

When a student initiates a conversation, there are some formalities to go through before help is provided. Chatbot will be used to gather the preliminary information (e.g., UIN, name) and verify the student.

After that, Chatbot passes the information to a human advisor and connects the student to the advisor who will helps the student.

Providing Help

The Chabot uses natural language processing (NLP) to understand what the student asks for and searches existing knowledge base (system) to answer the questions (e.g. how to schedule exams in the test center? ).

Feedback Collection

The student will be asked to leave feedback of the service, which is comprised of a text message and a rating. The system administrator should be able to view and delete feedbacks.

Develop a use case narrative/specification for one of the use cases "Provide help" of the system in question 6. Attach a word file. Include use case name, actor, pre- and post-conditions, basic flow, and alternative flow. The use case narrative should include your design of the detail interactions between the actor and the system for one process (use case) only, do not put the whole system processes into the narrative.

In: Computer Science

Each of 3 fair dice has six sides numbered 1, 2, 3, 4, 5, and 6....

Each of 3 fair dice has six sides numbered 1, 2, 3, 4, 5, and 6. If these 3 dice are all rolled at the same time, what is the probability that exactly 2 of these dice will show a 1 ?

Answers in word version please

In: Statistics and Probability