Lab 11
Reading Read the sections on parameters (Sobell, pages 460–470), control structures (Sobell, pages 419–435), and environment (Sobell, pages 471–474).
Procedure
The shell expands $0 to the name of the calling program (Sobell, page 461), $1–$n to the individual command-line arguments (positional parameters; Sobell, page 462), $* (Sobell, page 465) to all positional parameters, and $# (Sobell, page 466) to the number of positional parameters.
1. Write a script named all that displays (sends to standard output) the name of the calling program, the number of positional parameters, and a list of positional parameters. Include the #! line (Sobell, page 287) and a comment (Sobell, page 288). Remember to make the file executable (Sobell, page 100). Test the script with 0, 1, and 5 positional parameters.
2. Make a symbolic link (Sobell, page 113) named linkto to the all script you wrote in the previous step. Call linkto with two arguments. What does the script report as the name it was called as?
3. Write a script named myname that uses echo (most of the examples in Chap- ter 10 use this utility) to prompt the user with Enter your name: , reads into a variable the string the user types in response to the prompt, and then dis- plays Hello followed by the string the user typed. When you run the program it should look like this: $ ./myname Enter your name: Max Wild Hello Max Wild
4. Rewrite myname from the previous step, calling it myname2. Have this version of the program prompt the user for a string, but instead of displaying Hello and the string on the screen (sending it to standard output) redirect the output so the program writes only the string the user entered (and not Hello) to the temporary file named PID.name where PID is the process ID number (Sobell, page 467) of the process running the script. Display the contents of the PID.name file.
5. Write and run a script named looper that uses the for (Sobell, page 434) control structure to loop through the command-line arguments and display each argument on a separate line.
6. Rewrite looper from the previous step, calling it looper2. Have this version of the program use the for...in control structure (Sobell, page 432) to perform the same task.
7. Write a script named ifthen that prompts the user with >> and reads a string of text from the user. If the user enters a nonnull string, the script displays You entered: followed by the string; otherwise it displays Where is your input?. Use an if...then...else control structure (Sobell, page 424) to imple- ment the two-way branch in the script. Use the test (Sobell, pages 420 and 978) builtin to determine if the user enters a null string. What do you have to do to avoid getting an error message when you prompt with >>? (There are several ways to construct the test statement.)
8. Write and run a simple shell script named echomyvar that displays the PID (Sobell, page 467) of the process running the script and value of the variable named myvar. Display the PID of the interactive shell you are working with. What is the value of the variable within the process running the shell script? Are the interactive shell and the shell running the script run by the same or different processes (do they have the same PID)?
$ cat echomyvar
echo The PID of this process is $$
echo The value of myvar is: $myvar
$ echo $$
2651
$ ./echomyvar
The PID of this process is 4392
The value of myvar is:
The example near the top of Sobell, page 473, demonstrates a way to put a variable in the environment of a script you are calling without declaring the variable in the interactive shell you are running. Use this technique to assign a value to myvar, place it in the environment of echomyvar, and run echo myvar. After running the script, is myvar set in the interactive shell?
On the command line, assign a value to the variable named myvar and then run echomyvar again. Which value does the script display?
Use the export (Sobell, page 472) builtin in the interactive shell to place myvar in the environment and run echomyvar. (You can export myvar with out assigning a new value to it.) Did the script display the value of myvar this time?
Is the PID of the interactive shell the same or different from the PID of the script?
Call export without an argument and send the output through grep to dis- play the export attribute for myvar. The export builtin and declare –x perform the same function.
Use export –n (Sobell, page 473) to unexport myvar. Show that myvar is a shell variable but is no longer in the environment.
Use the unset (Sobell, page 304) builtin to remove myvar. Show that myvar is not available in the interactive shell or in the environment.
Deliverables Please submit the contents of scripts written, the command line calls that you make and the answers to any questions asked

Answers

Answer 1

Echo "The arguments were: $*" #List of positional parametersThe output are This script was called as ./all.sh, This script was called with 5 arguments .

What is parameters?

Parameters are variables that can be used to control the behavior of a system or process. They are used to customize and fine-tune the performance of a system or process, and can be adjusted to suit the needs of a particular application or situation.

Parameters can be adjusted manually, or automatically based on feedback from the system or process. Examples of parameters include settings such as speed, temperature, pressure, frequency, voltage, and current.

Therefore,  This script was called with 5 arguments .

To learn more about parameters on

brainly.com/question/30365448

#SPJ1


Related Questions

In the context of the data administration component of a database management system (DBMS), the acronym CRUD stands for _____. Group of answer choices create, read, update, and delete copy, revise, undo, and define create, repeat, undo, and develop copy, read, update, and define

Answers

Answer:

C.R.U.D stands for Create, Read, Update, Delete.

Explanation:

3. Answer the following in one sentence: (1*6=6 )
a) Explain Embedded Application.
b) What is brainstorming?
c) What do you mean by a Layout in Presentation?
d) Explain the different views available in the presentation application.
e) Why do we categorize or group information?
f) Which are the different animation effects available in the presentation?

Answers

Answer:

A

Explanation:

I did it

B. Brainstorming is sharing ideas, what you know with a group of people

True or False: Only CSS has online documentation because it is a more complex language than HTML. O True False​

Answers

Answer:

False

Explanation:

Both CSS (Cascading Style Sheets) and HTML (Hypertext Markup Language) have online documentation. CSS and HTML are separate languages with different purposes. HTML is used for structuring and presenting content on the web, while CSS is used for styling and formatting the appearance of that content.

Both languages have their own specifications and documentation available online. HTML documentation provides information about the various elements, attributes, and their usage, while CSS documentation covers properties, selectors, and how to apply styles to HTML elements.

Therefore, it is incorrect to say that only CSS has online documentation. Both CSS and HTML have extensive documentation available for reference.

What is research?. A. Looking at one page on the internet. B. Writing about a magazine article. C. Making a list interesting topics. D. Using many sources to study a topic.

Answers

hello

the answer to the question is D)

Answer: D

Explanation: Research is discovering many sources of information for a specific task, and the closest thing to that is answer D.

Please help it’s timed

Please help its timed

Answers

Answer:

2nd, third, and the 5th one

Explanation:

what is the name of the extension used to save publisher

Answers

Answer:

PUB

Explanation:

PUB IS THE NAME OF THE EXTENSION USED TO SAVE PUBLISHER

C++ code for selection sort that has options of add data, remove data, sort data in ascending and descending and truncate data

Answers

Answer:

#include <iostream>

#include <vector>

#include <algorithm>

using namespace std;

void printData(const vector<int>& data) {

   for (int value : data) {

       cout << value << " ";

   }

   cout << endl;

}

void addData(vector<int>& data) {

   int value;

   cout << "Enter a value to add: ";

   cin >> value;

   data.push_back(value);

   cout << "Value added successfully." << endl;

}

void removeData(vector<int>& data) {

   if (data.empty()) {

       cout << "No data to remove." << endl;

       return;

   }

   

   int index;

   cout << "Enter the index of the value to remove (0-" << data.size() - 1 << "): ";

   cin >> index;

   

   if (index >= 0 && index < data.size()) {

       data.erase(data.begin() + index);

       cout << "Value removed successfully." << endl;

   } else {

       cout << "Invalid index." << endl;

   }

}

void sortDataAscending(vector<int>& data) {

   sort(data.begin(), data.end());

   cout << "Data sorted in ascending order." << endl;

   printData(data);

}

void sortDataDescending(vector<int>& data) {

   sort(data.rbegin(), data.rend());

   cout << "Data sorted in descending order." << endl;

   printData(data);

}

void truncateData(vector<int>& data) {

   data.clear();

   cout << "Data truncated successfully." << endl;

}

int main() {

   vector<int> data;

   int choice;

   

   do {

       cout << "\n--- Menu ---\n";

       cout << "1. Add data\n";

       cout << "2. Remove data\n";

       cout << "3. Sort data in ascending order\n";

       cout << "4. Sort data in descending order\n";

       cout << "5. Truncate data\n";

       cout << "6. Exit\n";

       cout << "Enter your choice (1-6): ";

       cin >> choice;

       

       switch (choice) {

           case 1:

               addData(data);

               break;

           case 2:

               removeData(data);

               break;

           case 3:

               sortDataAscending(data);

               break;

           case 4:

               sortDataDescending(data);

               break;

           case 5:

               truncateData(data);

               break;

           case 6:

               cout << "Exiting program." << endl;

               break;

           default:

               cout << "Invalid choice. Please try again." << endl;

               break;

       }

   } while (choice != 6);

   

   return 0;

}

Explanation:

1. what is the result of attempting to compile and run the program? public class infytest { public static void main(string[] args) { int x, y, z; system.out.println(x y z);

Answers

While this code tries to show the output for three uninitialized variables, a build error occur.

What distinguishes a program from a program?

The proper spelling of "program" in American English. The reason the word "system" is filled less likely both Australian and Canadian English. Program is the standard spelling in British English, despite the fact that program is widely used in computing situations.

Even before the first variable can be employed in an expression in Java, it must first be defined and created. The code included will compile without even any issues:

public class infytest {

   public static void main(String[] args) {

     int x = 0, y = 0, and z = 0;

       System.out.println(x + y + z);

   }

}

This code initializes the variables x, y, and z to 0 and then prints their sum.

To know more about Program visit :

https://brainly.com/question/14368396

#SPJ4

a student received a poor grade on her last two language art tests. what are the steps she should take for solving this problem
PLEASE HURRYYYY!

Answers

Answer:

Study and do practice tests

Select the correct answer from each drop-down menu. What data types can you suggest for the given scenario? Adja is working in a program for the school grading system. She needs to use a(n) (First drop down) to store the name of the student and a(n) array of (Second drop down) to store all the grade of each subject of each student.
Options for the first drop down are- A. Integer, B.String, C.Character.
Options for the second drop down are- A.Floats, B.Character, C.String.

Answers

Based on the given scenarios, the data types that would be best suited for each is:

C. Character.A. Floats

What is a Data Type?

This refers to the particular type of data item that is used in order to define values that can be taken or used in a programming language.

Hence, it can be seen that based on the fact that Adja is working in a program for the school grading system, she would need to use a character to store the name of the student and a float to store all the grades of each subject of each student because they are in decimals.

With this in mind, one can see that the answers have been provided above.,

In lieu of this, the correct answer to the given question that have been given above are character and floats.

Read more about data types here:

https://brainly.com/question/179886

#SPJ1

Answer:

A- String

B- Character

What characteristics are common among operating systems? List types of operating systems, and examples of each. How does the device affect the functionality of an operating system?

Answers

The operating system (OS) controls all of the computer's software and hardware. It manages files, memory, and processes, handles input and output, and controls peripheral devices like disk drives and printers.

What are the characteristics of OS?The fundamental software applications running on that hardware enable unauthorized users to interact with the equipment because instructions can be sent and results can be obtained.Developers provide technology that may be compatible, mismatched, or completely incompatible with several other OS categories across multiple versions of the same similar OS.The operating systems are frequently 32-Bit and 64-Bit in two different versions.Types of Operating System:

         Distributed OS .

         Batch processing OS.

         Time sharing OS.

To learn more about operating system refer to :

https://brainly.com/question/22811693

#SPJ1

You need to create the app service plans for the web apps.

What is the minimum number of app service plans that should be created?

Answers

Given that you need to create the app service plans for the web apps.

In this situation, each App Service Plan on the App Service Environment will require a minimum of three instances in order to be distributed across zones.

What is a web app?

A web application is software that can be accessed using a web browser. Web apps are supplied to users with an active network connection over the World Wide Web.

Mobile applications must be downloaded from the app store, however web applications may be accessed via any browser and hence do not require installation. Mobile applications can be accessible even while not connected to the internet, however online applications cannot be used without an internet connection.

Learn more about web apps. at:

https://brainly.com/question/28431103

#SPJ1

Determine z1
, z2
, and z3
in the following:

a) P(Z≤z1)=0.8413

b) P(Z≥z2)=0.025

c) P(−1≤Z≤z3)=0.75

Answers

Answer:



Step-by-step explanation:

As









So,





As



So,







Rewriting in standard form



Substitute



As has LCM























Keywords: complex number

PLEASE HELP I REALLY NEED IT ASAP
Select the correct answer. Layla and her team have installed a fire alarm system in an office. The alarm system connects to a wireless network, so it can be monitored using smartphones and computers connected to the same network. Which wireless technology does the fire alarm system use?
OA satellite
OB. Bluetooth
O C. infrared
OD. WI-FI​

Answers

Answer:

wifi

Explanation:

if it's running on the same network that's wifi

Answer:

The correct answer is D. Wi-Fi.

Explanation:

I got it right on the Edmentum test.

A company has a number of employees. The attributes of EMPLOYEE include Employee ID (identifier), Name, Address, and Birthdate. The company also has several projects. Attributes of PROJECT include Project ID (identifier), Project Name, and Start Date. Each employee may be assigned to one or more projects or may not be assigned to a project. A project must have at least one employee assigned and may have any number of employees assigned. An employee’s billing rate may vary by project, and thecompany wishes to record the applicable billing rate (billing Rate) for each employee when assigned to a particular project.

Required:
Draw an ERD for this company.

Answers

Answer:

The ERD is attached.

Explanation:

See the attached document for ERD

check image dont answer if you dont know please

check image dont answer if you dont know please

Answers

Answer:

Explanation:

1-2nd option

2-1st option

3-last option

hope this helps!! have a good rest of ur day!! <3

Need help
I need help with this it’s really confusing and I have to send it to my teacher with a file I don’t get it

Need help I need help with this its really confusing and I have to send it to my teacher with a file

Answers

Answer:

100 POINTS MATHEMATICS MIDDLE SCHOOL HOMEWORK.

I will report you if you answer incorrectly or steal my points.

_____ involves testing the complete, integrated system (hardware, software databases people and procedures) to validate that an information system meets all specified requirements: a. Integration testing b. System testing c. Volume testing d. User acceptance testing

Answers

System testing involves testing the complete, integrated system (hardware, software databases people and procedures) to validate that an information system meets all specified requirements. Hence option B is correct.

How do you test a system?

A system's compliance with its stated requirements is assessed through system testing, which is testing done on an entire integrated system. All integrated components that have passed integration testing are the input for system testing.

Therefore, in the context of the above, one can say that the method through which a quality assurance (QA) team assesses how the various components of an application interact with one another in the entire, integrated system or application is known as system testing, also known as system-level testing or system-integration testing.

Learn more about System testing from

https://brainly.com/question/29511803
#SPJ1

Demonstrate competence in a range of skills in Excel including charting and use of functions Select appropriate techniques to explore and summarise a given dataset Highlight and communicate results to the relevant audienc

Answers

Answer:

I cannot answer this question as "audienc" isn't a valid word. Please re-write the question (show below):

Demonstrate competence in a range of skills in Excel including charting and use of functions Select appropriate techniques to explore and summarise a given dataset Highlight and communicate results to the relevant audienc

OK OK OK IM KIDDING HERE'S YOUR SOLUTION

Real Answer:

To demonstrate competence in a range of skills in Excel, one should have a strong understanding of the basic and advanced features of Excel, including charting, use of functions, and data analysis tools. This can be achieved through taking online courses, attending workshops, or practicing on their own.

To select appropriate techniques to explore and summarise a given dataset, one should first understand the nature and characteristics of the data, such as its size, format, and complexity. From there, one can choose appropriate Excel functions and tools to organize and analyze the data, such as filtering, sorting, grouping, and pivot tables.

To highlight and communicate results to the relevant audience, one should use appropriate charts and graphs to visually represent the data, as well as create clear and concise summaries and explanations of the results. This requires a strong understanding of the data, as well as the ability to communicate complex information in a clear and understandable manner. Additionally, one should consider the intended audience and their level of expertise when presenting the results, and adjust the presentation accordingly.

Hope it helps!!

What is one of the benefits of using a library in a program?

Answers

Answer:

Simplifies creating a complex program

Explanation:

The benefits that can be associated to the use of library in a program is Reduction in the size of class files which brings about simplicity in creating a complex program.

Using a library in a program usually helps to simplify the work, the code can be extracted and move to a place so that the bulkiness will not disturb the work.

This makes the program faster and easy, and simple.

Therefore using library brings simplicity.

Learn more at:

https://brainly.com/question/5068505?referrer=searchResults

Determine whether the compound condition is True or False.
4 < 3 and 5 < 10
4 <3 or 5 < 10
not (5 > 13)

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

The given compound statement are:

4 < 3 and 5 < 10

4 <3 or 5 < 10

not (5 > 13)

4 < 3 and 5 < 10  this statement is false because "and" logical operator required that both operand (4<3) and (5<10) are true. Statement (4<3) is a false statement so this statement is false. "and" operator becomes true when all its inputs are true otherwise it becomes false.

4 < 3 or 5 < 10  this statement is true because "or" logical operator to be true if one of its input is true and false when all inputs are false. so in this compound statement, the first statement is false and the second statement is true. so this compound statement is true.

not(5>13) this compound statement is true because it has "not" operator and "not" operator makes a false statement to true and vice versa. so (5>13) is a false statement, and when you append "not" operator before it, then this compound statement will become true statement, so this is a true statement.

The given compound conditions would be considered true or false as follows:

i). 4 < 3 and 5 < 10 - False

ii). 4 <3 or 5 < 10 - True

iii). not (5 > 13)  - True

i). 4 < 3 and 5 < 10 would be considered false and the reason behind this is that the logical operator 'and' implies that both are equivalent but here 4 < 3 is incorrect as it differentiates from the meaning conveyed in 5 < 10ii). In the second statement i.e. 4 <3 or 5 < 10, 'or' is the correct logical operator because one of the parts i.e. 5 < 10 is actually true while the latter is false.iii) In the next part "not (5 > 13)" is also true as it adequately uses the operator 'not' to imply that 5 is not bigger than 13 which implies it to be true.

Thus, the first statement is false and the other two are true.

Learn more about 'Compound Condition' here:

brainly.com/question/1600648

Computer applications

Answers

Answer:

please tell the question clearly

Select the correct answer.
What aspect of mobile apps makes them attractive for communication?
OA.
They can be used on smartphones only.
OB. They facilitate fast texting between e-readers.
OC. They allow communication across platforms and networks.
OD. They allow easy access to social media even without Internet access.
Reset
flext

Answers

Answer:

it is for sure not-D.They allow easy access to social media even without Internet access.

so i would go with C.They allow communication across platforms and networks

Explanation:

TRUST ME

The statement 'they allow communication across platforms and networks' BEST describes the aspect of mobile apps that makes them attractive for communication.

A mobile application (i.e., an app) is an application software developed to run on a smartphone or tablet.

Mobile applications generally share similar characteristics to those observed when accessing through a personal computer (PC).

Mobile apps communicate by using different pathways and platforms such as email, in-app notices, and/or notifications.

In conclusion, the statement 'they allow communication across platforms and networks' BEST describes the aspect of mobile apps that makes them attractive for communication.

Learn more in:

https://brainly.com/question/13877104

The WebFOCUS BI platform in the Travel and Transport case study decreased clients' reliance on the IT function when seeking system reports. (T/F).

Answers

True, The Travel & Transport case study's Web FOCUS BI platform reduced the amount of time clients spent asking the IT department for system reports.

Time period: the entire number or amount: aggregate. I'm attempting to estimate how long it will take, for instance. Duration, range, or extent are all terms for time. Example: The interval between the diagnosis and the interview was 4 to 6 years. While most is used to characterize the person speaking, examples include "most of the time I like to wash dishes, but today I do not want to," "most of the time I like to wash dishes," and "most of the time was spent cleaning dishes." Both the words "a lot of" and "lots of" refer to a sizable quantity or number of individuals or objects.

Learn more about amount of time here

https://brainly.com/question/24746230

#SPJ4

The final step of the decision-making model is to make your decision and take action.​

Answers

Answer:

No, it is not the final step in decision-making model. It is rather the penultimate stage of the model of decision making.

Explanation:

The final step of the decision-making model is reviewing your decision and its consequences. The decision-making model has total of 7 steps. One should follow these all the steps to make it error free and more efficient then it rather would have been when the decision was made without following it.

The very first step of this model is to identify the decision. And it is one of the most important steps to be followed to avoid any error.  

I really need help with CSC 137 ASAP!!! but it's Due: Wednesday, April 12, 2023, 12:00 AM

Questions for chapter 8: EX8.1, EX8.4, EX8.6, EX8.7, EX8.8

I really need help with CSC 137 ASAP!!! but it's Due: Wednesday, April 12, 2023, 12:00 AMQuestions for
I really need help with CSC 137 ASAP!!! but it's Due: Wednesday, April 12, 2023, 12:00 AMQuestions for
I really need help with CSC 137 ASAP!!! but it's Due: Wednesday, April 12, 2023, 12:00 AMQuestions for

Answers

The response to the following prompts on programming in relation to array objects and codes are given below.

What is the solution to the above prompts?

A)

Valid declarations that instantiate an array object are:

boolean completed[J] = {true, true, false, false};

This declaration creates a boolean array named "completed" of length 4 with initial values {true, true, false, false}.

int powersOfTwo[] = {1, 2, 4, 8, 16, 32, 64, 128};

This declaration creates an integer array named "powersOfTwo" of length 8 with initial values {1, 2, 4, 8, 16, 32, 64, 128}.

char[] vowels = new char[5];

This declaration creates a character array named "vowels" of length 5 with default initial values (null for char).

float[] tLength = new float[100];

This declaration creates a float array named "tLength" of length 100 with default initial values (0.0f for float).

String[] names = new String[]{"Sam", "Frodo", "Merry"};

This declaration creates a String array named "names" of length 3 with initial values {"Sam", "Frodo", "Merry"}.

char[] vowels = {'a', 'e', 'i', 'o', 'u'};

This declaration creates a character array named "vowels" of length 5 with initial values {'a', 'e', 'i', 'o', 'u'}.

double[] standardDeviation = new double[1];

This declaration creates a double array named "standardDeviation" of length 1 with default initial value (0.0 for double).

In summary, arrays are objects in Java that store a fixed-size sequential collection of elements of the same type. The syntax for creating an array includes the type of the elements, the name of the array, and the number of elements to be stored in the array. An array can be initialized using curly braces ({}) to specify the initial values of the elements.


B) The problem with the code is that the loop condition in the for loop is incorrect. The index should start from 0 instead of 1, and the loop should run until index < masses.length instead of masses.length + 1. Also, the totalMass should be incremented by masses[index], not assigned to it.

Corrected code:
double[] masses = {123.6, 34.2, 765.87, 987.43, 90, 321, 5};

double totalMass = 0;

for (int index = 0; index < masses.length; index++) {

   totalMass += masses[index];

}


The modifications made here are to correct the starting index of the loop, fix the loop condition, and increment the totalMass variable correctly.


C)

1)
Code to set each element of an array called nums to the value of the constant INITIAL:

const int INITIAL = 10; // or any other desired initial value

int nums[5]; // assuming nums is an array of size 5

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

   nums[i] = INITIAL;

}


2) Code to print the values stored in an array called names backwards:
string names[4] = {"John", "Jane", "Bob", "Alice"}; // assuming names is an array of size 4

for (int i = 3; i >= 0; i--) {

   cout << names[i] << " ".

}



3) Code to set each element of a boolean array called flags to alternating values (true at index 0, false at index 1, true at index 2, etc.):

bool flags[6]; // assuming flags is an array of size 6

for (int i = 0; i < 6; i++) {

   flags[i] = (i % 2 == 0);

}


Learn more about array objects at:

https://brainly.com/question/16968729

#SPJ1

Briefly describe three (3) obstacles to becoming
digitally literate and offer two (2) solutions to these
obstacles.

Answers

Obstacles to becoming digital literates and solutions include:

1. Poor network connectivity. Solutions are:

Use good network service providers.Find a good location with good internet facilities.

2. Authenticating Information. Solutions are:

Ensure you do a thorough research before sharing any information on the internet.Learn to be critical with information.

3. Excessive Use of the Internet. Solutions are:

Always have a target of what you want to achieve with the internet.Avoid unproductive activities.

What is Digital Literacy?

Digital literacy can be defined as the ability or skills needed to be able to access information and communicate via internet platforms, mobile devices, or social media.

Obstacles to becoming Digital Literates

1. Poor Network Connectivity: In areas where network connectivity is poor, digital literacy becomes difficult to achieve as accessing the internet to source information would be impeded. The solutions to this are:

Use good network service providers.Find a good location with good internet facilities.

2. Authenticating Information: The internet is awash with information, most of which may not be verifiable, when a user becomes misinformed, they tend to have biases which affects their critical thinking. Solutions to this are:

Ensure you do a thorough research before sharing any information on the internet.Learn to be critical with information.

3. Excessive Use of the Internet: People tend to spend much time on the internet which at the end of the day becomes unproductive. Solutions to this include:

Always have a target of what you want to achieve with the internet.Avoid unproductive activities.

Learn more about digital literacy on:

https://brainly.com/question/14242512

While many networking jobs will list a bachelor's degree as their minimum
requirement, but many will actually accept an associate's degree or trade school
training.
True
False

Answers

Answer:ture

Explanation: I just took the test and got the question right

Answer: True

Explanation: I just took the test

We can not use any programming logic in microsoft.

a. true
b. false

Answers

Answer:

false

Explanation:

Describe
the
Visual basic
select case construct​

Answers

Answer:

Select Case statement allows a variable to be tested for equality against a list of values. Each value is called a case, and the variable being switched on is checked for each select case.

Answer:

ggggggggggggggggggg

Other Questions
Which of the following is a product of the Krebs cycle?wateralcoholcarbon dioxideglucose Benson, Inc., has sales of $38,530, costs of $12,750, depreciation expense of $2,550, and interest expense of $1,850. The tax rate is 21%. What is the operating cash flow, or OCF? How do you tell if a slope is steeper or flatter? What does Hamlet's last line mean? red-green color blindness is a sex-linked recessive trait on the x chromosome. a woman who is colorblind marries a man with normal vision. what is the probability that they would have a child with normal vision? What was a key difference between indentured servants from england and slaves from africa?. The ________ and ________ operators can be used to increment or decrement a pointer variable. (show work)Given the circle below,find the measure of KM.LK21M MJN 2. QuestionA car averages 32 mpg. Gas costs $1.97 per gallon. How muchwould it cost to pay for the gas if this car made a trip of 866 miles?O$37.51O$13.730 $55.20O$53.31showyourWork The probability of it snowing on a given day is 41What is the probability of it not snowing? A law firm hires the same number of lawyers every year.At the end of 12 years, the firm has hired 48 lawyers.How many lawyers has the firm hired on the last 5 years? Identify the key features of the parabola that is formed by the equationRound your answers to the nearest whole number. Find the impulse response, h(t), for the differential equation y'' + 6y' + 8y(t) = 5x(t) Find the impulse response, h(t), for the differential equation y'' + 6y' + 8y(t) = x'(t) - 3x(t) A number added to five times the second number is 36. The first number decreased by twice the second number is 1. Find the two numbers. Give an example for each statement.7. The sum of two trinomials is a binomial From the diagram below, if < A = 110 and < B = 93 , what is the measure of < D? Solve the system of equations by the substitution method.5x + 10y = 252x + 12y = 18 your capsule stain is complete and correct. which of the following statements would apply to the image you see? 5) The average speed of a sailing ship in the 1700's was about 15m/s. It would take a letterabout 3 months to travel from England to the American colonies. Based on this information,what distance would the letter have traveled to reach America from England? Pyruvic acid from glycolysis enters the _________________________, the innermost compartment of the mitochondrion.