A typical computer user will never come across most of the computer's files; the majority of files on a
computer are only relevant to the computer itself or a developer.
True
O False

Answers

Answer 1

Answer:

True

Explanation:

Answer 2

Answer:

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

Explanation:

The answer to this question is True. As you know that a typical computer user doesn't use most of the computer's files, because the majority of the computer's files on the computer are only relevant to the computer itself or a developer.

For example, a typical computer user can use internet explorer to search for something online on the internet. He/she can't come across to change the firewall, inbound and outbound net setting, etc. For example, A typical user will not use IIS and comes across its related files but a developer who is developing the web application can use and change setting in IIS.

A typical user can not change the environment variable but the developer can change the environment variable and computer registry setting.

Also a typical user does not change the windows setting and come across all files related to windows setting but developer can change.


Related Questions

Which of the following BEST describes personal responsibility?
1.Provides the basis for your code of ethics
2.Obeying laws that regulate how computers are used
3.Rules that support your personal values
4.How you act even if no one is watching

Answers

Answer:

3.Rules that support your personal values

Explanation:

Guess The Song:
What Popping Brand New Whip Just Hopped In, I Got options

Answers

WHATS POPPIN

Song by Jack Harlow

2) - How many integers between 1 and 500 inclusive are divisible by either 2, 3, or 5?

Answers

366 numbers between 1 and 500 are divisible by 2, 3, or 5.

We can check this with the following code:

Fill in the blanks: The ____is useful when the most common value of a data set is required. A.mean B.median C.mode

Answers

Answer:

C.Mode

Explanation:

The mode is useful when the most common value of a data set is required.

mode. an easy way to remember is MO from mode can stand for most often

Dolphin TecX is a new tech company that just issued smart watches to its employees. But there is a problem: Getting the watches to receive company email has not been easy. What problem has the company just experienced that is one of the biggest problems in networking?
A.Keeping devices protected from virus and security threats
B.Getting hardware and softwarr from different sources to work together.
C.Gettint email programs to work correctly
D.Justifiying the cost of purchasing new technology​

Answers

Answer:

Getting hardware and software from different sources to work together.

Explanation:

Answer: B.Getting hardware and software from different sources to work together.

Write code which takes a user input of a String and an integer. The code should print each letter of the String the number of times the user inputted in reverse order. I believe it's supposed to use nested loops, but I can only get it to repeat the whole word backwards x times.

ex.
Input a String:
code
Input an integer:
3
eeedddoooccc

Answers

import java.util.*;

public class myClass {

public static void main(String args[]) {

Scanner scan = new Scanner(System.in);

System.out.print("Input a String: ");

String str = scan.nextLine();

System.out.print("Input an integer: ");

int num = scan.nextInt();

for(int i=str.length()-1; i>=0; i--) {

for(int j=0; j<num; j++) {

System.out.print(str.charAt(i));

}

}

}

}

How can you tell that your worksheet is in Macro Recording mode?
A) A gray box is next to the word Ready in the bottom left corner.
B) The word Record is next to Ready in the bottom left corner.
C) The word Ready is in the bottom left corner.
D) A red light flashes next to the word Ready in the bottom left corner.

Answers

Answer:

A

A gray box is next to the word ready in the bottom left corner

Explanation:

A gray box is next to the word Ready in the bottom left corner can you tell that your worksheet is in Macro Recording mode. Thus, option (a) is correct.

What is recording?

The term recording refers to record the data on the worksheet as well as the recording on the mic. The recording was the recording was the necessary to maintain. The recording was the accounts and the audio was the also as the record in the terms. The recording was the voice modulation of the recorder.

A worksheet was the important term in the recording of the data. The recording in the workbook are the easy to find and the properly managed. The recording was the necessary to maintain the data. The gray color box and the search, the next is the ready button of the left in the corner.

Therefore, option (a) is correct.

Learn more about on recording, here:

https://brainly.com/question/10677268

#SPJ2

Which of the following would a dialogue editor most likely do if an actor makes a lip smacking sound during a dialogue sequence?

A)Use an ADR

B)Review raw footage to layer over the dialogue

C)Use voice over narration

D)Remove it and replace it with another sound

Answers

Answer:

c

Explanation:

Help it don’t let me click what do I do

Answers

Answer: Try resetting you device, or add a mouse to it.

Explanation:

Which of the following trims would be used at the beginning of a scene?
A)Utilized sound
B)Post trim
C)Tail trim
D)Head trim

Answers

Answer: a i think

Explanation:

What's one example of action could you take on the Internet that would be both unethical and illegal?

Answers

Answer:

bullying

Explanation:

bullying affects a person mentally via the technological medium which can even result in future physical harm, henceforth it is unethical

Bullying is  one example of action could you take on the Internet that would be both unethical and illegal.

What is Bullying?

Bullying is a type of hostile behavior in which one person purposefully and repeatedly causes harm or discomfort to another. Bullying can occur through verbal abuse, physical aggression, or more covert tactics.

The victim of bullying generally struggles to defend themselves and does nothing to "cause" the bullying.

Cyberbullying is the verbal threatening or harassing behavior carried out on electronic platforms such text messages, social media, email, and cell phones.

Therefore, Bullying is  one example of action could you take on the Internet that would be both unethical and illegal.

To learn more about Bullying, refer to the link:

https://brainly.com/question/10566405

#SPJ3

Which is the instance variable in the given code?

public class Person{

public intpid;

private double salary;

public Person (intpersonID){
pid = personID;
}

public void setSalary(double empSal){
salary = empSal;
}

public void printDetails(){
System.out.println("id : " + pid );
System.out.println("salary :" + salary);
}

public static void main(String args[]){
Person P = new Person("P1");
P.setSalary(100);
P.printDetails();
}
}


A. public intpid;
B. private double salary;
C. intpersonID
D. double empSal
E. Person P = new Person("P1");

Answers

Answer:

Person P is a new instance of Persons class

-- located in the main class

4.3 mini programs AP computer science

Answers

1.

name = input("Enter your name: ")

num1 = int(input("Hello "+name+ ", enter an integer: "))

num2 = int(input(name+", enter another integer: "))

try:

   if num1 % num2 == 0:

       print("The first number is divisible by the second number")

   else:

       print("The first number is not divisible by the second number")

except ZeroDivisionError:

   print("The first number is not divisible by the second number")

try:

   if num2 % num1 == 0:

       print("The second number is divisible by the first number")

   else:

       print("The second number is not divisible by the first number")

except ZeroDivisionError:

   print("The second number is not divisible by the first number")

2.

import random, math

num1 = float(input("Enter a small decimal number: "))

num2 = float(input("Enter a large decimal number: "))

r = round(random.uniform(num1, num2), 2)

print("The volume of a sphere with radius " + str(r) + " is " + str(round(((4 / 3) * math.pi * (r ** 3)), 2)))

I hope this helps!

Why does the IPv6 format use letters and numbers?

a
The IP address is numerical and is linked to the domain name, which is text-based.
b
It is like a street address with a number and name combination for each location
c
It is based on hexadecimal, which uses numbers 0-9 and letters A-F
d
When the IP address has to be manually entered, it can be keyed in more easily

Answers

Answer:

c is the response hope it helps

Which of the following indicates branching of the program flow based on a condition?

input/output symbol
flow line symbol
decision symbol
process symbol
______________________________________________________________
Which of the following symbols depicts one distinct action in a program?

decision symbol
process symbol
input/output symbol
predefined process symbol

Answers

Answer:

Which of the following indicates branching of the program flow based on a condition? decision symbol

Which of the following symbols depicts one distinct action in a program? process symbol

Explanation:

Flow chart is the graphical representation of a process or algorithm.

Which of the following indicates branching of the program flow based on a condition?

The condition has two options to be processed based on its result hence the program is divided into branches after the decision of process.

The decision symbol is used for this purpose.

Which of the following symbols depicts one distinct action in a program?

The distinct action only involves one action. Out of the given options, process symbol is used for distinct action.

Hence,

Which of the following indicates branching of the program flow based on a condition? decision symbol

Which of the following symbols depicts one distinct action in a program? process symbol

In Object layer, if we will create more Objects, then design will be more efficient and scalable because

Answers

Answer:

More developers can work concurrently.

Explanation:

Given that having a lesser object in program designing can make the process cumbersome. The idea of having more objects or breaking down application functionalities into various objects in a virtual workforce tool like Blue Prism, UiPath RPA, Pega Platform, etc can only increase the efficiency.

Hence, In the Object layer, if we will create more Objects, then the design will be more efficient and scalable because "More developers can work concurrently."

Name three technologies and what their used for before the creation of computers (first to answer correctly will get branlies

Answers

Morse, to send information quicker during a war

Telegram, to send news across the country

And possibly radio?

IN C++Write a recursive method insertLast(const ItemType& anEntry) to insert anEntry to the end of the Linked List.We can determine how many digits a positive integer has by repeatedly dividing by 10 (without keeping the remainder) until the number is less than 10, consisting of only 1 digit. We add 1 to this value for each time we divided by 10. Write a recursive function numOfDigits(int n) to return the number of digits of an integer n.

Answers

Answer:

#include <iostream>

#include <cstdlib>

int numOfDigits(int n) {

   if (std::abs(n) <= 9) return 1;

   return 1 + numOfDigits(n / 10);

}

int main()

{

   int a[] = { 0, 1, -24, 3456, 12345 };

   for (int n : a)  

       std::cout << n << " has " << numOfDigits(n) << " digits" << std::endl;

}

Explanation:

This is the answer to your second question.

The first question requires some clarification on how the linked list is defined.


Connie needs to use the data consolidation tool in Excel 2016. Where can she find this capability?

Answers

The answer is D

Explanation:

I just took the test and got 100%

Guess The Song
Trade my 4x4 for a G63, ain't no more free Lil Steve
I gave 'em chance and chance and chance again, I even done told them please

Answers

I think is C tbh sorry if that’s wrong my fault

It is to be   noted thatthe title of the above song is " The Bigger Picture" by Lil B.

What  is the  central idea of "The Bigger Picture" by Lil B?

The core theme explored in the song "The Bigger Picture" by Lil B is the existence of societal injustices and systemic biases that go beyond isolated events or individuals.

The song highlights the importance of finding comprehensive solutions, acknowledging that these issues have endured for generations and demand more than just activism or online movements.

Lil B shares personal experiences with unjust treatment and encourages listeners to grasp the broader perspective, striving for substantial transformations in society.

Learn more about songs at:

https://brainly.com/question/27263334

#SPJ6

In HTML, what is an element?
O The text browser displays when a user points the mouse pointer to it
O The tag that tells the web browser what the source of a file is
O The combination of a start and end tag, not including the tagged content
O The combination of a start and end tag, together with the tagged content

Answers

Answer:

The right answer is Option D: The combination of a start and end tag, together with the tagged content

Explanation:

HTML stands for hypertext markup language. It is one of the most commonly used languages on the internet.

Element:

An element in HTML consists of a start tag and end tag, and contains some content between the two tags.

i.e.

<tag> Content </tag>

Hence,

The right answer is Option D: The combination of a start and end tag, together with the tagged content

Answer:

The right answer is Option D: The combination of a start and end tag, together with the tagged content

Explanation:

goods purchased from Ravi rs 30000 and paid cash with cash discount of 5%​

Answers

Answer:

rs 24000 I believe

Explanation:

1. Describe the general characteristics of a program that would exhibit very high amounts of temporal locality but very little spatial locality with regard to data accesses, and give an illustrative example.2. Describe the general characteristics of a program that would exhibit very little temporal and spatial locality with regards to data accesses.3. Describe the general characteristics of a program that would exhibit very little temporal locality but very high amounts of spatial locality with regards to data accesses.

Answers

Answer:

A program with high temporal locality with regards to data access is the tight or continuous use of a loop and a memory in chunks, while low temporal locality is little or no reuse of loop and memory. The high amount of spatial locality is the little or no reuse of branches in data access, while low spatial locality is the high reuse of branches in the code.

Explanation:

Computer program requires for a written source code to retrieve and save data to memory. A high temporal locality uses loops to continuously access memory. For speed, all the read instructions are done and the data is cached in an iterable data structure.

Spatial locality is the degree of the use of branches in a code. if more branches are used in the program, then the program is said to have low spatial locality, if little or no branches are used, then the code has high spatial locality.

Which of the following can help you get pre-approved for a loan? A. Having a college degree B. Having a good credit score C. Knowing which house you want to buy D. Living close to the bank or lending institution MAKE YOU BRRAINELEST

Answers

Answer:

A

Explanation:

Answer:

B

Explanation:

What should you consider when looking at houses to buy? A. Location B. Size and condition of the yard C. Size, features, and condition of the house D. All of the above MAKE YOU BRAINELEST

Answers

Answer:

A

Explanation:   Would you like to buy a house in the desert

Answer:

The answer to your question is D. All of the above

What refers to the outline of the necessary components for a project, first given to developers at the beginning of a project and modified through the development cycle?

a
General design document (GDD)
b
Software blueprint (SBP)
c
Architectural structure orders (ASO)
d
Software requirement specifications (SRS)

Answers

Answer:

d

Explanation:

Which technology forms the foundation for cloud computing?

Answers

Answer:

Cloud Computing

Cloud Computing

Cloud computing is the on-demand availability of computer system resources, especially data storage (cloud storage) and computing power, without direct active management by the user. The term is generally used to describe data centers available to many...

Explanation:

Answer:

The answer is virtualization

Virtualization is the creation of virtual versions of something such servers, storage devices, operating systems, that allows one to share an application or a resource among multiple customers or organizations. It plays a critical role in cloud computing through sharing data that is present in the clouds like application and infrastructure.

Explanation:

Consider the following class which is used to represent a polygon consisting of an arbitrary number of (x, y) points:
class Polygon :
def __init__(self) :
self._x_points = []
self._y_points = []

Answers

Answer:

The init method of the Polygon class defines two attributes 'x' and 'y' which are both lists. To add points to the lists x and y, define the add_point method;

def add_point(self, x, y) :

   self._x_points.append(x)

   self._y_points.append(y)

Explanation:

A class is a blueprint of a data structure. It contains the attributes and methods of the data structure type. Attributes are features of a data structure defined as variables that can be either a class attribute or an attribute of the instance of the class object. A method is just a function defined in a class.

The add_point method in the polygon class accepts two parameters and appends the values to the x and y lists defined in the init method.

Who is least likely to be treated with somatropin?
A 3-year-old cow on a dairy farm
A 4-year-old girl with an XO genetic genotype
A 44-year-old boy with chronic renal failure and gronih deficiency
A 10-year-old boy with polydipsia and polyuria​

Answers

A 10-year-old boy with polydipsia and polyuria​ would likely not be treated with somatropin.

This is because somatropin is often used for growth issues and even short bowel syndrome, but from what I could find, nothing about polydipsia or polyuria​.

A 3-year-old cow on a dairy farm could need somatropin, specifically Bovine Somatotropin (bST) to increase milk production or fix growth issues

A 4-year-old girl with an XO genetic genotype would get somatropin because it is used to treat Turner syndrome (Same as XO genetic genotype)

A 44-year-old boy with chronic renal failure and growth deficiency would get somatropin because it is used to treat growth issues even in adults and chronic renal failure

A web page that allows interaction from the user​

Answers

Answer:

Its A Dynamic Web Page

Explanation:

Other Questions
PLEASEEEEEEEEEEEEEEEEEE!!!!!!!!!!!Eileen saves dimes and quarters. She has 40 coins, which total $6.55, in her bank. How many of quarters did she save? (Write only the number for the answer.) Bodhi has a collection of 175 dimes and nickels. The collection is worth $13.30. Which equation can be used to find n, the number of nickels in the collecti Add the transition to this sentence that best indicates a shift in place.George was hiding _________ the house waiting to jump out and surprise his sister. (5 points)Group of answer choicesafterbeforeacrossbehind Pretty please help me!!!Which statement explains whether -4.5 can be a value in the shaded regionA. No it cannot, because -4.5 lies to the right of -3.5B. No it cannot, because -4.5 lies to the right of -3.5C. Yes it can, because-4.5 lies to the left of -3.5D. Yes it can, because -4.5 lies to the right of -4.5 What composition of transformations is being demonstrated in the graphbelow?A)reflection across the x-axis, then reflection across the y-axisB)Translation left 5 down, then a rotation 90 degrees clockwise around the origin.C)Rotation 180 around the origin, then reflection across the y-axis.D)Translation right 5 & up 1, then rotation 180 degrees around the origin. How much heat is required to heat 1.6g of ice from -16c to steam at 112c? What is the 100th term of the arithmetic sequence of 45, 40, 35, 30 Please help!!! ASAP!!! your principal has decided to provide a treat to everyone in your grade before thanksgiving break- ice cream bars one box contains 48 bars there are 338 students in your grade how many boxes of ice cream bars does he need to purchase? A veterinary technician is calculating the bill for hospital care for a kidney Opointstransplant cat. The bill for medical services and care was $2,685. Theowners paid $1,389 when they picked up the cat. A few weeks later theypaid another$497. How much do they still owe?$792$820$799Other:SubmitNever submit nas Michael buys 19 bottles of orange juice at the corner store for a total cost of $18.81. Ifeach bottle costs the same amount, how much is each bottle of juice? simple question make it as long as you would like\If you could propose an amendment to the U.S. Constitution, what would it be? Make your proposal in the space below. Clearly explain why you think this amendment should be made, including the grievance it will address. Please help me. i will mark you as most brilliance and give you 5 stars! Please be specific when answering. thank you! :) What does X and y equal?!Please help! Ill give brainliest! The work function for a metal surface is 3.82 eV. What is the largest wavelength of light in nm that will produce photoelectrons from this surface?1 eV = 1.602 ? 10?19 J,e = 1.602 ? 10?19 C,c = 2.998 ? 108 m/s,andh = 6.626 ? 10?34 J How many delegates were in attendance at the convention Perimeter = 2 x Length + 2 x WidthThe perimeter of a rectangle is 66. If the Length is two more than three times the Width, what is the length of that rectangle? Match each type of insurance with an example of when your insurance company would make a payment. Homeowner's insurance ? An accident that damages your vehicle Disability insurance 2 An injury that causes you to lose wages Auto insurance ? A fire in your house that damages your personal possessions Health insurance 2 An illness that involves a trip to the doctor N 5. De dnde son ellos? Does ANYBODY know that state? What is the function of the uterus (I need a fr explanation pls Im dying)