image
.jpg
keyboard_arrow_up
School
Macomb Community College *
*We aren’t endorsed by this school
Course
1710
Subject
Computer Science
Date
Jul 2, 2024
Type
jpg
Pages
1
Uploaded by AgentTeamGiraffe39
A | @b | Ask Copilot - + || 4 [of5 | a3 N ! Lab Exercise 8.06: Gathering Error Numbers 15) DO NOT LOG IN AS ROOT FOR THIS ASSIGNMENT. 16) Execute each of the commands [five commands] on page 163 showing the Error Code for each. 17) Deliverable: Take a screenshot showing the errors in the step above. Lab Exercise 8.07: Modifying the bash Environment 1) Make a copy, backup, of your .bash_profile file. a. cp .bash_profile .bash_profile-bak 2) Begin with Step 1 and end with Step 4. 3) Note that the alias SITE has an invalid URL; you can replace it with www.google.com ITOS-1710 Introduction to Linux Page 4 ITOS-1710 Introduction to Linux £ |
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
* Create a code that does the following tasks *
Create a code identical to the telegram bot that creates a screen shot for the site and then returns the image in the form (Pdf) and then sends it to the user, taking into account the inclusion of a bot control by the user and the inclusion of the token code
arrow_forward
What is the difference between clc and clear commands?
B I
A-
CLC: Clear the contents of the command window without any effect on all variables in the working
environment
Clear: Clear all variables from the workspace
D (丁欣朔)
11:44:57
Create a matrix 20 by 20. Fill it in the following way. Each matrix entry in the intersection of two
middle rows and two middle columns should be assigned number 10, and all other matrix entries
should be assigned number 5.
A- BI
A=10*ones(20,20) - 5*eye(20,20)-5fliplr(eye(20,20))
arrow_forward
please comment all code
Using a Bash environment, write a script to do the following:
- declare and initialize an array to a few numbers.- in a loop, validate the numbers so they are greater than 0, if so:- get the total of them then the average.- print the average value.
arrow_forward
can you please double-check this code? thank you!
arrow_forward
Please give me correct solution.
arrow_forward
java
dont use others answers please!!
will leave you feedback!!
Thank You!!
arrow_forward
Project One (1): Image
2 Imagguil@compute-/private/courses/es2211/W21/assignments/asn3/p.
fimagguilecompute projijs ./proji
Enter values for Layers, Rows, Columns (elements in each row): 234
Original Matrix
Layer 1
(1) 71
72
57
48
49
(2 ) 99
layers
57
( 3 ) 12
58
57
18
23
prompt
Layer 2
(1) se
( 2) 30
(3) 94
77
83
12
99
90
42
84
80
96
row
number
Enter values for Layers, Rows, Columns (elements in each row): e e e
FINISHED
(Imagguilecompute projijs
(Imagguilecompute projijs
Code for generating random integers:
int x, m = 100;
time_t t;
srand ( (unsigned) time (st));
x = (rand () % m) +1;
where:
time_t is defined in the C library of time.h
m is range. In this case 100 signifies the range of 0 to 99, so we add I to the result.
(note: m will vary in the second project to match to the matrix size.)
arrow_forward
Course Title : Operating SystemQuestion :
How you will create new user using terminal in Ubuntu? Add screenshots of all steps for new user creation including terminal and Login page in Answer sheet. Every student has to create new user as of his/her arid number for example (18-arid-2929).
Note: screenshots are mandatory.
arrow_forward
Please see attachment
arrow_forward
linux script task
arrow_forward
Solve this problem, please. Thank you!
arrow_forward
Rules:
1. Mention student ID, Name, Section Number, at the end of the Assignment.
2. COPYING is not permitted and if identified marks will be deducted.
3. Marks will be deducted for Late Submission.
4. Last Date for submission is 2.12.2021
5. You can upload the file by taking pictures of all pages and compress into single "rar" file.
Note: All the work should be Hand - written.
No copy paste.
No typing anything in the computer as file/document.
Just answer without explanation please.
arrow_forward
Lab 6.3 Download SavingAccount.py (See below). Overload the following operator:’
==: return True when all attributes of two objects are equal
> : return True if the balance of the account on the left is great than the balance
of the account on the right
Write a script that create 2 accounts. Then test the == and > operator.
"""
File: bank.py
This module defines the SavingsAccount.
"""
class SavingsAccount(object):
"""This class represents a savings account
with the owner's name, PIN, and balance."""
RATE = 0.02
def __init__(self, name, pin, balance = 0.0):
self._name = name
self._pin = pin
self._balance = balance
def __str__(self):
result = 'Name: ' + self._name + '\n'
result += 'PIN: ' + self._pin + '\n'
result += 'Balance: ' + str(self._balance)
return result
def getBalance(self):
return self._balance
def getName(self):
return self._name…
arrow_forward
commands not found
arrow_forward
DO NOT COPY FROM OTHER WEBSITES
Correct and detailed answer will be Upvoted else downvoted. Thank you!
arrow_forward
Scenario:
You have been tasked with building a URL file validator for a web crawler. A web crawler is an application that fetches a web page, extracts the URLs present in that page, and then recursively fetches new pages using the extracted URLs. The end goal of a web crawler is to collect text data, images, or other resources present in order to validate resource URLs or hyperlinks on a page. URL validators can be useful to validate if the extracted URL is a valid resource to fetch. In this scenario, you will build a URL validator that checks for supported protocols and file types.
arrow_forward
18
Which of the following statements is true?
O The code in the finally block is only executed if an exception occurs.
O The finally block is always executed no matter what
O The code in the finally block is only executed if there is no catch clause
O The finally block is only executed if no exception was raised
19
Which of the following statements is not correct about inner class
(1 Point)
arrow_forward
User in
Below the complete statement.
arrow_forward
Case study: Our client is planning to provide us with their data (integers). They expect us to produce a report with their totals. We observed their latest data and found some possible value pairs to test with: 2 and 5, 4 and 4, 1000 and 2000, 100 and 101. TASK 1. Variables. Review variables, Implement the following code in Eclipse, and ensure it runs without errors. 1. Create a Task1.java file. 2. Take a screenshot of your console output.
arrow_forward
Task 2: Fault Intolerant
When reviewing logfiles, we need to be aware of the first time an ERROR crops up
in the log. This can help us see how and when things might have gone wrong.
For this task we will find the first event/message of type ERROR and print it out.
Instructions
1. Create a file called Fault Intolerant.java
2. As with Task 1, open the file for reading in a try-catch block.
3. Read through the file line by line
4. If the message/event type is ERROR, throw a new Exception with the line
as the exception message.
5. Catch the thrown exception and print out the message to the user then
exit the program immediately.
6. If no error message is found, exit the program without printing anything.
Sample Input/Output Example 1:
1: 1631077133.1621487 ERROR Carrier signal lost.
Example 2:
Cannot find logfile!
Exiting...
arrow_forward
The Exception shape triggers User Alerts received when only when logged into AtomSphere.
arrow_forward
uagm.blackboard.com/webapps/assessment/take/launch.jsp?course_assessment jd3 1971
YouTube
W Maps Discord Fonts (copy..
V Citation Form | APA...
Aplicaciones M Gmail
This test has a time limit of 2 hours and 30 minutes.This test will save and submit autom
Warnings appear when half the time, 5 minutes, 1 minute, and 30 seconds remain.
Multiple Attempts Not allowed. This test can only be taken once.
Force Completion This test can be saved and resumed at any point until time has expired. The timer will co
Your answers are saved automatically.
Remaining Time: 2 hours, 20 minutes, 55 seconds.
¥ Question Completion Status:
QUESTION 1
To expand a 2-bit parallel adder to a 4-bit parallel adder, you must
Oa.use two 2-bit adders with no interconnections
Ob.use two 2-bit adders and connect the sum outputs of one to the bit inputs of the other
Oc use four 2-bit adders with no interconnections
O d. use two 2-bit adders with the carry output of one connected to the carry input of the other
QUESTION 2…
arrow_forward
Please, I need help with this assignment, please. I pasted the HTML file and JavaScript file at the bottom of the instruction. Thank you so much.
Murach's JavaScript and jQuery 4th edition by MARY DELAMATER (Chapter 12)
Develop a password generatorIn this exercise, you’ll develop an application that generates strong passwords of the length entered by the user.1. In the JavaScript file, note the getRandomNumber() function. Also, note that the ready event handler contains the handler for the click event of the Get Password button and the handler for the click event of the Clear button. The handler for the Get Password button clears the password text box and has a constant named chars that contains some characters. The handler for the Clear button resets the text boxes and moves the focus to the first text box.2. In the handler for the Get Password button, get the value entered by the user and make sure it’s a number. If it isn’t, display an alert dialog box with this message: “Please…
arrow_forward
"In PHP, reusable code can be inserted into every module using which function?"
O include()
30000
O call()
O copy()
O insert()
QUESTION 12
"Is software development testing phase, the first test is done by a developer after changing code or creating new code. What do you call this phase of testing?"
O Development test
booo
O Unit test
O System test
O Integration test
QUESTION 13
"In PHP, if an exception is not caught, a fatal error will be issued with a(n)
O Not found
O System
O Uncaught Exception
O Error
message."
QUESTION 14
Which PHP function replaces some characters with some other characters in a string or arrays?
O find_replace()
Ostr_replace()
O changestr()
O replace()
arrow_forward
AVA PROGRAM ASAP
Please modify this program ASAP BECAUSE it does not pass all the test caseswhen I upload it to hypergrade. Its says 0 out of 3 passed when i upload it to hypergrade. The program must pass the test case when uploaded to Hypergrade.
import java.util.HashMap;import java.io.BufferedReader;import java.io.FileReader;import java.io.IOException;import java.util.Scanner;public class MorseCodeConverter { private static HashMap<Character, String> morseMap = new HashMap<>(); public static void main(String[] args) { loadMorseCodes(); Scanner scanner = new Scanner(System.in); System.out.println("Please enter a string to convert to Morse code:"); String input = scanner.nextLine().toUpperCase(); String morseCode = convertToMorse(input); System.out.println(morseCode); } private static void loadMorseCodes() { try (BufferedReader reader = new BufferedReader(new FileReader("morse.txt"))) { String line;…
arrow_forward
correct error
// testing for uplaoding files
WebElement upload=driver.findElement(By.id(“inputGroupFile02));upload.sendKeys("E:\\6th semester\\software testing");
arrow_forward
11
DO NOT COPY FROM OTHER WEBSITES
Upvote guarenteed for a correct and detailed answer. Thank you!!!
arrow_forward
|即一即一即一即一
Bb x D Bb Bb
Bb
Bb
Bb
Bb H
OTH
Bb
Bb
Bb
Q Search the web or enter a website
1
of 2
CD Page view A Read aloud
T Add text | ▼ Draw
Highlight
Erase
Focus on classes, objects, methods and good programming style
Your task is to create a BankAccount class.
Class name
BankAccount
Attributes
balance
float
pin
integer
Methods
init_()
get_pin()
check_pin()
deposit()
withdraw()
get balance()
The bank account will be protected by a 4-digit pin number (i.e. between 1000 and 9999). The
pin should be generated randomly when the account object is created. The initial balance should
be 0.
get_pin () should return the pin.
check_pin (pin) should check the argument against the saved pin and return True if it
matches, False if it does not.
deposit(amount) should receive the amount as the argument, add the amount to the account
and return the new balance.
Reiected Ouestions.
Engineering
Computer Engineering
Programing
arrow_forward
***Please Answer with code***
Your goal is to create a PHP driven website for selling Computer Science textbooks.
Your site MUST include the following:
1. An Index page which includes menus for different subjects (Networking, programming, security).
2. Each subject page must allow the user to select and order more than one book at a time. When the user has selected the book, they should be requested to enter their student id number to reserve the book. They can also select a check box, which "charges their account on file" for the book. This also allows them to have curb side pickup. If the user does not check the box, the site will let them know the book will be on reserve for them to pick up for the next 24 hours. Once the time expires the book will be returend to the shelve.
3. All information entered by the user must be verified. Check for: correct type (numbers/strings), missing information, invalid format (such as invalid student id format). An error message must display allowing…
arrow_forward
Create pseudo code for this algorithm.
arrow_forward
3-20
Please write Java Code per the instructions and make sure code compiles before submitting. Thank you!
arrow_forward
SEE MORE QUESTIONS
Recommended textbooks for you
LINUX+ AND LPIC-1 GDE.TO LINUX CERTIF.
Computer Science
ISBN:9781337569798
Author:ECKERT
Publisher:CENGAGE L
Related Questions
- * Create a code that does the following tasks * Create a code identical to the telegram bot that creates a screen shot for the site and then returns the image in the form (Pdf) and then sends it to the user, taking into account the inclusion of a bot control by the user and the inclusion of the token codearrow_forwardWhat is the difference between clc and clear commands? B I A- CLC: Clear the contents of the command window without any effect on all variables in the working environment Clear: Clear all variables from the workspace D (丁欣朔) 11:44:57 Create a matrix 20 by 20. Fill it in the following way. Each matrix entry in the intersection of two middle rows and two middle columns should be assigned number 10, and all other matrix entries should be assigned number 5. A- BI A=10*ones(20,20) - 5*eye(20,20)-5fliplr(eye(20,20))arrow_forwardplease comment all code Using a Bash environment, write a script to do the following: - declare and initialize an array to a few numbers.- in a loop, validate the numbers so they are greater than 0, if so:- get the total of them then the average.- print the average value.arrow_forward
- Project One (1): Image 2 Imagguil@compute-/private/courses/es2211/W21/assignments/asn3/p. fimagguilecompute projijs ./proji Enter values for Layers, Rows, Columns (elements in each row): 234 Original Matrix Layer 1 (1) 71 72 57 48 49 (2 ) 99 layers 57 ( 3 ) 12 58 57 18 23 prompt Layer 2 (1) se ( 2) 30 (3) 94 77 83 12 99 90 42 84 80 96 row number Enter values for Layers, Rows, Columns (elements in each row): e e e FINISHED (Imagguilecompute projijs (Imagguilecompute projijs Code for generating random integers: int x, m = 100; time_t t; srand ( (unsigned) time (st)); x = (rand () % m) +1; where: time_t is defined in the C library of time.h m is range. In this case 100 signifies the range of 0 to 99, so we add I to the result. (note: m will vary in the second project to match to the matrix size.)arrow_forwardCourse Title : Operating SystemQuestion : How you will create new user using terminal in Ubuntu? Add screenshots of all steps for new user creation including terminal and Login page in Answer sheet. Every student has to create new user as of his/her arid number for example (18-arid-2929). Note: screenshots are mandatory.arrow_forwardPlease see attachmentarrow_forward
- linux script taskarrow_forwardSolve this problem, please. Thank you!arrow_forwardRules: 1. Mention student ID, Name, Section Number, at the end of the Assignment. 2. COPYING is not permitted and if identified marks will be deducted. 3. Marks will be deducted for Late Submission. 4. Last Date for submission is 2.12.2021 5. You can upload the file by taking pictures of all pages and compress into single "rar" file. Note: All the work should be Hand - written. No copy paste. No typing anything in the computer as file/document. Just answer without explanation please.arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- LINUX+ AND LPIC-1 GDE.TO LINUX CERTIF.Computer ScienceISBN:9781337569798Author:ECKERTPublisher:CENGAGE L
LINUX+ AND LPIC-1 GDE.TO LINUX CERTIF.
Computer Science
ISBN:9781337569798
Author:ECKERT
Publisher:CENGAGE L