Answer:
"software under copyright must not be in the public domain"
Explanation:
The conclusion of his argument is "software under copyright must not be in the public domain". This combines the two premises that were stated before it in order to form a logical outcome based on the premises. In the case of logic, this would basically be an
IF A and IF B, Then C
type of logic, in which A is "Public Domain Work can be copied", B is "Software under Copyright cannot be copied", and C is the conclusion which would be "software under copyright must not be in the public domain"
Microsoft Security Essentials and Microsoft Forefront are: anti-malware software programs that can be used to harden workstation computers. port-scanning software utilities that scan for open ports on servers. software programs designed to remove or disable unnecessary user accounts. operating system administration software programs that create and maintain baselines.
Answer:
anti-malware software programs that can be used to harden workstation computers
Explanation:
Microsoft Security Essentials can be regarded as antivirus software which gives protection to our computers used in home or for business against types of malicious software. These malicious software could be
✓trojan horses.
✓ computer viruses
✓spyware
✓rootkits, trojan horses.
Microsoft Forefront can be regarded as
security software for business roduced
by Microsoft Corporation. It was
designed to offer protection to computer networks as well as network servers and individual devices. It should be noted that Microsoft Security Essentials and Microsoft Forefront are anti-malware software programs that can be used to harden workstation computers
Characteristics of RAM
Answer:
Short Data lifetime, Less Expensive, Needs to be refreshed often, Smaller in size, etc. tell me if you need more.
Read the following statements and use the drop-down menus to identify which statements are
conditional statements.
I am thinking about going to college.
I plan to go to college if my grades are good enough.
If my grades are very good, then I will select a college that offers scholarships.
I plan to visit several colleges to see what they offer and what the living situations look like.
If I do not qualify for any scholarships, then I will apply for student loans.
I will also start working a part-time job to help pay for college.
Answer:
I am thinking about going to college.
✔ not a conditional statement
I plan to go to college if my grades are good enough.
✔ conditional statement
If my grades are very good, then I will select a college that offers scholarships.
✔ conditional statement
I plan to visit several colleges to see what they offer and what the living situations look like.
✔ not a conditional statement
If I do not qualify for any scholarships, then I will apply for student loans.
✔ conditional statement
I will also start working a part-time job to help pay for college.
✔ not a conditional statement
If I go to college, then my parents will let me take the extra car with me.
✔ conditional statement
If I do not go to college and stay home, then my parents want me to start paying rent.
✔ conditional statement
Answer:
These are correct!
I am thinking about going to college. ✔ not a conditional statement
I plan to go to college if my grades are good enough. ✔ conditional statement
If my grades are very good, then I will select a college that offers scholarships. ✔ conditional statement
I plan to visit several colleges to see what they offer and what the living situations look like. ✔ not a conditional statement
If I do not qualify for any scholarships, then I will apply for student loans. ✔ conditional statement
I will also start working a part-time job to help pay for college. ✔ not a conditional statement
If I go to college, then my parents will let me take the extra car with me. ✔ conditional statement
If I do not go to college and stay home, then my parents want me to start paying rent. ✔ conditional statement
Explanation:
They are correct! I answered them and got them all right!
Why is the len () function useful when using a loop to iterate through a stack?
Answer:
Option C
Explanation:
Complete question
Why is the len ( ) function useful when using a loop to iterate through a stack?
The len ( ) function will print the elements of the stack.
The len ( ) function will run with each iteration, printing the element number each time.
The len ( ) function will tell the program the number of elements in the stack.
The len ( ) function will remove the duplicate elements in the stack.
Solution
A len()function in stack is used to extract the length of the given string, array, list, tuple etc. This function helps in optimizing the performance of the program by not calculating the objects contained in it but by providing the number of elements.
hence, option C is correct
Answer:
I think it is:
(B. The len ( ) function will run with each iteration, printing the element number each time.)Explanation:
HELPPPP In 5-6 sentences explain how technology has impacted engineers.
Answer:
Digitization is changing the playing field for engineers.
It alters the culture by providing more real-time data on the performance of equipment in the field today, allowing engineers to consider improvements that can be achieved in months through data algorithms rather than years or decades.
They can analyze and simulate almost everything that a product would go through, virtually.
Can somebody help me with this please
Answer: I'm in six grade I can't do that stuff
Explanation:
Answer:
Sorry for using up one of the answer thingys. But I thought this would make you laugh a little bit! Have a good day!
Explanation:
-- of 5 points Question 3 1 try left While designing a new system, a company uncovered several processes that were quite rule-based, and that didn't really require staff to handle. The company chose to automate those processes using ___________________________ so they would no longer need to assign people to perform those tasks. A. code review B. robotic process automation C. application programming interfaces D. service-oriented architecture
Answer:
B. robotic process automation.
Explanation:
In the design of a new system, a company was able to uncover several processes that were typically rule-based, and which did not really require staff to control or handle.
Hence, the company chose to automate those processes using robotic process automation so they would no longer need to assign people to perform those tasks.
What are some examples and non-examples of digital law?
Examples: Plagiarism. Illegal downloads - music, games, movies etc. Piracy. Stealing someone's identity.
Non-Examples: Sending Scams, Copyright Infringement, Sexting
When using for loops and two-dimensional arrays, the outside loop moves across the ___________ and the inside loop moves across the ___________.
indexes, elements
columns, rows
elements, indexes
rows, columns
Answer: rows, columns
Explanation: :)
write a program that will create an array of 100 random integers in the range from [0,99] pass the array to a function, printarray(), that will print the values of the array on the monitor. pass the array to a function, sortarray(), that will sort the array. Pass the array to printarray() again and print it in increasing order
Answer:
In C++:
#include <cstdlib>
#include <ctime>
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
void printarray(int array []){
for(int i=0; i<100; i++){ cout << array[i] << " "; }
}
void sortarray(int array []){
sort(array, array + 100);
printarray(array);
}
int main() {
int array[100];
srand((unsigned)time(0));
for(int i=0; i<100; i++){ array[i] = (rand()%99); }
printarray(array);
cout<<endl;
sortarray(array);
return 0;
}
Explanation:
See attachment for program source file where comments are used for explanation purpose