Answer:
1. 12 anything below that looks like a slideshow presentation lol
2. False I dont think so.
3. Length X Width
4. Almost all news programs are close up.
5. True
What keyword can we use within a form to pass it as an argument to a JavaScript snippet? A. form B. onSubmit C. send D. this
Answer:
the answer is: this
Explanation:
trust me
Mobile apps fall into two primary categories. What are they?
Engaging consumers and streamlining the purchasing process
Providing location-based promotions and providing streaming services
Engaging consumers and providing entertainment
Sharing data and e-commerce
The two primary categories of mobile apps are engaging consumers and providing entertainment. Engaging consumers and streamlining the purchasing process: Many mobile apps are designed to engage consumers and provide them with a purchasing experience.
These apps often include features such as product catalogs, personalized recommendations, shopping carts, and secure payment options. They aim to create a convenient and user-friendly platform for users to browse, select, and purchase products or services. Examples of such apps include e-commerce apps, food delivery apps, ride-hailing apps, and banking apps.
Providing entertainment: Another major category of mobile apps is focused on providing entertainment to users. These apps are designed to offer a wide range of engaging and interactive content, such as games, social media platforms, streaming services, video-sharing platforms, and music apps. They aim to entertain users, provide them with engaging experiences, and keep them entertained while using their mobile devices.
While some mobile apps may offer location-based promotions or facilitate e-commerce transactions, these features are not the defining characteristics of the two primary categories. The key distinction lies in whether the app primarily focuses on engaging consumers and streamlining the purchasing process or providing entertainment.
Learn more about app here:
https://brainly.com/question/32284707
#SPJ11
explain why it is important to follow a course or a program in keeping with your value system
Answer:
The American educational system offers a rich set of options for the foreign student. There are such a variety of institutions, programs, and places to choose from that the choice can be overwhelming for students, even those from the United States. As you begin your search for institutions, it is important that you familiarize yourself with the American educational system. Understanding the system will help you narrow down your options and develop your educational plan.
Explanation:
Sorry if it doesn't look like the question.
I need an If else statement that sorts three numbers from a file from least to greatest
We use the term "problem" to refer to lots of different situations. Brainstorm as many different kinds of problems as you can and list them below. (You must list at least two problems)
world hunger, abusive situations, homelessness, any mental health issue, bullies, issues with the law, and thing that can have a negative effect on you or a group of people
Anyone know why ellies such a mess?
give 4 example for echinodermis cnidarians poriferas platyhilminthes nematodes and annerids
Answer:
Among the largest and most important invertebrate phyla are Porifera (sponges), Cnidaria (jellyfish, corals, and sea anemones), Platyhelminthes (flatworms), Nematoda (roundworms), Mollusca (snails, bivalves, squids, and octopuses), Annelida (segmented worms), Arthropoda (horseshoe crabs, spiders, crabs, centipedes, ..
how to do 3.7 Code Practice
counting noun A code of practice is a set of guidelines that describe how members of a certain profession should conduct themselves. By trading in stolen items, the auctioneers are breaking a code of conduct.
num = 100
if num < 20:
print('Less than 20')
if num < 30:
print('Less than 30')
if num < 40:
print('Less than 40')
if num < 50:
print('Less than 50')
if num > 100 or num == 100:
print('More than or equal to 100')
To learn more about ' Code Practice ' refer to
https://brainly.in/question/31133760
#SPJ1
counting noun A code of practice is a set of guidelines that describe how members of a certain profession should conduct themselves.
What is Ifelse statement?counting noun A code of practice is a set of guidelines that describe how members of a certain profession should conduct themselves. By trading in stolen items, the auctioneers are breaking a code of conduct.If-else statements are used in the C programming language to perform operations based on specific conditions. The code inside the if block is executed if the given condition is true; otherwise, the code inside the else block is executed. The order in which the statements are to be executed is specified.num = 100
if num < 20:
print('Less than 20')
if num < 30:
print('Less than 30')
if num < 40:
print('Less than 40')
if num < 50:
print('Less than 50')
if num > 100 or num == 100:
print('More than or equal to 100')
To learn more about ' Ifelse statement ' refer to
https://brainly.com/question/18736215
#SPJ1
A direct access hash table has items 51, 53, 54, and 56. The table must have a minimum of a. 4
b. 5 c. 56 d. 57
A direct access hash table has items 51, 53, 54, and 56. The table must have a minimum of b. 5 (Option B)
What is the explanation for the above response?
In a direct access hash table, the index of an item is the same as the value of the item. In this case, the items are 51, 53, 54, and 56.
Therefore, the table must have at least 56 slots (indices) to accommodate all the items. However, since 51, 53, 54, and 56 are not contiguous, there must be at least one empty slot between 54 and 56. Therefore, the table must have at least 5 slots (indices) to accommodate all the items without collision.
Learn more about hash table at:
https://brainly.com/question/29970427
#SPJ1
Write a program that hardcodes a proposed password and checks that it is an acceptable password.
If the proposed password is acceptable password, the program writes a message "Password zzzzzzzzz is acceptable" and ends.
If it is not acceptable, it writes a message "Password is acceptable because it "
Where
is the password which was checked.
is one of:
"is not at least 7 characters long."
"does not contain both upper and lower case alphabetic characters."
"does not contain at least 1 digit."
is used if the PW is not acceptable, else the word not isn't printed.
"is an acceptable password."
Acceptable passwords:
are at least 7 characters long.
contain both upper and lower case alphabetic characters.
contain at least 1 digit.
The logic of this program can be quite tricky. Hint: use toUpperCase(), toLowerCase, and equals(). You will also need nested ifs.
Here some sample runs of the program; your output should look substantially the same:
C:\>java PasswordChecker
Enter your password:
snowflake
Password snowflake is not acceptable because it does not contain both upper and lower case alphabetic characters."
Enter your password:
SnowFlake
Using the knowledge in computational language in JAVA it is possible to write the code that write a program that hardcodes a proposed password and checks that it is an acceptable password.
Writting the code:
class InvalidPasswordException extends Exception {
int passwordConditionViolated = 0;
public InvalidPasswordException(int conditionViolated)
{
super("Invalid Password: ");
passwordConditionViolated = conditionViolated;
}
public String printMessage()
{
switch (passwordConditionViolated) {
case 1:
return ("Password length should be"
+ " between 8 to 15 characters");
case 2:
return ("Password should not"
+ " contain any space");
case 3:
return ("Password should contain"
+ " at least one digit(0-9)");
case 4:
return ("Password should contain at "
+ "least one special character");
case 5:
return ("Password should contain at"
+ " least one uppercase letter(A-Z)");
case 6:
return ("Password should contain at"
+ " least one lowercase letter(a-z)");
}
return ("");
}
}
See more about JAVA at brainly.com/question/12975450
#SPJ1
TRUE/FALSE. Windows can be installed on an extended partition that has been formatted with the NTFS file system.
Answer:
The answer is True.
TRUE, Windows can be installed on an extended partition formatted with NTFS file system.
What is NTFS file system?
NTFS (New Technology File System) is a file system used by the Windows operating system to organize and manage files on a hard disk or other storage devices. It was introduced with the Windows NT operating system and has been used in all subsequent versions of Windows. NTFS supports many features such as file permissions, encryption, compression, and journaling, which allows for faster file recovery in the event of a system crash or power failure. It also has a maximum file size of 16 exabytes and a maximum partition size of 256 terabytes, making it suitable for use with large storage devices.
TRUE. Windows can be installed on an extended partition that has been formatted with the NTFS file system. Windows can be installed on various types of partitions, including primary, extended, and logical partitions, as long as the partition is formatted with a compatible file system, such as NTFS or FAT32. An extended partition is a type of partition that allows multiple logical partitions to be created within it.
To know more about Windows visit:
https://brainly.com/question/13502522
#SPJ1
the ____ is a collection of linked documents, graphics, and sounds.
The World Wide Web (WWW) is a collection of linked documents, graphics, and sounds that are accessible over the internet. The World Wide Web (WWW) is a system of interlinked hypertext documents accessed through the Internet.
It is a global system of interconnected hypertext documents, which are commonly referred to as web pages.
These web pages are written in HTML (Hypertext Markup Language) and are linked through hyperlinks, allowing users to navigate and access information by simply clicking on the links.
The web also encompasses various media types, such as images, videos, graphics and sounds audio files, making it a rich and diverse platform for sharing and accessing multimedia content from around the world.
To learn more about graphics: https://brainly.com/question/28350999
#SPJ11
1. Write down the QBASIC code of the following: a) Write a program that asks any two numbers and display greates number.
A program to enter any two numbers and display the greater one.
REM
CLS
INPUT “ENTER ANY TWO NUMBERS”; A, B
IF A > B THEN
PRINT A; “IS GREATER”
ELSE
PRINT B; “IS GREATER”
END IF
END
USING SUB PROCEDURE:-
DECLARE SUB GREAT (A, B)
CLS
INPUT “ENTER ANY TWO NUMBERS”; A, B
CALL GREAT (A, B)
END
SUB GREAT (A, B)
IF A > B THEN
PRINT A; “IS GREATER”
ELSE
PRINT B; “IS GREATER”
END IF
END SUB
USING FUNCTION PROCEDURE:-
DECLARE FUNCTION GREAT (A, B)
INPUT “ENTER ANY TWO NUMBERS”; A, B
PRINT “THE GREATER NUMBER IS”; GREAT (A, B)
END
FUNCTION GREAT (A, B)
IF A > B THEN
GREAT = A
ELSE
GREAT = B
END IF
END FUNCTION
Select all the correct answers.
Hans is works for a software company that is developing a banking service that employs online transaction processing. What are two advantages
of using this technology?
•It is simple to implement due to redundancy.
•It allows customers to access the service from any location.
•It experiences minimal losses during downtime.
•It provides a secure environment for transactions.
•It processes a transaction even if part of the transaction fails.
Banking services are monetary transaction that includes the deposit and withdrawal of money. The online transaction process allows one to access services in any place and secure transaction environment.
What is an online transaction?Online transactions are the transfer of money on the cloud platform using internet services. The financial transactions are done on the web banking platform that includes money transfers, bill payments, shopping, etc.
Online transactions do not require physical presence and can be done at any place irrespective of the location the money gets transferred to the person. Also, it provides a secure environment to transact any amount.
Therefore, a secure environment and access to services at any place are the two advantages of online transactions.
Learn more about online transactions here:
https://brainly.com/question/24192124
#SPJ1
Answer:
a
Explanation:
what the first guy said
How did tribes profit most from cattle drives that passed through their land?
A.
by successfully collecting taxes from every drover who used their lands
B.
by buying cattle from ranchers to keep for themselves
C.
by selling cattle that would be taken to Texas ranches
D.
by leasing grazing land to ranchers and drovers from Texas
The way that the tribes profit most from cattle drives that passed through their land is option D. By leasing grazing land to ranchers and drovers from Texas.
How did Native Americans gain from the long cattle drives?When Oklahoma became a state in 1907, the reservation system there was essentially abolished. In Indian Territory, cattle were and are the dominant economic driver.
Tolls on moving livestock, exporting their own animals, and leasing their territory for grazing were all sources of income for the tribes.
There were several cattle drives between 1867 and 1893. Cattle drives were conducted to supply the demand for beef in the east and to provide the cattlemen with a means of livelihood after the Civil War when the great cities in the northeast lacked livestock.
Lastly, Abolishing Cattle Drives: Soon after the Civil War, it began, and after the railroads reached Texas, it came to an end.
Learn more about cattle drives from
https://brainly.com/question/16118067
#SPJ1
What color model should Joe use if he will be using an offset printing press?
A. RGB
B. hexadecimal
C. CMYK
D. index
Answer:
CMYK
Explanation:
Monitors typically use RGB color (additive model — adding to make white), but offset printing uses CMYK pigments (subtractive color — subtracting from the existing white). Printed images have less visual range, saturation, and contrast than digital images, so in print, colors will usually appear darker and less vibrant.
Answer:
The correct answer is letter C. CMYK
Explanation:
Ingrid works in the information technology department of a big company. Whenever the company hires someone new, she has to set up a new computer for them. In this scenario, Ingrid will easily be able to set up a computer because the information on how to set up the computer is stored in her Group of answer choices procedural memory. episodic memory. semantic memory. flashbulb memory.
Answer:
procedural memory
Explanation:
Procedural memory is a type of implicit memory (unconscious, long-term memory) which aids the performance of particular types of tasks without conscious awareness of these previous experiences.
What would be printed to the screen when the following program is run?
function returnNumber() {
return x *5;
println(returnNumber(2));
Following are the correct Python program to calculate its output:
Program Explanation:
Defining a method "returnNumber" that takes "x" variable in the parameter.Inside the method, a return keyword is used that multiplies the parameter value by 5 and returns its value.Outside the method, a print method is declared that calls the "returnNumber" method which accepts an integer value into the parameter.Program:
def returnNumber(x):#defining a variable returnNumber that x variable in parameter
return x*5;#defining a return keyword that multiply the parameter value by 5
print(returnNumber(2))#calling method returnNumber that takes integer value in parameter
Output:
Please find the attached file.
Learn more:
brainly.com/question/13785329
The separation of duties among the employees of the accounting department is an example of a(n):
Group of answer choices
A) internal control system.
B) document system.
C) voucher system.
D) pay grade system.
The separation of duties among the employees of the accounting department is an example of an internal control system.
The separation of duties refers to the practice of dividing tasks and responsibilities among multiple individuals to ensure checks and balances within an organization. This helps prevent errors, fraud, and abuse by ensuring that no single person has complete control over a transaction from initiation to completion. In the context of the accounting department, separating duties involves assigning different responsibilities to different employees, such as one person handling accounts payable, another person managing accounts receivable, and yet another person reconciling bank statements. By implementing this internal control system, an organization reduces the risk of misappropriation of funds, manipulation of financial records, and unauthorized access to sensitive information. It promotes transparency, accountability, and accuracy in financial reporting, which are essential for maintaining the integrity of financial operations
Learn more about internal control system here:
https://brainly.com/question/29870556
#SPJ11
question 8 a data analyst is reviewing some code and finds the following code chunk: mtcars %>% filter(carb > 1) %>% group by(cyl) %>% what is this code chunk an example of?
The code chunk mtcars %>% filter(carb > 1) %>% group_by(cyl) %>% ... is an example of using the "pipe" operator (%>%) in the R programming language.
The pipe operator allows for the chaining of multiple operations in a more readable and concise way. In this specific example, the mtcars dataset is being filtered to only include rows where the "carb" variable is greater than 1. Then, the resulting dataset is grouped by the "cyl" variable.
The ellipsis at the end of the code chunk indicates that there may be more operations that follow, but they are not shown here. Overall, this code chunk is performing data manipulation and aggregation on the mtcars dataset using the dplyr package in R.
Learn more about coding: https://brainly.com/question/17204194
#SPJ4
which is an inappropriate use of a for-each loop? when replacing values within an array when all values in an array need to be traversed when an index variable is required to complete a task
When replacing values within an array is the inappropriate use of a for-each loop.
A for-each loop, often known as an enhanced for loop, is a programming language feature in Java that simplifies traversing through a collection or array of objects by eliminating the requirement for explicit initialization and termination expressions of a for loop.
A for-each loop cannot be used to replace values within an array because it does not keep track of the index of the current element. As a result, if we want to change values in the collection, we'll need to use the standard for loop with a counter variable. For example, the for-each loop is useful when all values in an array need to be traversed, but it is not helpful when an index variable is required to complete a task.
Learn more about loops: https://brainly.com/question/30494342
#SPJ11
Define a recursive function mergeBy that merges two sorted lists by the given criterion, for example, in an ascending order or in a descending order (so that the resulting list is also sorted). The type signature of mergeBy is as follows. MergeBy :: (a -> a -> Bool) -> [a] -> [a] -> [a]
```python
def mergeBy(compare, list1, list2):
if not list1:
return list2
if not list2:
return list1
if compare(list1[0], list2[0]):
return [list1[0]] + mergeBy(compare, list1[1:], list2)
else:
return [list2[0]] + mergeBy(compare, list1, list2[1:])
```
The `mergeBy` function takes three arguments: `compare`, `list1`, and `list2`. The `compare` parameter is a function that defines the criterion for merging, such as whether to merge in ascending or descending order. The `list1` and `list2` parameters are the two sorted lists to be merged.
The function uses recursive logic to compare the first elements of `list1` and `list2`. If the criterion defined by the `compare` function is satisfied, the smaller (or larger, depending on the criterion) element is appended to the merged list, and the function is called recursively with the remaining elements of the corresponding list and the other list unchanged. This process continues until either `list1` or `list2` becomes empty.
The resulting merged list will be sorted based on the given criterion defined by the `compare` function.
Note: In the above implementation, it is assumed that the input lists are already sorted based on the given criterion.
For more such questions on python, click on:
https://brainly.com/question/26497128
#SPJ8
What is the difference between asset allocation and diversification
Answer:
Asset allocation refers to the percentage of stocks, bonds, and cash in your portfolio. In contrast, diversification describes the spreading of your assets across the various asset classes within each of those three allocation buckets to further reduce risk.
Explanation:
Which of the following image file formats use lossless file compression? Choose all that apply.
BMP
GIF
JPEG
PNG
RAW
TIFF
Answer:
GIF
PNG
TIFF
Explanation:
I did this already. :)
BMP, PNG, RAW, and TIFF formats use lossless file compression. Therefore, options A, D, E, and F are correct.
What is lossless file compression?Lossless file compression is a data compression technique that reduces the size of a file without losing any of its original data. In other words, when a file is compressed using a lossless compression algorithm, it can be decompressed to its exact original form without any loss of information.
This is in contrast to lossy compression, which involves removing some data from the file in order to achieve a smaller size. Lossless compression works by identifying patterns and redundancies within the data and replacing them with more efficient representations.
Thus, BMP, PNG, RAW, and TIFF formats use lossless file compression. Therefore, options A, D, E, and F are correct.
Learn more about lossless file compression, here:
https://brainly.com/question/30225170
#SPJ2
Why is it necessary to have a w-2 or 1099 form when using tax preperation software.
When preparing taxes, it is essential to have a W-2 and 1099 form in order to accurately calculate an individual's tax liability. These forms provide information such as wages, taxes withheld, and income from other sources that is necessary for tax preparation software to accurately compute an individual's taxes.
Why is it necessary to have a w-2 or 1099 form when using tax preparation software?W-2 and 1099 forms are necessary for tax preparation software because these forms provide essential information that is used to accurately calculate an individual's tax liability.
The W-2 form shows the wages and taxes withheld from an employee’s paycheck.While the 1099 form shows income from other sources, such as investments, rent, or self-employment.Using these forms, tax preparation software can accurately calculate the amount of taxes that an individual must pay.
Learn more about Tax preparation software: https://brainly.com/question/25783927
#SPJ4
Answer: These Forms report income which needs to be used to file taxes
Explanation: I took the assessment
Richard wants to share his handwritten class notes with Nick via email. In this scenario, which of the following can help Richard convert the notes into digital images so that he can share them via email? a. Bar coding device b. Digital printing software c. Document scanner d. Radio frequency identification tag
Answer: Document Scanner
Explanation: Cos then he can easily add the paper notes to his computer and email the client.
Which of the following are universally common items that are synced between a mobile device and a larger computer? (Choose three.)
A. Office documents
B. Contacts
C. Operating system files
D. Email
E. Configuration settings
F. Apps
Answer:
email ur answer plllllllllllll mark me brainlest.......... .........………....….when reinstalling windows 11, should i clean data or just remove files on an sata ssd drive? answers.microsoft
When reinstalling Windows 11 on a SATA SSD drive, it is recommended to clean the data rather than just remove the files.
Cleaning the data will erase all the existing data from the drive, making sure no personal information or files are left behind. This can be done by running the Windows Disk Cleanup Utility. To use this utility, open the Start Menu and type in “disk cleanup”. Select “Clean up system files” and then select the SSD drive you are reinstalling Windows 11 on. Check all the boxes and click “OK”. Once the process is finished, Windows 11 can be reinstalled on the SSD drive.
You can learn more about Windows 11 at: brainly.com/question/30278424
#SPJ11
PLEASE HELP!! Which of the following computing devices would best address the needs for a CYBER SECURITY ANALYST?
Answer:high end laptop.
Explanation:
What are the uses of various lights? How are they all different? How do you decide on their usage? How can you use natural light to your advantage?
Answer:
lights
Explanation: