define client and.server​

Answers

Answer 1

Answer:

Client-server model is a model is a distributed application structure that partitions

tasks or workloads between the providers of a resource or service, called servers, and service requesters, called clients.


Related Questions

An input value has to be greater than 18 and less than 65 if a driving license is to be approved for issue. What type of input checking is appropriate?

Answers

Answer:

You should use an "if" statement to check whether the number is greater than 18 or less than 65.

Explanation:

You usually use "if" statements whenever you want to compare a number to another. Keep in mind that "if" statements are not only used for comparison!

This uses toner or ink while printing on paper or such a surface​

Answers

Answer:Laser Jet printer or ink jet printer

Explanation: I have used both types of printers

Which is an example of a crime that might occur in an e-commerce transaction?
A customer’s new purchase is stolen after delivery.
A customer’s credit card information is stolen and used by someone else.
A customer can easily take merchandise without having to pay for it.
A customer pays an unfair price for the merchandise she bought.

Answers

Answer:

A costumers credit card information is stolen and used by someone else.

Answer:

A customer's credit card information is stolen and used by someone else.

Explanation:

Since e-commerce is online sales, the customer can not take merchandise without having to pay for it.

Also the customer can search for the best price.

If a user has just added a simple triangle shape into a diagram, how can the triangle be adjusted? Check all that
apply.

O by making it bigger

O by adjusting it to be SmartArt

O by making it smaller

O by adjusting it to be different style

O by making it thinner

O by making it thicker

O by adjusting it to be a different color

O by rotating it

Answers

Mark Brainliest please

Answer :

By making it bigger
By adjusting it to be SmartArt

An organization's Finance Director is convinced special malware is responsible for targeting and infecting the finance department files. Xander, a security analyst, confirms the files are corrupted. Xander is aware the Director possesses privileged access but not the security knowledge to understand what really happened. What does Xander believe happened

Answers

Answer: Malware infected the Director's machine and used his privileges

Explanation:

Malware simply means malicious software variants, which consists of spyware, viruses, ransomware etc. These can be used by cyberattackers to cause damage to data or in order to have access to a network.

With regards to the question, Xander believed that malware infected the Director's machine and used his privileges which results in the corrupt of the files.

Choose the issue that is occurring from the drop-down menu. During the , development teams transform the requirements into a software application design. During the , the software design is implemented by developers in code. In the , software is evaluated for quality. Any issues with the software are logged as to be resolved by developers. Software that is maintained by developers is said to be .

Answers

Answer: See explanation

Explanation:

During the, (software design phase), developmentt teams transform the requirements into a software application design.

During the (software development phase), the software design is implemented by developers in code.

In the (software evaluation phase), software is evaluated for quality.

Any issues with the software are logged as (bugs) to be resolved by developers.

Software that is maintained by developers is said to be (supported).

Answer:

1) 2

2) 1

3) 2

4) 2

5) 3

Explanation: just did it

What is the correct representation for ternary form?
A. A.A-B B.A-B-A C. A-B-A-C-A D. A-A-A

Answers

Answer:

C.) A B A

Explanation:

Ternary form, sometimes called song form, is a three-part musical form consisting of an opening section (A), a following section (B) and then a repetition of the first section (A).

17. Which computer is the most powerful?​

Answers

Answer:

here is ur answer

Explanation:

Fugaku

the japaness supercomputer , fugaku is the world most powerfull computer!

SAFe recommends separating deployment from release. What can help with this practice? 1 A staging environment that emulates testing 2 Manually test Features and non-functional requirements 3 Deploying to staging every 4 to 8 weeks 4 Hide all new functionality under feature toggles

Answers

Answer:

hide all new functionality under feature toggles

Explanation:

The best way to accomplish this would be to hide all new functionality under feature toggles. This would allow you to implement the new features without actually releasing them. They would be hidden so that the developers can quickly activate individual new features as they wish. This helps with individually stress testing each feature to make sure that they are working perfectly before release. Once a feature has been thoroughly tested and works as intended without any bugs then it can be added as a release feature.

SAFe (Scaled Agile Framework) does recommend separating deployment from release to achieve more effective and controlled software delivery.

A staging environment that emulates testing: Having a separate staging environment that closely mimics the production environment helps in testing the deployment before releasing it to end-users. This allows for comprehensive testing of the software in an environment that closely resembles the production setup.

Before releasing the software to production, it is important to conduct thorough testing of individual features and non-functional requirements. This ensures that the deployed features are functioning as expected and meet the desired quality standards.

Frequent deployment to the staging environment, ideally every 4 to 8 weeks, allows for continuous integration and testing of new features.

Learn more about Scaled Agile Framework on:

https://brainly.com/question/28126520

#SPJ6

A photographer stores digital photographs on her computer. In this case the photographs are considered the data. Each photograph also includes multiple pieces of metadata including:
Date: The date the photograph was taken
Time: The time the photograph was taken
Location: The location where the photograph was taken
Device: Which camera the photo was taken with
Which of the following could the photographer NOT do based on this metadata?
A. Filter photos to those taken in the last week
B. Filter photos to those taken in a particular country
C. Filter photos to those taken of buildings
D. Filter photos to those taken with her favorite camera

Answers

Answer: Filter photos to those taken of buildings

Explanation:

Based on the metadata, the option that the photographer cannot do is to filter the photos to those taken of buildings.

• Option A -Filter photos to those taken in the last week

Date: The date the photograph was taken -

Option B - B. Filter photos to those taken in a particular country.

Location: The location where the photograph was taken

Option D - Filter photos to those taken with her favorite camera

Device: Which camera the photo was taken with

Therefore, the correct option is C.

Um sistema resistivo opera com resistência total de 10K ohms,em uma rede elétrica com tensão de 380V.Qual a intensidade da corrente que passa pelo sistema resistivo?

Answers

Answer:11

Explanation:

.

describe the uses of computer in different fileds? please help me ​

Answers

Answer:

Computers are used to perform several industrial tasks. They are used to design products, control manufacturing processes, control inventory, manage projects, and so on. Computers are used to control and manage different manufacturing systems and continuous running of the industry.

Write a program in Java to input a letter. If it is an uppercase letter then

encode it by next 5th letter, otherwise encode it with 3rd previous letter in the

ASCII table.​

Answers

Answer:

The program is as follows:

import java.util.*;

public class Main{

public static void main(String[] args) {

 Scanner input = new Scanner(System.in);

 char chr;

 System.out.print("Input Character: ");

 chr = input.next().charAt(0);

 if(Character.isUpperCase(chr) == true){      chr+=5;  }

 else{      chr-=3;  }

 System.out.println("Encode Character: "+chr);

}

}

Explanation:

This declares the character

 char chr;

This prompts for input

 System.out.print("Input Character: ");

This gets the input from the user

 chr = input.next().charAt(0);

This checks for uppercase; if true, it is encoded by the next 5th

 if(Character.isUpperCase(chr) == true){      chr+=5;  }

If lowercase, it is encoded by the previous 3rd

 else{      chr-=3;  }

This prints the encoded character

 System.out.println("Encode Character: "+chr);

V. ASSESSMENT (Time Frame:
(Learning Activity Sheets for Enrichment, Remediation, or Assessment to be given
Direction: Choose the letter of the correct answer. Use another
1. These are materials or substances such as minerals, fore
used for economic gain.
A. Natural resources
C. Non renewable
B. Renewable resources
D. Minerals
2. In which way can we protect our environment?
A. Littering
C. recycling
B. Polluting
D. contaminating
3. Which of these is the primary cause of land pollution?
A. Improper garbage disposal C. Recycling mate
B. Planting of trees
D. Waste segrega
4. Your community is rich in metallic materials. Which of
conserve such precious mineral deposits?​

Answers

Answer:

1. A. Natural resources

2. C. Recycling

3. A. Improper garbage disposal

4. C. Formulate laws and ordinances to regulate the mining of minerals

Explanation:

Question; Obtained from a similar posted question

1. These are materials or substances such as minerals, forest, water, and fertile land that occur in nature and can be used for economic gain

4. Options

A. Use all of them to earn money

B. Put up tunnels to harvest all metallic minerals

C. Formulate laws and ordinances to regulate the mining of minerals

D. Use dynamite to clear out the area and reveal the mineral deposits

1. A. natural resources

The materials that come from nature and can be found in an area owned by a person and are economically valuable are known as A. natural resources

2. C. recycling

The environment is protected by reducing the consumption of the vital resources that ensure sustainability through the use of C. recycling already produced items as raw materials to produce new items rather than making use of raw materials naturally present in the environment

3. A. improper garbage disposal

Land pollution which is the introduction of potentially harmful, and unsightly materials on the surface soil or under the surface, is caused primarily by A. improper garbage disposal

4. C. Formulate laws and ordinances to regulate the mining of minerals

The metallic materials, which are mineral resources are located under the ground and are extracted from different locations in an area, therefore, they are mined at different times by different methods

To ensure that the precious mineral deposits are conserved, they require laws and ordinance for the regulation of mineral mining

Therefore; the correct option is;

C. Formulate laws and ordinances to regulate the mining of minerals

You are an IT technician for your company. Vivian has been receiving error messages indicating that some of her Windows system files are corrupt or missing. To fix this issue, you ran the Windows System File Checker tool (SFC.exe). Shortly after the files were repaired, Vivian calls again because she is still having the same issue. You now suspect that the corruption or renaming of the system files is being caused by malware. Which of the following is the next BEST step that should be taken?
A. Quarantine Vivian's computer.
B. Disable System Restore.
C. Perform a scan using anti-malware software.
D. Back up Vivian's critical files and perform a clean install of Windows.

Answers

Answer: D

Explanation: Using anti malware software is a good method but you can never be 100% sure it's gone and the software may not detect it, better to start off clean.

The answer is D hope it helps

who established computer​

Answers

Answer:

Charles Babbage

Explanation:

I studied abt him

help please I would really appreciate

Answers

Answer:

the answer is address bar

Answer:

This is called an address bar

Explanation:

It tells your computer where to send the data and what website you are trying to communicate with.

:)

place the features or components under the correct location. powerpoint start screen or power point user interface: online templates, dialog box launchers, thumbnail pane, slide pane, themes search field, recent files

Answers

Answer:

PP start screen: Recent Files, Online templates, Themes search field

Pp user interface: Side Pane, Thumbnail pane, Dialog box launches.

Explanation: Edg 2021

Answer:

Answer:

PP start screen: Recent Files, Online templates, Themes search field

Pp user interface: Side Pane, Thumbnail pane, Dialog box launches.

Explanation:

Edg 2021 just took test. Good Luck, Keep Going!!

Do you remember your first 3D movie experience? What was the movie, what was the experience like, and why was it memorable? (If you have not seen a 3D movie ask a friend or family member and report on their experience.)

Answers

Answer:

I went to my first 3d movie when I was 12. I remember thinking that it wouldnt look real or realistic but when I tried it out it was pleasantly surprised on how real it looked.

Explanation:

this sensor is used for burglar alarms
A. temperature
b. humidity
c. movement
d. PH​

Answers

Answer:

C

Explanation:

Have a great summer :)

What does GUI stands for and what is it function?​

Answers

Answer:

A GUI (graphical user interface) is a system of interactive visual components for computer software. A GUI displays objects that convey information, and represent actions that can be taken by the user. The objects change color, size, or visibility when the user interacts with them.

Answer:

[tex]\huge\boxed{Answer\hookleftarrow}[/tex]

GUI stands for Graphical User Interface.

It's main functions are to :-

present data files & apps in a graphical format (icons) .

GUI is easy to use & enables you to easily exchange information between software using cut and paste or 'drag and drop'.

ʰᵒᵖᵉ ⁱᵗ ʰᵉˡᵖˢ

# ꧁❣ RainbowSalt2²2² ࿐

Select three advantages of using Cascading Style Sheets.

A) They make it possible to give specific tags specific rules.

B) They make it simple to design web pages if you do not know HTML.

C) They make it easy to edit multiple parts of the document at once.

D) They provide information about changes made to websites.

E) They cut down on the amount of code needed.

Answers

Answer:

They make it easy to edit multiple parts of the document at once., They cut down on the amount of code needed., They make it possible to give specific tags specific rules.

In the digital media process, what is one of the differences between the plan/design stage and the create/develop stage?

A) Scripts, storyboards, and flowcharts are created in the plan/design stage, and utilized in the create/develop stage.

B) Scripts, storyboards, and flowcharts are involved with the plan/design stage, but not with the create/develop stage.

C) Scripts, storyboards, and flowcharts are involved with the create/develop stage, but not with the plan/design stage.

D) Scripts, storyboards, and flowcharts are created in the create/develop stage, and utilized in the plan/design stage.

Answers

Answer:

Scripts, storyboards, and flowcharts are created in the plan/design stage, and utilized in the create/develop stage. A

Answer:

A.) Scripts, storyboards, and flowcharts are created in the plan/design stage, but utilized in the create/develop stage.

Five uses of the start button

Answers

Starting something

Possibly turning it off

Making something work

Fixing the Start Button

Beginning something

Fill in the blanks
A dash is a human-readable description in the source code of a computer program
Python has dash standard data types
A dash contains items separated by commas and enclosed within square brackets
A dash consists of key-value pairs
dash cannot be changed and use parentheses

Answers

Answer:

1. Comment

2. Five (5).

3. Line.

4. Tuple; that

Explanation:

1. A comment is a human-readable description in the source code of a computer program. Thus, it's an annotation or description in the source code of a software program that is readable by humans.

2. Python has five (5) standard data types, these includes; number, string, list, dictionary and tuple.

3. A line contains items separated by commas and enclosed within square brackets i.e [ ]. Thus, it's simply an ordered collection of one or multiple data items.

4. A tuple consists of key-value pairs

that cannot be changed and use parentheses. For example, Newtuple = ("strawberry", "apple", "mango", "banana", "orange").

What will the Document search option search through?

Answers

Answer:

hi

Explanation:

nynttnynybynynynumkol0

what is meant by versatility in terms of features of computer?​

Answers

Answer:

Versatility refers to the capability of a computer to perform different kinds of works with same accuracy and efficiency.

Explanation:

thank me later

Versatility refers to the effort or ability of a computer to carry out different kinds of works and it is done that is done on the same level of accuracy and efficiency.

What is versatility in computer?

Computer is known to be a machine that is said to be versatile machine as it is made up of a lot of field and also involves in Multi-tasking.

Therefore, Versatility refers to the effort or ability of a computer to carry out different kinds of works and it is done that is done on the same level of accuracy and efficiency.

Learn more about Versatility from

https://brainly.com/question/26285269

#SPJ2

True or False: Using “OR” between search terms helps narrow down

Answers

the answer is true. nemenekekkelelsps
Yeah the answer is true

Need an answer as soon as possible please!


The lesson discusses ten "best practices" for digital recordings. Identify three of them and explain why they are important for ensuring a quality product.


(For a Digital Media Course)

Answers

Solution :

Digital recording may be defined as the preservation of an audio or some visual signals like the series of a binary numbers which can be stored on a magnetic tape or on an optical disc or some other digital storage media.

Some of the best practices for doing digital recording are :

1. We should always take permission from those who are being recorded. It is not right to shoot others without their permission. It is against the right to privacy.

2. We should record audio at about 44.1 kHz/16 bit in an uncompressed wave format.

3. A High quality MP3 (192 kbps or higher) is often accepted due to the limitations of a recorder or for a storage space.

The MP3 recordings are considered as the best option for certain recorders  and when the storage space is severely limited. It produces a good quality recording.

consider the following scenario. which portion of a motherboards chipset is most likely to he causing the problem and why? a user reports that her or his mouse is not responding. trying a different mouse foes not fix the problem

Answers

Answer:

Explanation:

Need full question.

Other Questions
Which of the following is a shared belief between Judaism and Christianity? please help with question! In the picture below write the principles of photograpy that over being used A short sentence with patron. Three fifths of the adults at a party are male. There are 40 adults at the party. How many of the adults are male? The barefoot boy cautiously stepped onto the sunbaked asphalt. The heat made his feet burn as if they were being cooked in a frying pan. He hopped from foot to foot, yelping and crying out in a high-pitched whine. "Aye! Ow!" he cried with the first few steps. "Oh, ow!" he said as he made his way across the street. To distract himself from the pain, the boy called to mind the cold, sweet watermelon he had been eating just a few minutes before. He remembered how the ruby red interior contrasted with the white and green colors of the rind. His mouth watered at the memory, and he startled himself by slurping and smacking his lips, as if he were eating watermelon again at that very moment. Which sensory details are being used in this passage? Check all that apply. touch taste smell sight sound please help me this question Sum1 plz help with this Jeniffer, a supervisor of a customer service team, is concerned about Mark's performance. She decides to talk to Markand schedules a meeting with him. If Jeniffer is using the directive counseling approach, which of the following shouldbe Jeniffer's first step? SIMPLE PRESENTWrite 5 sentences using simple present of thefollowing verbs.WriteReadWatchEatSleep Sketch 10 atoms of aluminum and 6 molecules of oxygen gas in the container on the left. In the right container, sketch the contents after the reaction is complete. The diagram shows the basis for forming which of the following?O nucleic acidsO proteinsO polysaccharidesO lipids The color is repellent, almost revolting; a smouldering unclean yellow, strangely faded by the slow-turning sunlight. It is dull yet lurid orange in some places, a sickly sulphur tint to others. What tone does the author create with the word choice? A. Disgusted B. Beautiful C. Silly D. Happy which part of a nucleotide makes it possible for a nucleic acid to be a unique code three sentences containing comparison of adjectives that can easily be found or shown in your house In what ways does our environment (place, people, society, culture) affect who we are and who we become? If the half life of iridium-182 is 15 years, how much of a 3 gram sample is left after 2 half-lives?A) .57 gramsB) .70 grams C) 2.25 grams D) .75 grams Del siguiente conjunto de datos calcula lo que se te pide: 3,6,8,4,3,2,6,7,1,5,4,8,4cual es la media? del problema cual es la moda? CONTEST Each ple entered into the annual pie baking contest has been scored out of 10, as shown in the table. what is the volume of the rectangular prism??