what is the value of letter a in binary number​

Answers

Answer 1

0110 0001

Explanation:

hope this helps

Answer 2

Answer:

In below table you can see the binary representation of ASCII characters. This is how text is commonly encoded on a computer.

The letter a is encoded as 0110 0001 in binary, 61 in hex or 97 in decimal.

What Is The Value Of Letter A In Binary Number

Related Questions

David was new on the job and wanted some direction. He wanted someone to tell him what to do so you wouldn’t have to think about it. In other words he wanted his supervisor to have Director style of leadership. David knew his supervisor could easily instruct him what decisions to make. However, his supervisor often let David decide how he could manage his workload. What might be the reason for David supervisor not wanting to tell him what to do whenever occasion

Answers

Answer:

Describe the 3 business organizations and pros and cons of each with regards to number of owners, liability, lifespan, decision making, and taxation

Explanation:

50 points and brainlist Assume the String objects word1 and word2 are initialized as shown below. What is the value of the expression word1.equals(word2)?

String word1 = "march";
String word2 = "MARCH";

−1
0
1
True
False

Answers

Answer:

False

Explanation:

equals returns a boolean and the strings are not the same (one upper one lower)

How would a malfunction in each component affect the system as a whole ?

Answers

Answer:

The whole system becomes unavaliable

Explanation:

What is Data structure​

Answers

A data structure is a specialized format for organizing, processing, retrieving and storing data.

Jeremy knows that there is a keyboard shortcut in Word, but he does not know what it is. What should Jeremy do to
find out what the keyboard shortcut is?
In the Customize Ribbon dialog box, click on File Tab in the left pane, and then find and select Save As in the right
pane
In the Customize Ribbon dialog box, click on Home Tab in the right pane, and then find and select Save As in the
left pane
In the Customize Keyboard dialog box, click on File Tab in the left pane, and then find and select Save As in the
right pane
In the Customize Keyboard dialog box, click on Home Tab in the right pane, and then find and select Save As in
the left pane

Answers

Answer: I hope this will help

go to this. It helped me!

Explanation:

https://support.microsoft.com/en-us/office/video-customize-the-ribbon-9ce81e05-ecc1-4142-a3e3-1298b37a59c6

5. Daily Temperature Strip Charts. Aspiring meteorologist Jesse Kosch has collected data on the daily high temperature in Valentine, Nebraska, for over an entire year. Jesse then used a strip chart to display each day’s high temperature by month.

a. Which of the following statements accurately criticizes this chart?

i. It is not clear what each data point represents.
ii. The chart suffers from occlusion as there is no distinct data point for each day in each month.
iii. A line chart would better display this data.
iv. The chart needs to use color differentiation.

b. How could Jesse best improve this visualization?

i. Differentiate each month with a different color
ii. Jitter each data point vertically
iii. Change the horizontal axis to the day of the year and plot as a time series chart
iv. Use hollow dots instead of solid dots and horizontally jitter each data point

Answers

The problem that is presented on the chart that we have is the fact that it  suffers from occlusion as there is no distinct data point for each day in each month.

The best way that the visualization can be fixed would be to Use hollow dots instead of solid dots and horizontally jitter each data point.

What is a data visualization?


This is the term that is used in data analysis to refer to all of the ways that data can be represented in a diagrammatic way by the use of graphs and charts to bring out the data points that are in the graph.

With this it would be easier to read the data and understand the different changes that have taken place.

Read more on data visualization here:

https://brainly.com/question/19566670

#SPJ1

For my c++ class I need to complete this assignment. I've been stuck on it for a few hours now and was wondering if anyone could help me out by giving me some hints or whatever.

You work for an exchange bank. At the end of the day a teller needs to be able to add up the value of all of the foreign currency they have. A typical interaction with the computer program should look like this:

How many Euros do you have?
245.59

How many Mexican Pesos do you have?
4678

How many Chinese Yen do you have?
5432

The total value in US dollars is: $1378.73

Think about how to break this problem into simple steps. You need to ask how much the teller has of each currency, then make the conversion to US dollars and finally add the dollar amounts into a total.
Here is a sketch of the solution.

double currencyAmount;
double total;

// get the amount for the first currency
total += currencyAmount;

// get the amount for the second currency
total += currencyAmount;

// get the amount for the third currency
total += currencyAmount;

// output the total
Notice the use of the += operator, this is a shortcut that means the same thing as total = total + currencyAmount. It is usful for accumulating a total like we are doing here.
Submit only the .cpp file containing the code. Don't forget the code requirements for this class:
Good style: Use good naming conventions, for example use lower camel case variable names.
Usability: Always prompt the user for input so they know what to do and provide meaningful output messages.
Documentation: Add a comments that document what each part of your code does.
Testing: Don't submit your solution until you have tested it. The code must compile, execute and produce the correct output for any input.

Answers

Answer:

246,45 Euro

Explanation:

A simple algorithm that would help you convert the individual currencies is given below:

Step 1: Find the exchange rate for Euros, Mexican Pesos, and Chinese Yen to the United States Dollar

Step 2: Convert the values of each currency to the United States Dollar

Step 3: Add the values of all

Step 4: Express your answer in United States Dollars

Step 5: End process.

What is an Algorithm?

This refers to the process or set of rules to be followed in calculations or other problem-solving operations, to find a value.

Read more about algorithm here:

https://brainly.com/question/24953880

#SPJ1

What features does functional programming language has?​

Answers

Answer:

First class function

Explanation:

The fictional programming language exhibit first class function

A single module has its own time duration and is worth 5% of the final grade true or false

Answers

A single module has its own time duration and is worth 5% of the final grade  is a false statement.

What does a textbook module mean?

The module of text books is known to be one that a person can print full books or only the chapters.

Note that the book module lets you have both main and supporting chapters, but it doesn't go any farther. In other words, since the module is meant to be a straightforward resource for teachers and students, sub chapters cannot have their own sub chapters.

Therefore, A single module has its own time duration and is worth 5% of the final grade  is a false statement because it can differ from text to text.

Learn more about module from

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

Write a program that reads a list of words. Then, the program outputs those words and their frequencies. The input begins with an integer indicating the number of words that follow. Assume that the list will always contain less than 20 words.

Ex: If the input is:

5 hey hi Mark hi mark
the output is:

hey 1
hi 2
Mark 1
hi 2
mark 1
Hint: Use two arrays, one for the strings, another for the frequencies.

Your program must define and call a method:
public static int getFrequencyOfWord(String[] wordsList, int listSize, String currWord)

Note: This is a lab from a previous chapter that now requires the use of a method.

Answers

The program that reads a list of words will be:

#include <stdio.h>

#include <string.h>

int main() {

   int frequency, num_words, i, j;

   char words[20][10];

   scanf("%d", &num_words);

   for (i = 0; i < num_words; i++) {

       scanf("%s", words[i]);

   }

   for (i = 0; i < num_words; i++) {

       frequency = 0;

       for (j = 0; j < num_words; j++) {

           if (strcmp(words[i], words[j]) == 0) {

               ++frequency;

           }

       }

       printf("%s - %d\n", words[i], frequency);

   }

   return 0;

}

What is a program?

It should be noted that a series of instructions written in a programming language for a computer to follow is referred to as a computer program.

The source code of a computer program is the version that can be read by humans. In this case, the program that reads a list of words is illustrated above.

Learn more about program on:

https://brainly.com/question/27359435

#SPJ1

Write a program named IntegerExpressions that asks the user for three integers.
The program must then output results based on the following calculations:

firstResult = The sum of firstInt and secondInt divided by thirdInt

secondResult = The product of secondInt and thirdInt divided by the sum of secondInt and firstInt

thirdResult = The product of firstInt and thirdInt mod by the secondInt


Note:

firstInt, secondInt, and thirdInt represent the three integers entered by the user.

firstResult, secondResult, and thirdResult represent the results of the calculations.

n mod m means the remainder obtained when n is divided by m.


The prompt to the user to enter the integers must be:

Enter firstInt:
Enter secondInt:
Enter thirdInt:



The output must be in the format:

First Result = firstResult
Second Result = secondResult
Third Result = thirdResult



Please make sure to end each line of output with a newline.

Please note that your class should be named IntegerExpressions.

My code:

import java.util.Scanner;
public class IntegerExpressions {
public static void main(String[] args) {
Scanner = new Scanner(System.in);

int userInput = scnr.next();
int firstInt;
int secondInt;
int thirdInt;

firstInt = userInput;
secondInt = userInput;
thirdInt = userInput;

int firstResult = (firstInt + secondInt)/ thirdInt;
int secondResult; (secondInt * thirdInt)/(secondInt + firstInt);
int thirdResult; firstInt * thirdInt % secondInt;

System.out.println("First Result = " + firstResult);
System.out.println("Second Result = " + secondResult);
System.out.println("Third Result = " + thirdResult);

}

}

Error Messages:
IntegerExpressions.java:16: error: not a statement
int secondResult; (secondInt * thirdInt)/(secondInt + firstInt);
^
IntegerExpressions.java:17: error: not a statement
int thirdResult; firstInt * thirdInt%secondInt);
^
IntegerExpressions.java:17: error: ';' expected
int thirdResult; firstInt * thirdInt%secondInt);
^
3 errors


I have no clue where I'm going wrong please help.

Answers

Answer:

its the first result and reread the second result

Explanation:

is god real???????????????

Answers

Answer:

It depend in your religion, but I think so.

The concept of God and the existence of a divine being are complex topics that have been debated by philosophers, theologians, and scientists for centuries. While it is impossible to definitively prove or disprove the existence of God, some arguments and perspectives suggest that a belief in God may not be supported by empirical evidence or logical reasoning.

One argument against the existence of God is rooted in the understanding of the natural world and the principles of science. The theory of the Big Bang, supported by extensive scientific evidence, proposes that the universe originated from a singularity and has been expanding ever since. According to this view, the universe's existence and development can be explained through the laws of physics and cosmology, without the need for a divine creator. Advocates of this perspective assert that the complexity and diversity of the universe can be attributed to natural processes rather than the actions of a deity.

Moreover, many aspects of the natural world, such as the origins of life on Earth, can be explained through scientific theories and naturalistic explanations. For example, the theory of evolution offers a comprehensive understanding of how life has diversified and adapted over billions of years. It suggests that the diversity of species arose through natural selection and genetic variation, rather than through the direct intervention of a higher power. From this perspective, the existence and diversity of life can be explained by the inherent properties of matter and the processes of biological evolution, without invoking the necessity of a creator God.

Critics of the concept of God also argue that the existence of suffering and evil in the world is inconsistent with the notion of an all-powerful, all-knowing, and benevolent deity. They question how a loving and just God could permit natural disasters, diseases, and human suffering on such a large scale. This argument, known as the problem of evil, posits that the existence of suffering is more easily explained by the random and natural workings of the universe, rather than the actions or intentions of a divine being.

However, it is important to note that many people find personal meaning, comfort, and purpose in their belief in God. For them, the existence of God is not contingent upon empirical evidence or scientific explanations. Faith and religious experiences can be deeply personal and subjective, and they may provide individuals with a sense of guidance, moral values, and a connection to something greater than themselves.

Ultimately, whether or not God exists is a question that lies beyond the realm of scientific inquiry and falls within the domain of personal belief and philosophical contemplation. While some arguments may suggest that a belief in God is not supported by empirical evidence or logical reasoning, others find solace and purpose in their spiritual convictions. The question of God's existence remains a matter of personal interpretation, faith, and individual introspection.

A student used material that was copyrighted but without penalty. Although age is not a guarantee, at what age is most material in the public domain?
It must be ---- years old.
a 10
b 25
c 50
d 100

Answers

Answer:

c

Explanation:

Which of the following fields use computers?
1. Computer Science
II. Medicine
III. Video Gaming
IV. Automotive (Cars)

I
I, III
I, II, III
I, II, III, IV

Answers

1 2 3 use them mainly.

Answer:

The answer is B. l, lll

Explanation:

please correct me if I'm wrong

When is a worker likely to be injured

Answers

Answer:

when he isn't paying attention or drops

Two devices H1, and H2 are part of LAN. The devices are not directly connected to each other. They are separated by a router (R). The length of the first link (H1—R) is 50 Km and the length of the second link (R—H2) is 20 Km. The propagation speed for the first link is 2.4x108 m/s and for the second link 2x108 m/s. The bandwidth of the first link is 5 Mbps and the bandwidth for the second link is 1Gbps.
Assume H1 is sending a file of size 30 Mbyte in one message. When H2 receives the message, it has to send a special message called acknowledgment. Since the acknowledgment message is very small in size its transmission time is always ignored.

What will be the total time needed for H1 to receive the acknowledgment from H2, once H1 starts sending the first bit of the file?

Answers

Let assume that H1 has sending a file which has a file whose size is 30 mbyte in a single message. When H2 has receives the messages, it has to be send as a special message called the acknowledgement and since the message of acknowledgement is very small in term of size than its transmission time has been ignored.

What is router?

Router is defined as a networking device that has forwarded by the help of data packets in between two networks of computer. Routers are performing the direct traffic functions on the internet. Through internet the data which are to be saved generally web page or the email, is in the form of the packets stored in data.

Therefore, Let assume that H1 has sending a file which has a file whose size is 30 mbyte in a single message. When H2 has receives the messages, it has to be send as a special message called the acknowledgement and since the message of acknowledgement is very small in term of size than its transmission time has been ignored.

Learn more about router here:

https://brainly.com/question/13600794

#SPJ1

Short notes on Encryption and Decryption?​

Answers

Answer:

Explanation:

Encryption is the process by which a readable message is converted to an unreadable form to prevent unauthorized parties from reading it.

Decryption is the process of converting an encrypted message back to its original (readable) format. The original message is called the plaintext message.

Give an example of Parallel and Serial transmission and explain the process between the two.

Answers

Answer:

You can find it online at geeks to geeks

Explanation:

In Serial Transmission, 8 bits are transferred at a time having a start and stop bit. Parallel Transmission: In Parallel Transmission, many bits are flow together simultaneously from one computer to another computer. Parallel Transmission is faster than serial transmission to transmit the bits.

/* Program Name: CollegeAdmission.cpp
Function: This program determines if a student will be admitted or rejected.
Input: Interactive
Output: Accept or Reject

Answers

Answer:

Here's an example C++ code for the program described:

#include <iostream>

#include <iostream>using namespace std;

#include <iostream>using namespace std;int main() {

#include <iostream>using namespace std;int main() { int gpa;

#include <iostream>using namespace std;int main() { int gpa; int admissionTestScore;

#include <iostream>using namespace std;int main() { int gpa; int admissionTestScore; // Get user input

#include <iostream>using namespace std;int main() { int gpa; int admissionTestScore; // Get user input cout << "Enter your GPA: ";

#include <iostream>using namespace std;int main() { int gpa; int admissionTestScore; // Get user input cout << "Enter your GPA: "; cin >> gpa;

#include <iostream>using namespace std;int main() { int gpa; int admissionTestScore; // Get user input cout << "Enter your GPA: "; cin >> gpa; cout << "Enter your admission test score: ";

#include <iostream>using namespace std;int main() { int gpa; int admissionTestScore; // Get user input cout << "Enter your GPA: "; cin >> gpa; cout << "Enter your admission test score: "; cin >> admissionTestScore;

#include <iostream>using namespace std;int main() { int gpa; int admissionTestScore; // Get user input cout << "Enter your GPA: "; cin >> gpa; cout << "Enter your admission test score: "; cin >> admissionTestScore; // Determine admission status

#include <iostream>using namespace std;int main() { int gpa; int admissionTestScore; // Get user input cout << "Enter your GPA: "; cin >> gpa; cout << "Enter your admission test score: "; cin >> admissionTestScore; // Determine admission status if (gpa >= 3 && admissionTestScore >= 60) {

#include <iostream>using namespace std;int main() { int gpa; int admissionTestScore; // Get user input cout << "Enter your GPA: "; cin >> gpa; cout << "Enter your admission test score: "; cin >> admissionTestScore; // Determine admission status if (gpa >= 3 && admissionTestScore >= 60) { cout << "Congratulations! You have been accepted." << endl;

#include <iostream>using namespace std;int main() { int gpa; int admissionTestScore; // Get user input cout << "Enter your GPA: "; cin >> gpa; cout << "Enter your admission test score: "; cin >> admissionTestScore; // Determine admission status if (gpa >= 3 && admissionTestScore >= 60) { cout << "Congratulations! You have been accepted." << endl; } else {

#include <iostream>using namespace std;int main() { int gpa; int admissionTestScore; // Get user input cout << "Enter your GPA: "; cin >> gpa; cout << "Enter your admission test score: "; cin >> admissionTestScore; // Determine admission status if (gpa >= 3 && admissionTestScore >= 60) { cout << "Congratulations! You have been accepted." << endl; } else { cout << "Sorry, you have been rejected." << endl;

#include <iostream>using namespace std;int main() { int gpa; int admissionTestScore; // Get user input cout << "Enter your GPA: "; cin >> gpa; cout << "Enter your admission test score: "; cin >> admissionTestScore; // Determine admission status if (gpa >= 3 && admissionTestScore >= 60) { cout << "Congratulations! You have been accepted." << endl; } else { cout << "Sorry, you have been rejected." << endl; }

#include <iostream>using namespace std;int main() { int gpa; int admissionTestScore; // Get user input cout << "Enter your GPA: "; cin >> gpa; cout << "Enter your admission test score: "; cin >> admissionTestScore; // Determine admission status if (gpa >= 3 && admissionTestScore >= 60) { cout << "Congratulations! You have been accepted." << endl; } else { cout << "Sorry, you have been rejected." << endl; } return 0;

#include <iostream>using namespace std;int main() { int gpa; int admissionTestScore; // Get user input cout << "Enter your GPA: "; cin >> gpa; cout << "Enter your admission test score: "; cin >> admissionTestScore; // Determine admission status if (gpa >= 3 && admissionTestScore >= 60) { cout << "Congratulations! You have been accepted." << endl; } else { cout << "Sorry, you have been rejected." << endl; } return 0;}

Explanation:

In this program, we first declare two integer variables gpa and admissionTestScore to hold the user input. We then use cout to display prompts to the user to enter their GPA and admission test score, respectively. We use cin to read in the user input.

We then use an if statement to determine if the user is accepted or rejected based on their GPA and admission test score. In this example, we use the criteria that a GPA of 3 or higher and an admission test score of 60 or higher are required for acceptance.

If the user meets the acceptance criteria, we use cout to display the message "Congratulations! You have been accepted." on a new line. Otherwise, we display the message "Sorry, you have been rejected." on a new line.

Finally, we use return 0; to indicate that the program has completed successfully.

Which of the following files is an Excel file?
O A. budget.pdf
O B. budget.mp4
O C. budget.xlsx
O D. budget.mp3
O E. budget.docx
OF. budget.jpeg
O G. budget.pptx

Answers

C. budget.xlsx is an Excel file

define physical topology

Answers

Answer:

Physical topology refers to the interconnected structure of a local area network (LAN). The method employed to connect the physical devices on the network with the cables, and the type of cabling used, all constitute the physical topology.

ut of
If the solvent tank is equipped with them, keep lids closed as much as possible, as many solvents are
flammable and:

Answers

The missing word is poisonous. That is "If the solvent tank is equipped with them, keep the lids closed as much as possible, as many solvents are flammable and poisonous and can cause unconsciousness and even lead to death.

What is a solvent tank?

It is to be noted that solvent tanks are most typically used as immersion tanks, in which parts are immersed for extensive cleaning. Using a solvent tank to clean components by immersion usually yields a more thorough cleaning than spray on or wipe on treatments.

Solvent storage tanks are utilized in a wide range of cleaning and solvent distillation systems. In washing and distillation applications with high solid concentrations. Most solvent tanks have conical bottom designs to allow heavier materials to settle at the bottom for easier disposal, either by an automated fill system in fractionation applications or transfer pumping equipment to other locations.

Learn more about solvents:
https://brainly.com/question/25326161

#SPJ1

In Python Set course_student's last_name to Smith, age_years to 20, and id_num to 9999.

Sample output for the given program:
Name: Smith, Age: 20, ID: 9999

class StudentData(PersonData):
def __init__(self):
PersonData.__init__(self) # Call base class constructor
self.id_num = 0

def set_id(self, student_id):
self.id_num = student_id

def get_id(self):
return self.id_num


course_student = StudentData()

''' Your solution goes here '''

print('{}, ID: {}'.format(course_student.print_all(), course_student.get_id()))

Answers

The code that debugs the original code that is not running is given below.

The Code

class PersonData:

   def __ init __ ( self ) :

       self.last _ name = ' '

       self . age _ years = 0

   def set _ name ( self, user _ name ) :

       self.last _ name  = user _ name

   def set_age(self, num_years):

       self.age_years = num_years

   # Other parts omitted

   def print_all(self):

       output_str = 'Name: ' + self.last_name + ', Age: ' + str(self.age_years)

       return output_str

class StudentData(PersonData):

   def __init__(self):

       super().__init__()  # Call base class constructor

       self.id_num = 0

   def set_id(self, student_id):

       self.id_num = student_id

   def get_id(self):

       return self.id_num

course _ student = StudentData( )

course _ student = StudentData()

course _ student . set _ id(9999)

course _ student.set _ age(20)

course _ student . set _ name ( " Smith " )

print('%s, ID: %s' % (course_student.print_all(), course_student.get_id()))

The reason why the original program was not running is because you're invoking the parent init wrongly in line 34

Read more about programming here:

https://brainly.com/question/23275071

#SPJ1

Which of the following would not be a concern with relying completely on cloud computing

Answers

The option that would not be a concern with relying completely on cloud computing is option d: accessing files when Internet access is not available.

What is cloud computing?

The term cloud computing is known to be a form of a delivery that pertains to computing services and it is one that is made up of servers, storage, as well as databases, networking, software, and others.

This is one that is known to be done over the use of the Internet (“the cloud”) and it is one that often gives or provides faster form of innovation, and others.

Therefore, based on the above, The option that would not be a concern with relying completely on cloud computing is option d: accessing files when Internet access is not available.

Learn more about cloud computing from
https://brainly.com/question/19057393
#SPJ1

Which of the following would NOT be a concern with relying completely on cloud computing?

(1 point)

creating an offline back-up of critical documents

the collaborative nature of cloud-based applications

security and privacy of stored data and information

accessing files when Internet access is not available

Problem statements help designers propose a specific, measurable solution that addresses the user’s goals and pain points. Which of the following is a quality of a great problem statement?

Answers

A problem statement is clear description of the user's need that should be addressed.

What does a design problem statement mean?

The  problem statement is an accurate and succinct depiction of the issue at hand is referred to as a problem statement.

It serves as a useful scoping tool, focusing the team on the issue that needs investigation and eventual resolution. What has to be done in course of/during discovery and also that or what is outside of scope are made plain by a problem statement.

Therefore,  A problem statement is clear description of the user's need that should be addressed.

Learn more about problem statement from

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

Fill in the blank: A problem statement is a(n) _____.

Question 1 of 4
OSHA requires which of the following trenches to have a protective system installed?
Select the best option.
O
A trench 1 foot deep.
A trench 3 feet deep.
A trench 14 feet deep.

Answers

Answer:

These are all wrong. OSHA requires a trench to have a protective system starting at 5 feet.

Explanation:

OSHA's own rules state this, unless it is in stable rock. If it is under 5 feet, it isn't required and can be decided by someone qualified.

A trench 14 feet deep would definitely require a protective system, due to the the minimum being 5 feet.

Mary is writing an article about the animal kingdom. She wants to place an image below the text. Which menu should Mary choose for this purpose?

Mary needs to choose the ___ menu in order to place the text in a desired fashion around the image.

the answer is insert

Answers

Answer:

After typing the whole text content like the way she wishes, she needs to click on the insert option. Insert option will show a list of options to pick and there she needs to click Picture option to insert the right image below the text. So "Insert" menu is the right answer.

Explanation:

One positive thing about using adjustment layers is that they are ___________ because they are above the layers they affect. When designers use a mask to edit an image nondestructively, painting with black ________ areas, not ________ them.​

Answers

One positive thing about using adjustment layers is that they are nondestructive. When designers use a mask to edit an image nondestructively, painting with black hide areas, not erase them.​

What are the purposes of adjustment layers?

A collection of incredibly helpful, non-destructive form of image editing tools called adjustment layers in Photoshop allow you to make color and tonal tweaks to your image without permanently altering its pixels.

You can alter and remove your edits or go back to your original image at any time using adjustment layers.

Since you may apply nondestructive modifications to the colors and tones in your image and continuing editing the adjustment layers without permanently altering the pixels in the image, adjustment layers provide you more control and flexibility over image edits than direct adjustments.

Therefore, one can say that One positive thing about using adjustment layers is that they are: nondestructive.

Learn more about Photoshop  from

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

what is data processing system​

Answers

Answer:

data prossessung is toprosseds in result of organized data

Which of the following are the functions of an OS?
An OS is responsible for managing and coordinating activities on a computer. The OS delegates booting of a system to other parts of the
system. The OS allocates computer memory and CPU time to various applications and peripheral devices. After this, the CPU manages the
peripheral devices, while the OS acts as an Interface between the user and the peripherals.

Answers

The statement which describes the functions of an operating systems (OS) is: The OS allocates computer memory and CPU time to various applications and peripheral devices. After this, the CPU manages the peripheral devices, while the OS acts as an interface between the user and the peripherals.

What is an operating system?

An operating system can be defined as a system software that's usually pre-installed on a computing device by the manufacturers, so as to manage random access memory (RAM), software programs, computer hardware (peripheral) and all user processes.

In Computer technology, an operating system (OS) acts as an interface between an end user and the hardware portion of a computer system in the processing and execution of instructions, including the management of the random access memory (RAM).

Read more on operating system here: brainly.com/question/22811693

#SPJ1

Other Questions
the three domains of the woese-fox system include the true bacteria in domain bacteria, the extreme microbes in domain, and the eukaryotic organisms in domain. thank you so much i almost failed 3/9 a rational number You just installed more memory in a computer, but its not recognized. a co-technician suggests that you upgrade your bios. whats the best way to do this? What sign were the men looking for to know if the settlers at Roanoke were in trouble?site with the article is: https://www.history.com/news/what-happened-to-the-lost-colony-of-roanoke40points In 2013, there were 50,304 runners in the New York City Marathon. Each runner runs a distance of 26.2 miles. If you add together the total number of miles for all the runners, how many times would they run back and forth from the earth to the moon? Consider the distance from the earth to the moon to be 2.389 x 105 miles. The coordinates of three of the vertices of parallelogram ABCD are A(2, 0), B(4, 3), C(3, 1). How many possibilities are there for the position of the fourth vertex? What are coordinates of the fourth vertex? intrinsic relationship interests exist when the parties derive positive benefits from the relationship and do not wish to endanger future benefits by souring it. Which Lakota leader's arrest prompted protests and the massacre at Wounded Knee? A. Chief Joseph the Elder B. Chief Joseph the Younger C. Sitting Bull D. Geronimo Alpine Stables, Inc. , is established in Denver, Colorado, on April 1, 2017, to provide stables, care for animals, and grounds for riding and showing horses. You have been hired as the new assistant controller. The following transactions for April 2017 are provided for your review. A. Received contributions from five investors of $ 60,000 in cash ($ 12,000 the following), a barn valued at \,000 , land valued at $ 90,000 , and supplies valued at $ 12,000. Each investor received 3,000 shares of stock with a par value of $ 0. 01 per share. B. Built a small barn for $ 62,000. The company paid half the amount in cash on April 1,2017 , and signed a three-year note payable for the balance. C. Provided $ 35,260 in animal care services for customers, all on credit. D. Rented stables to customers who cared for their own animals; received cash of $ 13,200. E. Received from a customer \ ,400 to board her horse in May, June, and July (record as unearned revenue). F. Purchased hay and feed supplies on account for $ 3,810 to be used in the summer. G. Paid $ 1,240 in cash for water utilities incurred in the month. H. Paid $ 2,700 on accounts payable for previous purchases. I. Received $ 10,000 from customers on accounts receivable. J. Paid $ 6,000 in wages to employees who worked during the month. K. At the end of the month, purchased a two-year insurance policy for \,600. L. Received an electric utility bill for $ 1,800 for usage in April; the bill will be paid next month. M. Paid $ 100 cash dividend to the following of the five investors at the end of the month. Required:(a) Set up appropriate T-accounts. All accounts begin with zero balances What Country had claim to Roanoke Island (Britain, France, Spain, Etc..)? translate the equation into a sentence: 3/5 t + 2 = t Write each logarithmic expression as a single logarithm. log 15- log5 Elena elabor un prisma de plstilina cuya base mide 4cm de largo por 2 cm de ancho, y su altura es de 8cm cual es el volumen del prisma que construy? Porfis me urge The mass of the car is 1200 kg.(a) Calculate, for the first 20s of the motion,(1) the distance travelled by the car HELP ME PLEASE HELP ME ILL GIVE UU BRAINLIEST Simplify m^9m^3??? thanks need this answer asapppp A square has an area of 90 square inches. Which two consecutive integers does a side length of the square fall between? Simplify each radical expression. Use absolute value symbols when needed. 64 x 4(5x+1)-3xi need help solving this