INT 2240 Lab 1

 

Lab ONE

Problem Statement:    Given four non-negative integers, display the integers using the IPv4 address format.================================================================================================
Input Data:

  • Have the user enter 4 non-negative integers at the keyboard
    • Each integer must be between 0 and 255
  • If any of the integers is less than 0 or greater than 255,
    • display an error message
    • have the user do the
    • inputting again, until the data in the proper range is entered

Proessing:

  • Set up a set of nested loops
    • The outer loop should control whether the user wants to continue or not
    • If the user wants to continue with the processing,
      • Set up the inner loop(s)
        • Have the user repeatedly enter 4 integers, one at a time 
          • If an entered integer is not in the proper range,
          • display an error message and have the user do the inputting again, 
          • until the data in the proper range is entered 
        • Display each of the non-negative integers, along with an appropriate message 
        • Display the integers formatted as an IPv4 addressad

Output Data:

  • Display each of the non-negative integers, along with an appropriate message
  • Display the integers formatted as an IPv4 address
     

 Lab 1 – Sample Program 1.pdf Lab 1 – Sample Program 1.pdf – Alternative Formats
================================================================================================.
Your lab will be graded on whether it’s been set up as a complete and workable solution.

For your solution to be complete, your program must be able to

  • Set up code to do the following:
    • prompt the user for the input data asked for (as explained above within the Input Data section)
    • If the data is not valid, then let the user know and try again
    • Once valid data is entered, set up the entered data, formatted as an IPv4 address
    • Repeat the above process as needed
  • compile (ie, no syntax error(s))
  • run (ie, no run-time error(s))
  • provide the output data (as explained above within the Output Data section) to the user

For your solution to be workable,

  • Your solution should be free of any type of errors (syntax, run-time, logic)
  • you may want to develop an algorithm first, using pseudocode
  • you do NOT need to turn in any algorithm

==========================================================================================================================Grading rubric:

  • You’ll receive full credit, if 
    • your program
      • compiles and runs with no problems 
      • produces the expected output
  • You’ll receive partial credit, if 
    • your program
      • compiles and runs with no problems 
      • produces partial output (that is, incomplete output)
  • You’ll receive 25% of the points, if your program will not compile
  • You’ll receive 30% of the points, if your program compiles but has a run-time problem
  • You’ll receive 40% of the points, if your program produces logic error(s)

Write a function called

  

Write a function called strcmp373, which compares two strings in precisely the same way that strcmp does in the C library . This time, please use “pointer syntax” in writing this function. That is, the [ ] operator should not be used at all when referring to particular characters in string1 and string2; instead, all parameters and local variables should be declared as pointers (using the * symbol). You may not use any of the built-in C string library functions to complete this code. Here is the prototype of this function:
int strcmp373(char *string1, char *string2);

Own words no plagarism

Hi Karen, 

In  the assignment, there are no words to “write down all program”.  I really have no idea what you are attempting to state.  You could benefit from working with the resources we have as it related to written communication.  

However, the course project due was to write and execute the queries listed and provide screen captures.  The work submitted did not include any of the queries listed. 

Query # 1
Write a SQL statement to produce output as follows: Student’s First and Last Name.

Query # 2
Write a SQL statement to produce output as follows: the Major of the STUDENT with no duplications. Do not display student names. 

Query # 3
Write a SQL statement to produce output as follows: First and Last Name of students who live in the Zip code 32828.   

Query # 4
Write a SQL statement to produce output as follows: First and Last Name of students who live in the Zip code 97912 and have the major of CS. 

Query # 5
Write a SQL statement to produce output as follows: First and Last Name of students who live in the Zip code 32826 or 33186. Do not use IN. 

Query # 6
Write a SQL statement to produce output as follows: the First and Last Name of students who have the major of Business or Math. Use IN. 

Query # 7
Write a SQL statement to produce output as follows: the First and Last Name of students who have the Class greater than 1 and less than 5. Use BETWEEN.
 
Query # 8
Write a SQL statement to produce output as follows: First and Last Name of students who have the Last name that starts with an M.
 
Query # 9
Write a SQL statement to produce output as follows: First and Last name of students having an o in the second position in their First Name.
 
Query # 10
Write a SQL expression to produce output as follows: display the Status for, and the number of occurrences that apply to each status. You must use the Count(*) function. You must show the result of the Count(*) function as CountStatus. Group by Status and output the results in ascending order of CountStatus.

ITSD322U4IP

 

Assignment Description

Assignment Details

The Alset Corporation wants to begin marketing electric vehicles (EVs) to customers in the nation of Climatonia. Because the company is brand new, models and options are very limited. The user can only select from one of three types of models, and the only available option is an extra charging cable. Your job is to write a program in Java that will allow employees to see the configurations that are currently available for purchase.

Alset EVs come in three types:
Type 1: Rear wheel drive, small battery pack (short range)
Type 2: Rear wheel drive, medium battery pack (medium range)
Type 3: All wheel drive, large battery pack (long range)

All cars feature four doors and come with a charging cable. Type 1 vehicles are painted green and have no other options. Type 2 vehicles are painted blue and have GPS navigation. Type 3 vehicles are painted red, have GPS navigation, and also have a sunroof.

After meeting with the client, the design team determined the following custom class requirements for this program:

A class called Alset with the following:

  • A property called numDoors (integer) with a value of 4
  • A property called chargeCable (integer) with a value of 1
  • A property called paintColor (String) with a value of Green
  • A property called freeCharge (String) with a value of No
  • A method called displayInfo() that prints each of these properties on screen like this example: “Number of doors: 4”

A class called Type1 with the following:

  • Inherits from Alset class
  • This model does not have any additional features

A class called Type2 with the following:

  • Inherits from Alset class
  • An integer property called gpsNav with a value of Yes
  • A method that overrides displayInfo(), adding a line to report the gpsNav property

A class called Type3 with the following:

  • Inherits from Alset class
  • An integer property called gpsNav with a value of Yes
  • An integer property called sunroof with a value of Yes
  • A method that overrides displayInfo(), adding lines to report the gpsNav and sunroof properties

When the program runs, present the user with a simple explanation of the program (one sentence), followed by a menu that asks them to enter 1 for Type 1, 2 for Type 2, or 3 for Type 3. Use the Scanner class to process input and use IF/ELSE statements to handle their choice. Once the choice has been made, instantiate a member of the appropriate class, set the correct paint color (if type 2 or 3), then execute the displayInfo() method to display the properties of the vehicle on screen. Once the information has been displayed, the program should end.

Write code comments in both the project class and each of the custom classes to document your program. In your custom classes, use JavaDoc comments to document the features of the class.

NOTE: The paint color may not be set within the Type2 or Type3 classes.

NOTE: This program must be submitted as a NetBeans project in a ZIP. Separate files or code are not acceptable.

SE942 week 1 dis

Week 1

Write about a project that you accomplished. Explain what needed to be done, how it got done, who worked on the project, how long did it take, how much it cost, and what were the risks involved in the project.  

Comments to 2 classmates must be of substance; not just “I agree” or “Good Post.” The purpose of the responses is to convert the discussion forum into a quality learning environment through which you improve your knowledge and understanding of the subject matter.

Fundamentals of Security (The Chief Financial Officer)

The Chief Financial Officer (CFO) made some complaints to the CEO regarding recent capital expenditures for security software. You try to lighten the blow by explaining the value of controlling security.In a point paper to the CEO, explain the cost-benefit analysis method you use to do a quantitative assessment before investing in security control.

Complete and include the table below in your paper.

The requirements for your assignment are:

  • 2-3 page APA paper excluding title and reference pages
  • Provide at least two references and in-text citations in APA format
  • College level writing

Discussion and research report on Cyber security course

Need to present a Discussion with a word count of above 120+ words and each discussion need a separate reference link for sure.

1) AppDetectivePro  120 words  Need link reference as well

2) MSSQL datamask= 120 words  Need link reference as well

3) Scuba=  (120+120 = 240 words around) Need this same topic in 2 different formats and 2 different URL links as well needed)

4)Docker (software) =  (120+120 = 240 words around) Need this same topic in 2 different formats and 2 different URL links as well needed)

5) Data sovereignty in the cloud = 120 words  Need link reference as well

6)SECaas ( security as a service) = 120 words  Need link reference as well

Need to present a research report on with a word count no more than 70-110 words(not more than the count provided) and should provide a separate 

URL reference link too

1) AppDetectivePro – 70+ words Need link reference as well

2) MSSQL datamask= 70+ words Need link reference as well

3)Scuba = ( Need this same topic in 2 different formats and 2 different URL links as well needed) (70+70=140 words)

4)Docker (software)  =  ( Need this same topic in 2 different formats and 2 different URL links as well needed) (70+70=140 words)

5)Data sovereignty in the cloud = 70+ words Need link reference as well

6) SECaas ( security as a service) = 70+ words Need link reference as well

 

It is suggested you use a Research Theme to help you stay focused, and to provide continuity throughout your research.  Here is a list of ideas, but this list is not all-inclusive: 

Current technologies available to support management functions,

Best Practices,

Future improvements/technologies, or

Other standards related to your specific field.

Note: The content should be in a general words with no technical jargons.

This question is from a cyber security subject so that the matter should relate to cyber security for sure and should connect to readers.

 NO PLAGIARISM STRICTLY  and do not use AI to get the copy paste information lik Chatgpt

Each one should be different and no each topic information should be similar to the other topic strictly.

Content should be unique and in a simple understanding way.

Deadline: 04/06/2023 11:59AM CST

Also provide me the separate files for discussion and the research reports instead of submitting in a single file.

Research Paper- Individual- PD- 11

Research topic

Motivation and work performance

Assignment Requirements:

  1. Choose a research topic from the chapter readings or from the list provided by your professor.
  2. Research/find a minimum at least four (4), preferably five (5) or more, different peer-reviewed articles on your topic from the University of the Cumberlands Library online business database. The article(s) must be relevant and from a peer-reviewed source. While you may use relevant articles from any time frame, current/published within the last five (5) years are preferred. Using literature that is irrelevant or unrelated to the chosen topic will result in a point reduction.
  3. Write a four (4) to five (5) page double spaced paper in APA format discussing the findings on your specific topic in your own words. Note – paper length does not include cover page, abstract, or references page(s).
  4. Structure your paper as follows:
    1. Cover page
    2. Overview describing the importance of the research topic to current business and professional practice in your own words.
    3. Purpose of Research should reflect  the potential benefit of the topic to the current business and professional practice and the larger body of research.
    4. Review of the Literature summarized in your own words. Note that this should not be a “copy and paste” of literature content, nor should this section be substantially filled with direct quotes from the article. A literature review is a summary of the major points and findings of each of the selected articles (with appropriate citations). Direct quotations should be used sparingly. Normally, this will be the largest section of your paper (this is not a requirement; just a general observation).
    5. Practical Application of the literature. Describe how your findings from the relevant research literature can shape, inform, and improve current business and professional practice related to your chosen topic.
    6. Conclusion in your own words
    7. References formatted according to APA style requirements

    The research must be conducted using peer-reviewed trade or academic journals. While Blogs, Wikipedia, encyclopedias, course textbooks, popular magazines, newspaper articles, online websites, etc. are helpful for providing background information, these resources are NOT suitable resources for this research.