Create a data set representing file system like in linux file system
Create nodes
Convert them into B tree structure, implement in C lang, with searching, adding , deleting features of files
Create a data set representing file system like in linux file system
Create nodes
Convert them into B tree structure, implement in C lang, with searching, adding , deleting features of files
Answer each these questions in a paragraph with at least five sentences: Include the question and number your responses accordingly. Provide a citation for each answer.
1. With all the stories about millions and millions of bytes of personal data having been exposed, why is their still any faith at all in the Internet?
2. How has the term hacking changed meaning over the years?
3. What is the most dangerous hacker tool?
4. From the news: How were NSA’s hacker tools compromised?
5. What was the vulnerability in the Target Breach?
6. What do you think of hactivism?
7. How did Stuxnet work?
8. What was the Arpanet?
9. Deep brain stimulation is a treatment for Parkinson’s disease. Medical devices such as these are now becoming accessible through the web. Consider the dangers (threat surface)?
10. What is the Red Team?
At UC, it is a priority that students are provided with strong educational programs and courses that allow them to be servant-leaders in their disciplines and communities, linking research with practice and knowledge with ethical decision-making. This assignment is a written assignment where students will demonstrate how this course research has connected and put into practice within their own career.
Assignment:
Provide a reflection of at least 500 words (or 2 pages double spaced) of how the knowledge, skills, or theories of this course have been applied, or could be applied, in a practical manner to your current work environment. If you are not currently working, share times when you have or could observe these theories and knowledge could be applied to an employment opportunity in your field of study.
Requirements:
Course Name: Enterprise Risk Management
Click the link above to submit your completed assignment.Requirements:
The Lab assignment will be graded out of 100 points. There are multiple parts or tasks that make up each Lab.
This document can be downloaded here : Lab4CFall20v1.docx
The code you need to start with : Lab4Part1.c
The data file you need : Lab4giftList.txt (Note that this file name doesn’t match the code so you’ll need to adjust that.)
Some tasks ask you to write code, and specify what name to use for the file in NetBeans. You need to use exactly the name that is given (do not change the case, or make any other modification). Remember, the name of the main class must match the filename.
There are further instructions at the bottom (after the questions) about how to save the file from NetBeans in order to be able to turn it in.
For every lab assignment you need to create an answers file. In this answers file you will put in answer any questions that are asked, you will show the output of code that you write and you will reference any code files that you create for a given question. See below for more details about what goes in the answers file.
Your answers document needs to be named with your initials and the last four digits of your ID number and then Lab#answers. So if my initials are JCMT and the last four digits of my ID are 1234, then the answers file for my Lab 4 would be JCMT1234Lab3answers.
17.b) Please see file Lab1Part3.c for this question.”
Each task below will instruct you where to put your answers. If the task says to “Save your program as file XYZ1234Lab1Task1.c” then this .c file should be turned in as part of the assignment along with the answers file.
Every lab assignment has a given due date. No late labs will be accepted. (Five minutes late is still late.) Lab assignments will be posted on Canvas. If you are unable to turn in your lab on time, you may request an extension by sending an e-mail to Dr Tiernan within 24 hours of the deadline for the lab. The e-mail must explain WHY you are not able to submit on time. If Dr. T grants an extension, she will reply to your message with the late penalties and new deadlines.
At the very top of the C file you must replace the first three lines of comments (the part that starts with “To change”) with something like “CSE1310 Fall 2020” . This is described as part of the Lab1 assignment.
Every document that is turned in MUST have your name and your student ID. This means that your .c files must have your name and ID number in the comments at the top of the file. You must put your name and ID just in the second comment block that NetBeans puts in your code. Below the label Author: and the creation date, put your name as specified in the instructions for this lab assignment and as shown above. This should be just above the include statements in the code. Ex:
/*
* File: main.c
* Author: jcmtiernan
*
* Created on September 1, 2020, 12:57 PM
.*
* Name: Dr. Carter Tiernan
* UTA ID: 1000000000
*/
#include
In the empty comment block before main, make sure that you add comments to describe your own program. Here is an example
/*
* Lab X Part Y – Testing arithmetic in C
*/
int main…
Every code file should have your initials and the last four digits of your ID number at the beginning of the file name. For example, if my initials are JCMT and the last four digits of my ID are 1234, then the C code file for my Lab 1 Task 1 would be JCMT1234Lab1Task1.c . In the questions below, the initials and digits are shown as XYZ1234 . Every code file name should start with the initials and digits even if not explicitly listed. You will substitute your initials and digits for the XYZ1234 part of the file name.
1) Cannot use exit
2) Cannot use break except between case statements in a switch structure
3) Cannot use continue
4) Cannot use an intentional infinite loop such as while (true)
5) Cannot use goto
NOTE on compiler to use:
I know that various folks – including myself – have been having issues with the NetBeans environment for C. If NetBeans isn’t working here are some possible options. You are not limited to these choices but I’ve at least played with these a little.
OnlineGDB (onlinegdb.com/online_c_compiler )
JDoodle (jdoodle.com/c-online-compiler/ )
CodingGround (tutorialspoint.com/compile_c_online.php )
If a Surface Pro is all you have access to, then you can try the app Code Compiler Editor (https://chrome.google.com/webstore/detail/code-compiler-editor/nagdmbckkknilkfndjaadheldefdkfdb?hl=en-US (Links to an external site.) ) to get some basic coding functionality for C programming.
You may have also used Eclipse, Code∷Blocks, etc. which are fine to use.
CAVEAT: Do not use any specialized commands that only work in that specific compiler.
Grading Rubric for Lab 4:
Part 1: 100 points
Lab 4 parts to complete:
Part 1a: You have been given some code Lab4Part1.c.
1.a) Create a new C application project called XYZ1234Lab4Part1a. Copy the code from Lab4Part1 into your new application. Make the modifications as described in the code and the questions below for Part 1a.
Modifications to make:
Meaningful names – Look for the comments related to meaningful names.
Replace generic / meaningless variable and function names with meaningful names
A “meaningful name” is a name that tells someone else what that data represents
Hard coded numbers – Look for the comments related to hard-coded numbers
A hard-coded number is a fixed numeric value that would have to be replaced with a different number in order to use the program for different data. Fixed values make your code less easy to reuse. At the top of the program you will see a bunch of constants defined. Use those constants to replace fixed values. Remember, if the value is a variable then it is not fixed. For example, using [5] is hard coded but using [x] is not because x is a variable.
In declarations – replace fixed numeric values with constant names defined below for sizes
In accessing array elements – replace fixed numeric values with constant names defined below for columns
Formatting and indentation – Indentation, placement of curly braces, and spacing primarily
Use the notes in the code to modify the code so that formatting and indentation is consistent throughout whole program
Use consistent spacing inside statements including assignments, arithmetic, control structures, and function calls
Insure that code is indented consistently throughout. Code within { } should be indented in one tab space from the {.
Opening { should either be consistently
Each level of nested { should then indent the code inside
Comments – Add comments as noted to explain various parts of the code
In some places, questions are given to help you write comments.
Some of these questions are also below in this document
Make sure that all output data is labeled so that a user would know what is represented by each set of data shown in the output. Make sure that your program runs completely without errors and the correct output is produced. Once your program is modified as required and working correctly, save your working program as XYZ1234Lab4Part1a.c [Don’t forget to put a note in your answer file for this question reminding the grader to look for the .c file {30 points}
Rubric:
All meaningless/generic names {1} modified to more meaningful names {2} throughout program{1} {total 4 pts}
Correctly replace all hard-coded numbers with appropriate constants.{3} Choice of constants should be based on constant name {2} and program use {2} {total 7 pt}
Correctly indent as directed {3 pts}
Correctly and consistently use curly braces { } throughout code {3 pts}
Consistently use spacing throughout code {2 pts}
Add all comments as noted in the code {11 pts}
1.b) Create a new C application project called XYZ1234Lab4Part1b. Copy the code from XYZ1234Lab4Part1a into your new application. Find the total cost of all the gifts and print it. Make the minimum modifications needed to the code to accomplish this.
Make sure that all output data is labeled so that a user would know what is represented by each set of data shown in the output. Make sure that your program runs completely without errors and the correct output is produced. Once your program is modified as required and working correctly, save your working program as XYZ1234Lab4Part1b.c [Don’t forget to put a note in your answer file for this question reminding the grader to look for the .c file ] {5 points}
Rubric:
Correctly modify code to find the sum of the totals. {3 pts}
Print the correct total {2 pts}
1.b2) Take a screenshot of the complete output of your program XYZ1234Lab4Part1b.c Make sure that the output information is understandable to the user. Paste the screenshot into your answers document as the answer to this question. {3 pts}
1.c) Create a second .txt data file called GiftList2.txt that could be used as input for this program. You must use the same format as the given input file but have entirely new data. The data must be actual data that you found in an ad or a store or on the web. You must include at least 12 items in your data file. No more than 3 items may have free shipping. Tax must be either copied exactly from checkout OR may be calculated as 0.0825 times the price of the item. You may use the categories that are in the current data file and you may create additional categories as appropriate. Example categories might be “Electronics”, “Antiques”, “Food”, etc. Have at least two items from each category you use and have at least 4 categories in your file. Save this data file GiftList2.txt as the file for this question. [Don’t forget to put a note in your answer file for this question reminding the grader to look for this text file ] {5 points}
1.c2) Run your XYZ1234Lab4Part1b.c program using this new file of data GiftList2.txt. Take a screenshot of the complete program output. Make sure that the output information is understandable to the user. Paste the screenshot into your answers document as the answer to this question. {3 pts}
1.d) Create a new C application project called XYZ1234Lab4Part1d. Copy the code from XYZ1234Lab4Part1b into your new application. Write a bubble sort function to sort the arrays by price from lowest to highest. Keep both arrays sorted together. In the main function, print the arrays after running the bubble sort.
Make sure that your program runs completely without errors and the correct output is produced. Once your program is modified as required and working correctly, save your working program as XYZ1234Lab4Part1d.c [Don’t forget to put a note in your answer file for this question reminding the grader to look for the .c file ] {6 points}
Rubric:
Correctly sort the arrays together. {3 pts}
Correctly sort based on price from lowest to highest {3 pts}
1.d2) Take a screenshot of the complete output of your program XYZ1234Lab4Part1d.c Make sure that the output information is understandable to the user. Paste the screenshot into your answers document as the answer to this question. {3 pts}
1.e) Create a new C application project called XYZ1234Lab4Part1e. Copy the code from XYZ1234Lab4Part1d into your new application. Write a bubble sort function to sort the arrays by category alphabetically. If two items are in the same category, then sort within the category by item name. Keep both arrays sorted together. In the main function, print the arrays after running this bubble sort.
Make sure that your program runs completely without errors and the correct output is produced. Once your program is modified as required and working correctly, save your working program as XYZ1234Lab4Part1e.c [Don’t forget to put a note in your answer file for this question reminding the grader to look for the .c file ] {9 points}
Rubric:
Correctly sort the arrays together. {3 pts}
Correctly sort based on category {3 pts}
Correctly sort within category based on item name {3 pts}
1.e2) Take a screenshot of the complete output of your program XYZ1234Lab4Part1e.c Make sure that the output information is understandable to the user. Paste the screenshot into your answers document as the answer to this question. {3 pts}
1.f) Create a new C application project called XYZ1234Lab4Part1f. Copy the code from XYZ1234Lab4Part1e into your new application. Write a function to count the number of unique categories and to save the category names into an array. The category array that is created should end up with NO duplicate values. The function should take in the appropriate data and an empty array to hold the category names. The function should put the category names in the array and it should return a count of the number of unique categories that were found. In main, after calling this function, print the number of unique categories and print the values in the category array.
Make sure that your program runs completely without errors and the correct output is produced. Once your program is modified as required and working correctly, save your working program as XYZ1234Lab4Part1f.c [Don’t forget to put a note in your answer file for this question reminding the grader to look for the .c file ] {13 points}
Rubric:
Correctly create function with required inputs and return type {2 pts}
Correctly find all unique categories and save in array {3 pts}
Correctly save each category only once, i.e. no duplicates in the array {2 pts}
Correctly count the categories {2 pts}
Correctly print count and category values in main {4 pts}
1.f2) Take a screenshot of the complete output of your program XYZ1234Lab4Part1f.c Make sure that the output information is understandable to the user. Paste the screenshot into your answers document as the answer to this question. {3 pts}
1.g) Create a new C application project called XYZ1234Lab4Part1g Copy the code from XYZ1234Lab4Part1f into your new application. For this part you can either modify one of your existing functions or write a new function that will count the number of items in each category and store this information in a new categoryCount array. The categoryCount array will be declared in main and should store the numbers in the same order as the categories are listed in the category array that was created in part f. The new or modified function should take in the appropriate data and the empty categoryCount array to hold the category count. The function should put the category counts in the array. In main, after calling this function, print the name of each category and the number of items in that category.
Make sure that your program runs completely without errors and the correct output is produced. Once your program is modified as required and working correctly, save your working program as XYZ1234Lab4Part1g.c [Don’t forget to put a note in your answer file for this question reminding the grader to look for the .c file ] {10 points}
Rubric:
Correctly create or modify function with required inputs and return type {3 pts}
Correctly count all occurrences of each unique category and save in array {3 pts}
Correctly print category names and counts in main {4 pts}
1.g2) Take a screenshot of the complete output of your program XYZ1234Lab4Part1g.c Make sure that the output information is understandable to the user. Paste the screenshot into your answers document as the answer to this question. {3 pts}
Miscellaneous: If you have questions, e-mail Dr. T and/or the TAs through Canvas.
——————————————————————————————————–
Suggestions
Create a folder for your lab in your CSE 1310 class directory (outside of the Netbeans projects folder) and name the lab folder with your initials, your last 4 digits, and LabX. [If you don’t have your files organized into folders, I STRONGLY suggest that you start doing this. This is a way to sort the material you keep on your computer and be able to find it later. Check the internet for suggestions on how to do this type of organization.)
As an example, if your name is Happy Camper 1010101010, then your Lab 1 folder name is HXC1010Lab1. Save your HXC1010Lab1answers file in this folder. Next save all the .c files for the assignment in the folder. Below is how to do that. Once you have put all the needed .c files in your folder, zip the folder to compress it before submitting it (see info further down with submission details).
Go to the main.c file (the program) in NetBeans that you want to save. Make sure the program is open in the main window and is the program you are looking at. You should see the window tab highlighted for the program you want. For example, if you are saving the .c file for Lab1Part5 you will see the window tab for that file will say lab1part5/Lab1Part5. Make sure your cursor clicks in the editing window of that file.
From that window, go to the File menu and select Save As. This will bring up the directory where the file is currently stored (lab1part5 in NetBeansProjects). Navigate from the current directory to your new folder and save the file in the new folder. This will make a copy of the program in your new folder. You may notice now in NetBeans that the tab on the window of the program has changed. The tab might now say HXC1010Lab1/Lab1Part5. This shows that you have made a copy and stored it in the new directory. You should close this window in NetBeans.
NOTE: If you have closed a project in NetBeans and want to go back to it to edit it some more, you can go to the project by going to the Projects (or Files) tab either in the pane or on the left margin of the window. Then select the folder of the project you want. Open the folder and select Source Files (might say src), then select the name of the main.c or other source file you want, then click on the that file. This will open the program again in the editing window for you to keep working on.
TIP: If you open the .c file that you saved in your folder (HXC1010Lab1/Lab1Part5) you can edit it in NetBeans but NetBeans CANNOT run it. This is because NetBeans expects all the files to be in its own folder. What will happen is that you will make changes but when NetBeans runs, it will run the copy that is stored in NetBeans not the copy from your folder so none of your edits will be executed. This is why you should always go back to the files in NetBeans to keep working.
C FILE NOTE: Only the .c files and the answers file should be included in your zipped folder. Do NOT include the entire NetBeans project. You will be penalized if you save the project instead of just the .c file.
Because C names all of the main files as main.c, you will need to save each unique main.c into its own folder and then save these folders into your XYZ1234Lab1 folder for submission. Thus, if you are turning in Lab 1 with three parts, then you should have a XYZ1234Lab1 folder and then inside that folder you should have folders for Parts 1, 2, and 3, i.e. a XYZ1234Lab1Part1 folder, a XYZ1234Lab1Part2 folder, and a XYZ1234Lab1Part3 folder.
How to submit
The assignment should be submitted via Canvas. Submit a ZIPPED directory/folder called XYZ1234Lab1.zip. The file must be ZIPped (not RAR). No other forms of compression accepted. (Contact the instructor or TA if you do not know how to produce .zip files). The zipped directory should contain your answers document and all the C code files (task1.c etc).
To create a zipped directory called XYZ1234Lab1.zip, follow these steps:
Submission checklist
After conducting independent research using at least three sources not used in the class write an essay that determines if there is a “Digital Divide” nationally and globally. If so, what can be done to close the gap, if anything?
Each assignment will be an essay written in APA format (see below). Each essay should be no less than 1500 words on the topic (s) noted below.
The title page and bibliography do not count towards the word count.
Complete the assignment in a Word document using APA formatting with your last name as part of the file name. Omit the abstract and outline. A Word APA template and APA sample paper are provided for reference
After completing the essay, save and upload the document in the Assignments section of the e-classroom.
Each essay will be checked by Turnitin automatically upon submission.You will have access to the originality reports.
Please follow the screenshots to finish the steps that are reqiured to clean the data and then create the ggplots. Then put the code in the HW5_Template.
1. Operational Excellence
2. Information Governance
3. Data Science and Big Data Analytics
4. InfoTech Import in Strat Plan
5. Emerging Threats and Countermeasures
6. Cloud Computing
7.InfoTech in a Global Economy
I want to some points for these will useful for my job duties
1. Azure Cloud storage
2. Dynamics CRM(Customer Relationship Management)
3. Developer
Question 1: 400 words
You are a member of the Human Resource Department of a medium-sized organization that is implementing a new inter organizational system that will impact employees, customers, and suppliers. Your manager has requested that you work with the system development team to create a communications plan for the project. He would like to meet with you in two hours to review your thoughts on the KEY OBJECTIVES OF THE COMMUNICATIONS PLAN. What should those objectives be?
Minimum of two references and one of the references needs to be from Text book to be used: Reynolds, George W. Information Technology for Managers, 2nd edition.(2016). Cengage Learning. ISBN: 978-1-305-38983-0.