Select the correct answer.
Which example sets a constraint to validate user input?

Select The Correct Answer.Which Example Sets A Constraint To Validate User Input?

Answers

Answer 1

Answer:

Address field should be less than 30 characters

Explanation:

Answer 2

Answer:email field accepts only numbers

Explanation:


Related Questions

How has cell phones impacted our society.

i really need this please.

Answers

Cell phones have impacted the society very much. Cell phones help us communicate with people that aren’t so close by us. Cell phones have changed so much over generations and have let us understand the way the internet works nowadays.
Cell phones have impacted our society because now we can text someone without having to see them and we can also call someone from far away and that is always good because some people can’t see their friends or family. Also people spend lots of time on cell phones. We can also now take pictures and capture moments.

Hope this helped

Does anyone know on Edg if you fail the Unit Test Review if it will let you continue onto the Unit Test? or do you have to pass the Unit Test Review first?

Answers

I don’t think it’s possible to do it again. I might be wrong tho.

Answer:

You can't redo it but I also think you have to wait for the teacher to unlock the actual unit test.

Explanation:

15.Every CPU needs to:
a. Dissipate heat
b. Be refreshed by the computer's ROM
C. Spend time in the off state

Answers

Answer:

Dissipate heat

Explanation:

As CPU works efficiently while there is cool

Which statement describes one of the responsibilities of a computer programmer?

A.
providing remote technical support to users
B.
installing, configuring, and monitoring network systems
C.
using computer-generated software to create special effects
D.
using coding languages to create software for retrieving data
E.
designing and implementing databases

Answers

Answer:

d i think

Explanation:

multimedia computer system required the following hardware component they are what​

Answers

To develop the system of multimedia we use the various hardware/softwarecomponents are:

The CPU: The CPU, which

is recommended for a multimedia computer should be Pentium IV or other advanced chips. The Monitor: The multimedia PC should be equipped with a monitorhaving Super

Video Graphics Arrays (SVGA) card.

Mark me as brainliest please

4. What is the difference between trademarks and copyrights? ​

Answers

Answer:

Generally, copyrights protect creative or intellectual works, and trademarks apply to commercial names, phrases, and logos. ... Trademarks protect the use of a company's name and its product names, brand identity (like logos) and slogans.

Explanation:

convert this hexadecimal number to binary :. A07F​

Answers

Answer:

101000000111

Explanation:

8.1.9: Cookout Orders
I don’t know what I’m doing wrong

Ps. Also if you could help me with 8.1.8 Citation, Thank you

Answers

Answer:

The correction to the code is as follows:

order_1 = ("Lee",0,2)

order_2 = ("Tamia",1,0)

order_3 = ("Edward",1,1)

print("You need to buy",order_1[-1],"hotdogs")

print("You need to buy",order_2[1],"burgers")

print("You need to buy",order_3[1],"burgers and",order_3[2],"hotdogs")

Explanation:

The first three lines of the program is bug free.

However, the last 3 print statements are not.

(1) The statement to be printed must be in open and close parenthesis

(2) Change the + to comma (,) because the print statement includes integer and string values

(3) Lastly, the tuple items in the last statement must be printed separately

Regarding the citation, could you please clarify what you need help with specifically. Are you referring to citing a source in a particular citation style, such as APA or MLA. Providing more information will allow me to assist you better.

Recitation refers to the act of reading or repeating something aloud, often from memory or a prepared text. It is commonly associated with the process of learning and reviewing information, particularly in educational settings. Recitation can take various forms depending on the context.

In an academic or educational context, recitation often refers to a supplemental session where a teaching assistant or instructor leads a small group of students in reviewing and discussing material covered in a lecture. During a recitation, students may be asked to answer questions, solve problems, or participate in discussions related to the subject matter.

Learn more about educational context on:

https://brainly.com/question/31199020

#SPJ6

Which of the following statements most accurately describes the difference between aptitudes and skills?
O Aptitudes are ability, and skills are the potential.
O Aptitudes can be learned or trained, unlike skills.
O Aptitude is the level of skill that a person has gained.
O Aptitude is a person's potential to learn new skills.

Answers

Answer:

Aptitude is the level of skill that a person has gained.

Explanation:

Aptitude is the measurement of knowledge someone has in a specific area.  

Answer:

C Aptitude is the level of skill that a person has gained

Explanation:

Which formatting options can be changed by selecting the Design tab? Check all that apply.

Layout
Fill color
Smartart Styles
Color
WordArt Styles

Answers

Answer:

Layout

Smartart Styles

WordArt Styles

Answer:

Explanation:

See attached picture, the only options can be changed under the Design tab are:

Layout (called Theme here); and

Color

Classify the following skills: communication, creativity, and independence.

Hard skills
Interpersonal skills
People skills
Soft skills

Answers

Answer:

Communication, creativity, and independence are people skill

Explanation:

Soft skills depict the quality of a person and classify his/her  personality trait or habit.

Communication - Interpersonal skill

Interpersonal skill allows one to interact and communicate with others effortlessly.

Both soft skill and interpersonal skill comes under the umbrella term i.e people skill.

Hence, communication, creativity, and independence are people skill

Answer:

It's not people skills I got it wrong on my test

Explanation:

Name:
Computer Science
Modified
Python Coding Section C
Directions: Circle the best answer.
1. If the code below, what is the maximum amount of gold that can be in a treasure chest?
def treasure_chest():
gold = random.randint (1, 10)
print ("the treasure chest contains", gold, "pieces of gold.")
#Main program begins here
import random
player_gold = 5
print("There is a treasure chest here.")
treasure_chest()
+ None
C. Five
b. One
d. Ten
2. What is the output of this program?
def say_hello() :
print("Hello World)
say_hello)
say_hello
a. Hello world! Hello world!
b. "Hello World" "Hello World!"
C. Hello Hello
# None of the above

Answers

Answer:

The max Number would be D. TEN

Explanation:

Where it say the main program begins is where the use of import random is be using under the treasure chest function basicly the random.randint choose and random number between 1 through to 10..

Consider the following code segment.
int[][] mat = {{10, 15, 20, 25},
{30, 35, 40, 45},
{50, 55, 60, 65}};
for (int[] row : mat)
{
for (int j = 0; j < row.length; j += 2)
{
System.out.print(row[i] + " ");
}
System.out.println();
}
What, if anything, is printed as a result of executing the code segment?

Answers

Answer:

10 20                                                                                                                          

30 40                                                                                                                          

50 60

Explanation:

Given

The above code segment

Required

What is printed, if anything

To do this, we analyze the code line by line.

Line 1: The first line creates a 4 by 3 array named mat

Line 2: for (int[] row : mat) {  -> This creates row[] array which represents each row of array mat

Line 3: for (int j = 0; j < row.length; j += 2){ -> This iterates through the even indexed elements of the row array i.e. 0 and 2

Line 4: System.out.print(row[i] + " "); -> This prints the even indexed elements of the row array.

The even indexed elements are: 10, 20, 30, 40, 50 and 60

Line 5: System.out.println(); --> This prints a new line

hello guess what u want brainlyst answer this question if u like gacha life

Answers

Answer:

yesssssssssssssssssssss I doo

Yes, no, I WAS obsessed when I was like, 10,11?

give me a fun game to play like mine craft

Answers

Answer:

blockman go is similar to mine craft .

it is online and very fun to play also

Answer:

call of duty

Explanation:

You are an intern at Lucerne Publishing.
The company needs to use multiple versions of Microsoft Oce on each machine in the editing department.
Which virtualization strategy should the company use?

Answers

Answer:

Microsoft Application Virtualization (App-V)

Explanation:

Cloud computing can be defined as a type of computing that requires shared computing resources such as cloud storage (data storage), servers, computer power, and software over the internet rather than local servers and hard drives.

Generally, cloud computing offers individuals and businesses a fast, effective and efficient way of providing services.

In cloud computing, virtualization can be defined as a process which typically involves creating a virtual storage device, servers, operating system, desktop, infrastructure and other computing resources. Thus, virtualization is considered to be a building block (foundational element) of cloud computing as it powers it.

In this scenario, multiple versions of Microsoft Office are required to be used on each machine in the editing department. Thus, the virtualization strategy which the company should use is Microsoft Application Virtualization (App-V).

Microsoft Application Virtualization (App-V) refers to a virtualization and streaming software acquired by Microsoft from Softricity on the 17th of July, 2006. It is designed to avail software developers the ability to run, update and deploy (stream) software applications remotely to end users.

This ultimately implies that, end users could use multiple versions of a software application such as Microsoft Office 2013, 2016, etc., on each machine without having to worry about physically installing them on their Windows computer systems.

Which statement best describes the problem statement below?

Answers

Answer:

dont click on his link it has virus

Explain what the loop does and what the result of executing it will be.

Consider this JavaScript loop:var new = 0;for (i=3;i<=5;i++){ new=new+i;}

Answers

Answer:

The loop increments the value of new while the loop condition is true

The end value of new is 3

Explanation:

Given

The above code segment

Required

What the loop does and the result

We have:

[tex]new = 0[/tex] --- initialize new to 0

[tex]i = 3; i \le 5; i++[/tex] --- The loop condition;

i.e. the loop will be repeated 3 times (when i = 3, 4 and 5)

[tex]new = new + 1[/tex] --- For each increment of i, new is incremented by 1

So, the value of new is:

i = 3: new = 0 + 1 = 1

i = 4: new = 1 + 1 = 2

i = 5: new = 2 + 1 = 3

what are the basics to learn for ethical hacking?​

Answers

Answer:

1. Run on OS which is similar to UNIX, like Linux. UNIX as well as UNIX-like OS are the operating systems of the Internet. Though a person can learn ...

2. Learn HTML.

3. Gain the knowledge of Programming.

4. Be a Creative Thinker.

5. Make a habit of Solving Problems.

Explanation:

Tips: Be highly smart with it, code may mess you up at times, changing things you'd never touched!

What parts of a photograph determine whether a person looks quickly at a photo or studies it for a long period of time?( Minimum is a paragraph)

Answers

I’ll answer this but if anyone else can answer it first I’d rather do that

Which is a connectionless protocol in the transport layer? What are the small chunks of data called?

Answers

Answer:

User Datagram Protocol (UDP) , transport-layer segment.

Explanation:

The User Datagram Protocol is popularly known as UDP. It is defined as the communication protocol which is used across the internet for any time sensitive transmission like the DNS lookup or the video playback.

The UDP provides a unreliable and connectionless service to a invoking application.

The transport layers on sending side converts the application [tex]$\text{layer }$[/tex] messages which it [tex]$\text{receives}$[/tex] from the [tex]$\text{sending application process}$[/tex] into a transport layer segment called as the transport layer segments. This is achieved by breaking down the application messages into a smaller chunks and then adding the transport layer header into each chunk so as to create a transport layer segment.

UDP and the small chunks of data are called packets

Need the answer rn!!!!

Answers

Answer:

what language is this? english or no

Explanation:

Your classmate is frustrated because the code that was designed to add up her five quiz grades is not working properly.

What change would you suggest to your classmate based on this code?for (i=1;i<=5;i++){ sum=0sum=sum+i;}

Answers

Answer:

sum = 0 must be before for loop. If inside for loop, it will keep resetting sum to 0 each iteration.

Explanation:

hope this helps

what is the hardest codes to input

first to answer get brainlyiest

Answers

Answer:

computers

Explanation:

SaaS refers to: managing combinations of applications, networks, systems, storage, and security as well as providing Web site and systems performance monitoring to subscribers over the Internet. easy-to-use software tools for displaying Web pages. self-contained services that communicate with each other to create a working software application. hosting and managing access to software applications delivered over the Internet to clients on a subscription basis. supplying online access over networks to storage devices and storage area network technology.

Answers

Answer:

hosting and managing access to software applications delivered over the Internet to clients on a subscription basis.

Explanation:

Cloud computing can be defined as a type of computing that requires shared computing resources such as cloud storage (data storage), servers, computer power, and software over the internet rather than local servers and hard drives.

Generally, cloud computing offers individuals and businesses a fast, effective and efficient way of providing services.

Cloud computing comprises of three (3) service models and these are;

1. Platform as a Service (PaaS).

2. Infrastructure as a Service (IaaS).

3. Software as a Service (SaaS).

Software as a Service (SaaS) can be defined as a cloud computing delivery model which involves the process of making licensed softwares available over the internet for end users on a subscription basis through a third-party or by centrally hosting it. Some examples of SaaS are Go-ogle apps, Bigcommerce, Salesforce, Slack, Dropbox, DocuSign, etc.

PLEASE HELP!!!!!!!!!!!!!!!!!!!!!!!!
Yolanda has created a spreadsheet containing student information about her homeroom class. She wants to color-code various parts of the spreadsheet so that the title in Row 1 appears on a blue background, the column headers in Row 2 appear on a pale green background, and the student data appears on a pale yellow background. How can she accomplish this task? This task contains the radio buttons and checkboxes for options. The shortcut keys to perform this task are A to H and alt+1 to alt+9.
A

Merge the cells that make up each section of the spreadsheet that she wants to shade.
B

Add thick box borders around each section of the spreadsheet that she wants to shade.
C

Add the appropriate fill color to each section of the spreadsheet that she wants to shade.
D

Add the appropriate font color to each section of the spreadsheet that she wants to shade.

Answers

Answer:

c

Explanation:

You are an intern at Lucerne Publishing.
The company needs to use multiple versions of Microsoft Once on each machine in the editing department.
Which virtualization strategy should the company use?

Answers

Answer:

jvgbicgbvhkvfvuncj gjvfjvfk fj

Rachel wants to minimize project risks. Arrange the steps in an order that will correctly help Rachel and her team to minimize project risks.

Answers

identify, evaluate, prioritize, and then control

Answer:

identify, evaluate, prioritize, and then control

Explanation: I got a 100% on my test.

The history of the Internet dates back to the 1960s, when a group of scientists at Stanford University were entrusted to design which of the following as part of the competition between the US and its then Cold War enemy, the USSR?


a main frame to siphon information

a super computer for the US government

a network of sophisticated computers

a computer to control weapons

Answers

Answer:

a network of sophisticated computers

Explanation:

This is an easy and simple read if you want to as well

https://cs.stanford.edu/people/eroberts/courses/soco/projects/2001-02/distributed-computing/html/history.html

John is directing a television series. He has to shoot a scene that presents the lead character in a dominating and commanding position.

What
shooting technique should he use?

(NO LINKS!!!!)

A low angle
B. high angle
C. Dutch tilt
D. front angle

Answers

The answer is D hope this helped.

Answer:

it is A or B

Explanation:

I know it is either A or B because I took the test and tried Dutch tilt n front angle, got them both wrong on my 1st and second try.

Other Questions
what resource does Washington and Alaska have in common? Sales on account for the first two months of the current year are budgeted as follows. January $ 966,000 February 650,000 All sales are made on terms of 2/10, n/30 (2 percent discount if paid in 10 days, full amount by 30 days); collections on accounts receivable are typically made as follows. Collections within the month of sale: Within discount period 60 % After discount period 15 Collections within the month following sale: Within discount period 15 After discount period 7 Returns, allowances, and uncollectibles 3 Total 100 % Compute the estimated cash collections on accounts receivable for the month of February. Which were results of the Marshall Plan? The average price of a gallon of gas in 2015 dropped $0.94 (28 percent) from $3.34 in 2014 (to $2.40 in 2015). Required: a. Conduct a horizontal analysis by calculating the year-over-year changes in each line item, expressed in dollars and in percentages for the income statement of Insignia Corporation for the year ended December 31, 2015 (amounts in billions). b. Conduct a vertical analysis by expressing each line as a percentage of total revenues. c. Excluding income tax and other operating costs, did Insignia earn more profit per dollar of revenue in 2015 compared to 2014 find the parent function What are vaccines? hiii please help ill give brainliest if you answer correctly Determine whether the underlined numerical value is a parameter or a statistic. Explain your reasoning. for a certain movie 64.3% of the 112 members of the audience were females In 1846 the depth of the river was 6.7 feet deep. In 1847 it dropped 9%. This year, 1848, it rose 7% What is the depth now. The Medici family was important to the development of the Renaissance because its members were O A. wealthy patrons O B. influential philosophers O C. famous artists O D. pioneering scientists What are two of the basic job duties of mortuary careers ? someone please help and show how they got their answers Who also feels like their just better off de.ad What activity in orienteering can help improve spatial awareness? A. judging location in relation to control pointsB. measuring distance between pointsC. determining which types of terrain are preferredD. reading the map symbolsmap symbols here is the velocity time graph of a car for 40 seconds what is this cuz i need help Which renewable energy resource is the primary source of energy for life processes on Earth?A. Geothermal energy B. Hydrologic energy C. Solar energy D. Wind energy Find the distance between the two points in simplest radical form.(9,-4) and (5,3) Please help, I do not want any links. What is the value of 7x - 2x + 3, when x = 5? 28483924 Read The Water Cycle.The water cycle is a natural phenomenon. It has implications for all of the living creatures it affects. Water is drawn up into the atmosphere as it evaporates from the ground, rivers, lakes, oceans, flora. and fauna. This water collects in our atmosphere. Then, it gathers together in concentrations that form clouds. Eventually, the clouds become too dense with water. This causes precipitation to begin and fall back down through our atmosphere. It lands on the Earth's surface as rain or snow. This precipitation then travels through the ground, plants, rivers, lakes and oceans. From there, it evaporates back up into the air to begin the cycle again.Water is restorative in nature. A threat to the natural restorative nature of the water cycle is acid rain. Acid rain is caused by certain gas emissions in our atmosphere. Volcanoes release some of these gases naturally. However, the primary cause of these harmful emissions is human activity and industry. Large factories and gas-powered vehicles send harmful pollutants into the air. As these harmful gases are released into the atmosphere, they are caught in evaporated water molecules, causing acid clouds to form. The gases are also picked up by precipitation that falls from the clouds. The gases mix with the water molecules to form acids, which then fall from the sky as rain or snow. As air pollution continues, acid rain in the water cycle worsens.Acid rain can poison plants and be harmful to animals. It is so strong that it slowly breaks down buildings and stone. The acids break down building materials. They can also burn the leaves of plants. Acid rain can even change the chemical make up of soil, making it toxic to plant life. It can also lower the productivity of farms and crop yields. As rivers and lakes become more acidic, acid rain destroys fish and aquatic life. Ocean creatures with exoskeletons are at risk of acidic waters. The acid weakens and dissolves their exoskeleton. There are many harmful effects on the water cycle caused by acid rain.Which information in the article helps the reader understand the overall text structure? (2 points) aThe author explains how eroding buildings, trees, and other landscapes cause issues in the rain, making it acidic and explains how it affects the water cycle. bThe author explains how pollution contributes to the creation of acid rain and also explains how acid rain can negatively affect waterways, trees, and buildings. cThe author explains how pollution contributes to the creation of acid rain and then explains how this affects the research that scientists do on the environment. dThe author explains how the changing temperature affects precipitation in the water cycle and how this has a positive or negative affect on the farming industries.