Computer Science 2023 C++ Programming

2023 Programming Assignment 1 Each program you turn in each student MUST submit TWO files MS | Assignment Collections

Programming Assignment #1 

Each program you turn in, each student MUST submit TWO files , MS Word and C++ code, containing following information:

.

.

1. MS Word File:

(1) Student and Computing Information

– Name and ID

– The class name and the title of an assignment

– The type of computer and compiler you are using, particularly if you are not using TAMUC computer laboratory hardware/software

(2) Purpose statement: Include descripted paragraphs to summarize the topics and goals of a program, such as:

– What values does the program input?

– What values does it output?

– What kind of processing does the program do to obtain the output values?

– Further, the documentation either explains how the software operates or how to use it, and may mean different things to people in different roles if necessary. Specific purpose is noted for each function, control structure, input requirements, and output results

(3) Copy/paste your C++ code into the MS Word File

(4) Screen shots: copy/paste the running output-screens into the MS Word File

.

2. Separated Original C++ Source Code: .cpp file only

.

.

Submit your assignment through the “Assignment #1” submission link under Dropbox tab in Week 3.

(Week 3->Click->”Assignment #1 Dropbox->Submit TWO files individually)

.

.

Assignment #1: Write a C++ Program.

Consider the following program segment.

/*

// Name: Your Name

// MU ID: Your ID

*/

// include statement(s)

// using namespace statement

int main()

{

  //variable declaration

  //executable statements

  //return statement

}

  1. Include the header files isotream.
  2. Include cin, cout, and endl.
  3. Declare two variables: num1, num2, num3, and average of type int.
  4. Assign 125 into num1, 28 into num2, and -25 into num3
  5. Store the average of num1, num2, num3, into average
  6. Output the values of num1, num2, num3 and average
  7. Compile and run your program

 

We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.

Place Order Now

Computer Science 2023 Technology And Enterprise Resource Planning

2023 As an IT manager discuss how your company will use Enterprise Resource Planning ERP to integrate the various functions of | Assignment Collections

As an IT manager, discuss how your company will use Enterprise Resource Planning (ERP) to integrate the various functions of an entity. What are the advantages of using ERP? In your discussion, please be sure to provide substantive explanation of what ERP is and give example(s) of ERP. Use APA throughout.

Minimum 700 words and citations must with references

 

We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.

Place Order Now

Computer Science 2023 2 Questions – Each Question Needs 3 Answers – With 1 APA Reference For Each Answer – Each Answer Atleast 200 Words

2023 Discussion 1 Examine Alexa s skill in ordering drinks from Starbucks i e What is the development of the | Assignment Collections

 Discussion 1: Examine Alexa’s skill in ordering drinks from Starbucks (i.e. What is the development of the skills?  (From what to what level of features). 

 Discussion 2: Research Apple Home Pod. How does it interact with smart home devices?  Alexa is now connected to smart home devices such as thermostats and microwaves. Find examples of other appliances that are connected to Alexa and write a report. 

 

We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.

Place Order Now

Computer Science 2023 Lab 5

2023 Lab 5 Week 5 WiFi capture using Tshark Using Google find information on | Assignment Collections

Lab #5 Week 5 WiFi capture using Tshark

Using Google find information on using Tshark to capture a wifi communication, then using the environment execute some of the Tshark commands. This is an exploratory lab so the goal is to find as much information on the use of Tshark as a wireless capture tool as you can find and report on it in your lab books.

Writing Requirements

 

We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.

Place Order Now

Computer Science 2023 Decision Control Structures

2023 Lab 3 Decision Control Structures Set Up Create a new project in your Eclipse workspace named Lab07 | Assignment Collections

Lab 3

Decision Control Structures

Set-Up

·        Create a new project in your Eclipse workspace named:  Lab07

·        In the src folder, create a package named:  edu.ilstu.it275.lab03.<ulid>

·        Import into this new package all of the following .java files

o   DivideTwo.java

 

Part 1 – if/else Statement

Open the file DivideTwo.java.  The Java source code is shown below:

 

package edu.ilstu;

import java.util.Scanner;

 

public class DivideTwo

{

     public static void main(String[] args)

     {   

           Scanner keyboard = new Scanner(System.in);

           int numerator = 0;

           int denominator = 0;

           double quotient = 0;

          

           System.out.println(“This program divides two numbers.”);

           System.out.print(“Enter the numerator:  );

           numerator = keyboard.nextInt();

          

           System.out.print(“Enter the denominator:  );

           denominator = keyboard.nextInt();

           quotient = (double) numerator / denominator;

          

           System.out.println(numerator + “/” + denominator

+ ” = “ + quotient);

          

           keyboard.close();   

}

}

 

Compile and run DivideTwo.java, and observe the output.  The program prompts the user for two integers that represent the numerator and the denominator of a fraction.  The Scanner object named keyboard is used to read the integers provided by the user.

 

Modify the program to include an if/else statement to check for division by zero.  If the denominator is not equal to zero, display the result of the division, otherwise display a message to the user that division by zero is not allowed.

 

Part 2 – Switch Statement

Open the provided file SwitchErrors.java.  The Java source code is shown below.  The program evaluates an integer entered by the user and displays the color assigned to the integer.  Compile the program.  The program has several syntax and logic errors.  Fix the syntax errors and compile and run the program.  Does the program run as you expected?  Locate and correct the errors in the program logic.  Be sure to make use of the debugger available in Eclipse to help identify errors.

 

package edu.ilstu;

 

import java.util.Scanner;

 

publicclass SwitchErrors

{

     publicstaticvoid main(String[] args)

{

           Scanner keyboard = new Scanner(System.out);

          

           System.out.println(“Key:  1=blue, 2=red, 3=green”);

           System.out.print(“Enter a number and I’ll return “);

           System.out.print(” the corresponding color.  );

           number = keyboard.nextInt();

          

           switch(number)

           {

                case 1:

                     System.out.println(“You chose red!”);

                     break;

                case 2:

                     System.out.println(“You chose blue!”);

                     break;

                case 3:

                     System.out.println(“You chose green!”);

                default:

                     System.out.println(“Color not available!”);

                     break;    

           }

     }

}

 


 

Part 3 while Loop

Open the provided file ConvertLoop.java

 

Convert the following code so that it uses nested while statements instead of for statements.  Place the new code at the end of the code in ConvertLoop.java.

 

int s = 0;

int t = 1;

            

for (int i = 0; i < 5; i++)

{

     s = s + i;

     for (int j = i; j > 0; j–)

     {

           t = t + (j-1);

     }

     s = s + t;

     System.out.println(“T is ” + t);

}

System.out.println(“S is ” + s);

 

Part 4 – Loops from scratch

Create a class called OddIntegers with a main method.  Write the code that will compute the sum of the first n positive odd integers.  For example, if n is 5 you should compute 1 + 3 + 5 + 7 + 9.  Read the value for n from the user and display the result to the screen with an appropriate label.

 

 

 

 

 

We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.

Place Order Now

Computer Science 2023 Android Development 400 To 600 Words Each Assignment

2023 Assignment Description 1 Deliverable Length 400 600 words In the context of Android phone application development discuss what | Assignment Collections

Assignment Description #1 (Deliverable Length:  400-600 words)

  • In the context of Android phone application development, discuss what memory management considerations a mobile application programmer needs to be aware of. What are the implications of not managing memory effectively?

Assignment Description #2(Deliverable Length:  400-600 words)

  • Discuss the best practices for implementing background tasks in an Android application. Specifically, how are services, threads, and alarms used to manage the performance needs of Android phone applications?

Assignment Description #3(Deliverable Length:  400-600 words)

  • Discuss the process of deploying and securing an Android phone application. What important considerations and steps should the programmer follow? Include a discussion about testing steps necessary prior to deployment of the application to ensure that quality and security goals are met.

 

We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.

Place Order Now

Computer Science 2023 Discussion 8 – TM Response

2023 Reflection Critical Evaluation of Your Learning Outcomes Write a critical evaluation of your learning outcomes In your | Assignment Collections

 

Reflection/Critical Evaluation of Your Learning Outcomes

Write a critical evaluation of your learning outcomes. In your response, consider:

1. The content of this class as they relate to Team Management and managerial decision making.

2. Base on the course content, discuss new skills you acquired from this class? How relevant are the new skills to your current and/or future profession?

3. How would you apply your new knowledge?

 I am adding my classmate’s response for the above question. You will have to write response for each post in 150 words. No references needed. 

Discussion 1:

 The course Team management has given me a great emphasis on many of the management areas that I wanted to be knowledgeable in. In this course I got to learn about the importance of collaborative working and working together as a team. This course also helped me to improve my analytical skills in order to understand the behavior of various groups and individuals in an organization. This knowledge helped me to understand the factors that needs to consider in order to form a team. In this course I got to learn what are the most effective ways and methods to identify and improve the effectiveness and productivity of every individual and also the team. Studying this course helped in augmentation of my awareness of how powerful business authorities lead and what separates them from their pointless accomplices. In this course I learned the criticality of choosing and having a good team for the success and growth of an organization. From this course I learned that It’s a colossal duty and peril considering the way that the individuals you pick are the best factor to pick whether your team will end up being reasonable. The more gifted and instructed they are, the better your chances of progress become. Building a normal social occasion organization is in like way one of the basic factor to consider while directing get-together. This knowledge will help me in future while building and managing a new team in my organization  Unequivocally when you’re confining work social occasion to help achieve a portion of your business goals, you have an inclination you should accomplish something else – from a general point of view more – to guarantee your pros remain influenced, concentrated and on-task. This course also taught me about the conflict management. Conflicts inside the organization or within team could occurred by many reasons. From this course I leaned that the conflicts can be handled and resolve in many different possible ways depending on the type or the conflict and the people who are involved in the conflict.  

Discussion 2:

 

1. Team management and managerial decision making

Team management is the skills that an individual or an organization to be able to conduct and program a group of people to be able to perform a task and for them to be able to accomplish a certain mission. The group the board accompanies precise viewpoints which can be; cooperation, correspondence and putting in place one-of-a-kind capacities just like the exhibition price determinations.Hackman,J.(2005). Group the executives would now not truly come to fruition with the ability to order and characteristic the choice to administer over about now not many humans within the association. The executives accompanies different definitely special obligations and requires socialization for the other personnel people to have the choice to technique you.A director can run any preference wherever. You want to decide earlier than you get the opportunity to reserve some thing in an effort to have the choice to decide a compelling dynamic a good way to income the business enterprise.

 2. Skills acquired from the class and their relevance in the future profession.

 Technical skills

Technical skills tend to give the managers the knowledge and the ability to be able to make the skill come into form With the goal that they could have the choice to be applied afterward calling. The specialized aptitudes are simply applied for the apparatuses and hardware that may be decided in the association. A version is an character that works in a commercial enterprise department need to have excessive developed abilities which is probably acquired via education to show into the right manager.Melli,A.S.(2006).

Applied talents

When you have got were given this capacity, one have to have the reasonable flair to have the choice to have an increasing number of theoretical reasoning. With this flair, you could without quite a few a stretch mull over approximately the eventual destiny of the commercial organization or the important office.

Relational administrative capabilities

With these aptitudes, you may work with others and understand with them as a human. This is essentially because of the way that with out those people there may not be any place of business to supervise by any means.

3. How I can apply my knowledge.

I would apply my knowledge to motivate my employers so that they can effectively promote the companies work. This will help with increasing the performance and the entire company could be fulfilled. With wonderful administrative skills, there’s the probability of installing vicinity a proper version and maximum personnel human beings ought to have the option to get to me after they want some clarification on some thing. With my administrative abilities, Tuckman,(1965). I may additionally have the choice to recognize which zones might also need to require enhancement for the business enterprise and why they must be progressed for the business organization to persevere through their deficiencies.

A part of the big talents that I actually have obtained are having the choice to permit the employees to take duty for ventures which might be being doled out to them and not to peer them as a field. To have the option to reveal legitimate thankfulness for the worker’s achievements as a way to deliver them guarantee to paintings.

Discussion 3: 

 

I have learned immensely from this Team management course and the learning curve has always been upwards with the information that has been presented through different study materials and professional papers.

At the point when you step up or over into another administration position, it’s extremely simple to be amped up for the thoughts you have. This eagerness is certainly something to be thankful for however it’s critical to take on a steady speed. Before you start any significant tasks, give yourself an opportunity to comprehend your job and the inward functions of your group and colleagues. As a team leader, you may not generally have the advantage of time and fast changes are once in a while basic. All things considered, set aside the effort to talk with and comprehend your group to ensure you don’t discard the good along with the bad. In the event that you have huge thoughts that you can’t deal with at this time, make a note of them some place you will recollect and return to them when you’ve settled on to your position.

As a team manager, you utilize your insight into the view to push your group toward every objective. Nothing empowers a group more than progress, regardless of how little a triumph it is. Similarly, a group can get debilitated in the event that you set objectives they can never meet. In the event that you need to make another arrangement, set another goal or roll out an improvement, you have to get whether you’ve set sensible desires. This may mean taking a peek at your assigned financial plan or the remaining task at hand of those whose help you’ll require. Yet in addition recollect that even the greatest undertakings that appear to be difficult to accomplish can be separated into progressively sensible errands. It might take more time to arrive at the ultimate objective, yet those little successes will be an extraordinary confidence support for the group.

A business is just equivalent to its employees and workers flourish when their leaders has viable group the board aptitudes. For new managers and in any event, for a portion of the old hands – it tends to be overwhelming to lead another group. Nevertheless, with a little exertion and not many of these insider facts you’ll understand it’s just about believing in your capacity to lead your group to progress.

 

We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.

Place Order Now

Computer Science 2023 Organ Week 7 Assignment

2023 This week s journal article focus on the how positive team culture can correct the impact of lagging leadership creativity Additionally | Assignment Collections

 This week’s journal article focus on the how positive team culture can correct the impact of lagging leadership creativity. Additionally, we discussed how digital transformation leaders in regard to artificial intelligence (AI). After reviewing the reading, please answer the following questions:

  1. What is your definition of AI? Please explain.
  2. What is your opinion of AI, is the technology currently available? Why or why not?
  3. Please note at least four AI technologies, explain if they are truly AI or something else. Thoroughly explain your answer.
  4. How is AI perceived as different in various industries and locations? Please explain.

Be sure to use the UC Library for scholarly research. Google Scholar is also a great source for research. Please be sure that journal articles are peer-reviewed and are published within the last five years.The paper should meet the following requirements:· 3-5 pages in length (not including title page or references) 

 

We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.

Place Order Now

Computer Science 2023 NTC 409 Week 2 Learning Team: Acme Medical Center WAN Project Part I

2023 Learning Jul 25 2016 11 59 PM 3 Instructions team Review the Acme Medical Center material Create a 1 to 2 page project | Assignment Collections

 

Learning

Jul 25, 2016 11:59 PM

3

 

Instructions:

team

 

 

 

Review the Acme Medical Center material.

 

 

 

 

Create a 1- to 2-page project outline that assigns tasks for the following

 

 

 

 

assignments to each team member:

 

 

 

 

• Acme Medical Center WAN Project Part II – creating a model of the

 

 

 

 

existing WAN using Visio®, due in Week Three.

 

 

 

 

• Acme Medical Center WAN Project Part III – paper analyzing the

 

 

 

 

WAN and suggested enhancements, due in Week Four.

 

 

 

 

• Acme Medical Center WAN Project Part IV – revised model with

 

 

 

 

enhancements included, due in Week Five.

 

 

 

 

Submit your assignment using the Assignment Files tab.

 

 

 

 

SupportingMaterial:Learning Team Instructions: Acme Medical Center

 

 

 

 

Wide Area Network (WAN) Project

 

 

We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.

Place Order Now

Computer Science 2023 I need an A+

2023 There are three files attached 1 file is the instructions file i need | Assignment Collections

There are three files attached:

 

1 file is the instructions file i need the draft plan 1 for now
2nd file is Rubric for Draft Plan 1

Please provide the WBS in MS Project and plagiarism free written content
3rd file is my proposal that i have already submitted so the project is making a couple vacation

4 pages will be enough for the draft plan 1 but please use headings from instruction document and the headings to be chosen are under Draft Plan 1

 

 

 

 

 

We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.

Place Order Now