CYB_300_Milestone_3-3
.docx
keyboard_arrow_up
School
Southern New Hampshire University *
*We aren’t endorsed by this school
Course
300
Subject
Computer Science
Date
Dec 6, 2023
Type
docx
Pages
1
Uploaded by JusticeJellyfishPerson10226
CYB 300 Milestone One Worksheet
CYB 300
2023 November 12
Required Script Element
PowerShell Script Statement
Screenshot
Change time zone to Tonga
Standard Time
Set-TimeZone -Name ‘Tango
Standard Time’
Set date/time to 6:00 a.m. on
February 29, 2020
Set-date -Date ‘2020/02/29 06:00’
Create a new local user with the
following parameters:
•
FullName: First_Name
Last_Name
•
Name: First_initial+Last_name
•
Password: Password123
•
Password Never Expires: true
$Password = Read-Host
-AsSecureString
New-LocalUser ‘Fernando1’
-Password $Password
-PasswordNeverExpires -FullName
‘Fernando Bonilla(David)’
Display a list of services
beginning with “W” and send
them to a text file named
“W_Services.txt”
Get-Service w* >W_Services.txt
Export PowerShell history to text
file named
“CYB_300_History_Firstname_La
stname.txt”
Notepad
./CYB_300_History_Fernando_Bonill
a.txt
Discover more documents: Sign up today!
Unlock a world of knowledge! Explore tailored content for a richer learning experience. Here's what you'll get:
- Access to all documents
- Unlimited textbook solutions
- 24/7 expert homework help
Related Questions
Project/folder name is LastName
Web application consists of a single page titled "Your Name Wk 3"
Web application connects to and displays the contents of the cis224_wk3 database
Web application has text entry fields for the following:
Name
Date of Birth
Favorite Color
Favorite Place To Visit
Nickname
Web application provides the ability to add new personal information
Web application provides the ability to update stored personal information
Web application provides the ability to delete stored personal information
arrow_forward
Instructions:
• Assignment to be completed on an individual basis.
• Open a new word document
Save as 60#######-Assignment 1
•
Save as a word document any other format will not
be marked.
• Answers are to be in complete sentences.
Turnitin® will be applied to all uploads to the
"Dropbox" of D2L.
• Each short answer question should have a minimum
of 250 words.
• All citations must be in APA Formato If your paper
does not contain any citations, your assignment will
receive a grade of '0'
• Assignment is to include a Cover Page, Table of
Contents, Body and Reference Page.
• Minimum of one external (NOT class PowerPoints)
reference per answer. You can also use class
PowerPoints to support your answers but you must
reference them.
T
P
Part B - Word Processing
Br
F
Research and discuss two advanced word processing features NOT covered in class that can
be used to increase productivity. Explain how they would help someone be able to do more
work.
CHEE AN
Question 2
arrow_forward
Setup
Branch name
assignment1
Directory
assignment1
Package name
assignment1
Instructions
Create a node server with the following requirements:
Use the dotenv package to manage your development environment variables.
PORT should be 3000
HOST should be localhost
Endpoints
/dotted
Only GET requests are allowed.
This endpoint will respond with the HTML content type.
This endpoint will take two required query parameters: word1 and word2.
The endpoint will take the two words and create a string that is the two words separated by enough “.” characters to make the length of the string 30.
For example if word1 is “turtle” and word2 is “153” the output should be: turtle.....................153
The response body should be the string wrapped in a <pre> tag.
/fizzBuzz
Only GET requests are allowed.
This endpoint will respond with the HTML content type.
This endpoint will take two required query parameters: start and end.
The endpoint will iterate from start to end and for each…
arrow_forward
Please give me correct solution.
arrow_forward
File Edit Selection View Go Debug Terminal Help
quiz4h - Visual Studio Code
E Settings
C quiz4.h
C> Users > m_str > OneDrive - Wichita State University > 2021 spring > cs 311 mw> C uiz4.h > Animal> hasvertebrate)
struct Animal{
virtual void respond() = 0;
3
virtual void consume() = 0;
virtual bool iswarmBlooded() = ®;
viptual bool hasVertebrate() = 0;
};
4
6.
8.
struct Mammal: public Animal{
protected:
bool warmBlooded- true;
10
11
12
bool vertebrate = true;
13
14
15
* design a class Dog derived from class Mammal.
* The Dog class should satisfies all following requirements:
*- member variable name, string type.
*- member variable breed, string type.
- a parameterized constructor to initialize name and bread. Note that there is no need to call parent class ctor here.
- override all virtual functions from Animal class. Specifically:
print a message in respond() function, such as "Dogs respond to voice.
16
17
18
19
20
21
22
...
print a message in consume() function, such as "Dogs consume…
arrow_forward
-student name can contain only alphabet and spaces
-student id or course id can contain only numbers
-login in can contain only alphabet
Form 2
A client-server application for students registration system
A) Client side: (HTML, CSS) Write the code for the register.html . The student or the
registrar use the client register.html. The student uses enters his login and password in
register.html to choose the courses for the next semester. If the course is opened then
the students can add it. The students can register up to 18 credit hours. The registrar
(login = root, and password = 123) uses register.html to add student, add course,
remove a student, and remove a course. See the following run:
Server Side:
Write the code of the server side register.php page such that.
1) The register.php checks using the regular expressions in PHP if the login is valid or not. A
valid login must be exactly 7 characters and starts with a letter and followed by any one or more of
the characters, S, 0-9,…
arrow_forward
Using C# in Visual Studio:
Create the graphical user interfaces as shown below. Provide appropriate names for all the controls.
arrow_forward
You created a registration feature for management but the data is not stored anywhere. For this assignment store the user registration information in web storage. The best approach would be to create a User object to store the data and use the email address as the key and the user object as the value.
Create a login button on the homepage and take the user to a login page. Prompt them for their username and password and compare it to the username and password stored for them in web storage. If it matches, display an alert that says "Logged In" If it does not match, display a message on the page that the username or password does not match and try again.
At the bottom of the login form, add a reset password link. Take the user to a reset password page that prompts them for their username and password and changes the password in web storage.
Existing Code:
index.html
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible"…
arrow_forward
A custom validator is typically used when
validation values are set based on user input
the browser doesn’t support JavaScript
the validation is based on the data in a database
the page is submitted in response to the user clicking a button whose CausesValidation property is set to False
arrow_forward
Calculate average and grade of marks through html helper.
Create new C# asp.net MVC project.
Add controller class
Create http get request to return view
Use html helpers to create form for the view
Write http post request for the button percentage to calculate percentage
Display the grade on grade label under the suitable criteria
Percentage Calculator:
arrow_forward
EXCEL - VBA - MACRO
Create a code in VBA EXCEL, where every time you change cell B1 on Sheet1, a new tab is created, renamed with what is written in that cell. Each new tab created must contain all the information that is on Sheet1, if they are updated.
arrow_forward
Write a form program in PHP that prompts a user to enter seven different fields of data, using a minimum of four different data type entries.
When the form is submitted to your PHP CGI, you are then to verify all fields were populated and the data was correctly entered.
Then, in your return, display the data entered in a well formatted page, otherwise you will return an error display to report the problem.
arrow_forward
1] using _________ key in positional parameters the set command can be used up to 9 words or 9 arguments.
arrow_forward
Create a student api.
The student resource contains the below information
Id, first name, last name, email
Generate a project file with the correct dependencies
Configure the application properties file for connecting to an H2 or mysql database
Create a model
Create a repository
Create the controller and implement the Standard CRUD HTTP methods
Create an endpoint that returns a list of students
Create an endpoint that returns back a single student by id
Create an endpoint the adds a student to the database
Create an endpoint that updates a student
Create an endpoint that deletes a student
arrow_forward
Matching Drag the letter from the list on the right to its matching term in the list on the left. When you are finished, click Done. Input message Invalid data .xltx Data validation Template Red ellipse VBA Version history Comment Shared workbook The process of matching data with specifications as the data is entered A data validation comment box that appears in an active cell before an entry is made Without this, individual copies of a shared workbook cannot be combined This marks invalid data in a range with validation settings. Programming language that expands the abilities of Excel Data that does not conform to the validation criteria An element in a threaded conversation in a workbook A sample workbook
arrow_forward
Assignment
Create a well-formed valid XML file that contains this
information. The information does not have to be
correct only your name needs to be correct, you can
make up all other information. Then, create the proper
XSLT file to load that XML data and display it. When
displaying it, make sure you're using:
• Different font colors
• Tables
• header tags ( ...)
• Images where the image name is read from the
XML file
The information you must include:
• Name
• My Picture (this is an image file name. For
example: loay.jpg, or myphoto.jpg
• Address
o Street number
o City
o State
o Zipcode
• Movies I like
o Title
o Release Date
arrow_forward
Please due in C++
arrow_forward
6
DO NOT COPY FROM OTHER WEBSITES
Correct and detailed answer will be Upvoted else downvoted. Thank you!
arrow_forward
Q)
1. Create user (hms) with all required privileges.
Then Using Below ERD Design System as Below
hms employee
hms doctors
PK
e Employee_ID: varchar(255)
hms patients
PK
Patient_ID : varchar(255)
e Batch_No: varchar(255) PK
e Name : varchar(255)
a Name : varchar(255)
& Employee_ID : varchar(255)
FK
e Address : varchar(255)
e Address : varchar(255)
O DOB : date
O DOB : date
hms attended_by
eContact : varchar(25)
e Contact : varchar(25)
FK
Patient ID: varchar(255)
e Gender : varchar(10)
e Gender : varchar(10)
e Batch_No : varchar(255) FK
# Salary : float(15,3)
eCategory : varchar(25)
FK e Dept_No : varchar(255)
e Blood_Group : varchar(5)
O DOA : date
hms departments
e Name : varchar(255)
e Location : varchar(255)
Dept No: varchar(255) PK
2- Create all tables with all constraint.
arrow_forward
__1).
arrow_forward
Expert Q&A
Done
create a project with at list 15 buttons based on
this database and include insert, delete and
update in visual studio
22:33
C&A PROJECT.pdf
D.O.B
NAME
Dpt ID
Dpt
GENDER
ID
Name
LOCATION
ADDRESS
EMPLOYEE
WORKS
DEPARTMENT
FOR
Number of
EMPLOYEE
CONTROLS
MANAGES
PROJECT
WORKS
ON
PROJECT
PROJECT
NAME
ID
it is a database about a security service and it has
to be in visual studio in c# language
arrow_forward
response page checks username and
password against arrays of valid usernames
and passwords (normally this is done
against a database - we'll change it later)
If valid - saves username to cookie, and sets
session variable LoggedIn to TRUE. If not,
sets the session variable to FALSE.
Displays link to "content page" (the page
you're protecting).
Created with Mi Notes
arrow_forward
SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
Computer Science
ISBN:9781337671385
Author:FARRELL
Publisher:CENGAGE LEARNING - CONSIGNMENT
Related Questions
- Project/folder name is LastName Web application consists of a single page titled "Your Name Wk 3" Web application connects to and displays the contents of the cis224_wk3 database Web application has text entry fields for the following: Name Date of Birth Favorite Color Favorite Place To Visit Nickname Web application provides the ability to add new personal information Web application provides the ability to update stored personal information Web application provides the ability to delete stored personal informationarrow_forwardInstructions: • Assignment to be completed on an individual basis. • Open a new word document Save as 60#######-Assignment 1 • Save as a word document any other format will not be marked. • Answers are to be in complete sentences. Turnitin® will be applied to all uploads to the "Dropbox" of D2L. • Each short answer question should have a minimum of 250 words. • All citations must be in APA Formato If your paper does not contain any citations, your assignment will receive a grade of '0' • Assignment is to include a Cover Page, Table of Contents, Body and Reference Page. • Minimum of one external (NOT class PowerPoints) reference per answer. You can also use class PowerPoints to support your answers but you must reference them. T P Part B - Word Processing Br F Research and discuss two advanced word processing features NOT covered in class that can be used to increase productivity. Explain how they would help someone be able to do more work. CHEE AN Question 2arrow_forwardSetup Branch name assignment1 Directory assignment1 Package name assignment1 Instructions Create a node server with the following requirements: Use the dotenv package to manage your development environment variables. PORT should be 3000 HOST should be localhost Endpoints /dotted Only GET requests are allowed. This endpoint will respond with the HTML content type. This endpoint will take two required query parameters: word1 and word2. The endpoint will take the two words and create a string that is the two words separated by enough “.” characters to make the length of the string 30. For example if word1 is “turtle” and word2 is “153” the output should be: turtle.....................153 The response body should be the string wrapped in a <pre> tag. /fizzBuzz Only GET requests are allowed. This endpoint will respond with the HTML content type. This endpoint will take two required query parameters: start and end. The endpoint will iterate from start to end and for each…arrow_forward
- Please give me correct solution.arrow_forwardFile Edit Selection View Go Debug Terminal Help quiz4h - Visual Studio Code E Settings C quiz4.h C> Users > m_str > OneDrive - Wichita State University > 2021 spring > cs 311 mw> C uiz4.h > Animal> hasvertebrate) struct Animal{ virtual void respond() = 0; 3 virtual void consume() = 0; virtual bool iswarmBlooded() = ®; viptual bool hasVertebrate() = 0; }; 4 6. 8. struct Mammal: public Animal{ protected: bool warmBlooded- true; 10 11 12 bool vertebrate = true; 13 14 15 * design a class Dog derived from class Mammal. * The Dog class should satisfies all following requirements: *- member variable name, string type. *- member variable breed, string type. - a parameterized constructor to initialize name and bread. Note that there is no need to call parent class ctor here. - override all virtual functions from Animal class. Specifically: print a message in respond() function, such as "Dogs respond to voice. 16 17 18 19 20 21 22 ... print a message in consume() function, such as "Dogs consume…arrow_forward-student name can contain only alphabet and spaces -student id or course id can contain only numbers -login in can contain only alphabet Form 2 A client-server application for students registration system A) Client side: (HTML, CSS) Write the code for the register.html . The student or the registrar use the client register.html. The student uses enters his login and password in register.html to choose the courses for the next semester. If the course is opened then the students can add it. The students can register up to 18 credit hours. The registrar (login = root, and password = 123) uses register.html to add student, add course, remove a student, and remove a course. See the following run: Server Side: Write the code of the server side register.php page such that. 1) The register.php checks using the regular expressions in PHP if the login is valid or not. A valid login must be exactly 7 characters and starts with a letter and followed by any one or more of the characters, S, 0-9,…arrow_forward
- Using C# in Visual Studio: Create the graphical user interfaces as shown below. Provide appropriate names for all the controls.arrow_forwardYou created a registration feature for management but the data is not stored anywhere. For this assignment store the user registration information in web storage. The best approach would be to create a User object to store the data and use the email address as the key and the user object as the value. Create a login button on the homepage and take the user to a login page. Prompt them for their username and password and compare it to the username and password stored for them in web storage. If it matches, display an alert that says "Logged In" If it does not match, display a message on the page that the username or password does not match and try again. At the bottom of the login form, add a reset password link. Take the user to a reset password page that prompts them for their username and password and changes the password in web storage. Existing Code: index.html <!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible"…arrow_forwardA custom validator is typically used when validation values are set based on user input the browser doesn’t support JavaScript the validation is based on the data in a database the page is submitted in response to the user clicking a button whose CausesValidation property is set to Falsearrow_forward
- Calculate average and grade of marks through html helper. Create new C# asp.net MVC project. Add controller class Create http get request to return view Use html helpers to create form for the view Write http post request for the button percentage to calculate percentage Display the grade on grade label under the suitable criteria Percentage Calculator:arrow_forwardEXCEL - VBA - MACRO Create a code in VBA EXCEL, where every time you change cell B1 on Sheet1, a new tab is created, renamed with what is written in that cell. Each new tab created must contain all the information that is on Sheet1, if they are updated.arrow_forwardWrite a form program in PHP that prompts a user to enter seven different fields of data, using a minimum of four different data type entries. When the form is submitted to your PHP CGI, you are then to verify all fields were populated and the data was correctly entered. Then, in your return, display the data entered in a well formatted page, otherwise you will return an error display to report the problem.arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- EBK JAVA PROGRAMMINGComputer ScienceISBN:9781337671385Author:FARRELLPublisher:CENGAGE LEARNING - CONSIGNMENT
EBK JAVA PROGRAMMING
Computer Science
ISBN:9781337671385
Author:FARRELL
Publisher:CENGAGE LEARNING - CONSIGNMENT