25 POINTS!!!!!!!!!!!!!!!!!!!!!! HELP ME

The contrast ratio of blue-60 text on a gray-15 background is __ to 1.
70
80
8
4

Answers

Answer 1

Answer:4

Explanation:


Related Questions

Sum of Primes JAVA project
read 2 strings from the command line; each string will contain an integer. let's call those integers, num1 and num2. write a loop that goes from num1 and num2 looking for prime numbers. if a number if prime then store it in an array of integers, pass this array to a method that returns the sum of all the numbers in the array; you will also need to tell this method how many numbers are in the array. output only the sum of primes. you may assume a maximum of not more than 1000 numbers in the array.
*CODE*
import java.util.*;
class SumPrimes {
// go thru the array primes which has size elements
// total the integer values in primes
// return this total
// the first argument is the array of prime numbers
// the second argument is the number of primes in this array
public static int sumArray(first argument, second argument) {
}
// this method takes an integer, n, and determines if it is prime
// returns true if it is and false if it isn't
// a number is prime if it is only evenly divisible by 1 and itself
// 1 is NOT considered prime
static boolean isPrime(int n) {
// Corner case
if (n <= 1)
return false;
// Check from 2 to n-1
for (int i = 2; i < n; i++)
if (n % i == 0)
return false;
return true;
}
public static void main(String[] args) {
// define the constant MAX which represents the largest size of the primes array
int num1, num2, numPrime = 0;
// declare an array of the proper data type and size
// convert 1st command line argument from a string to an integer
num1 = Integer.parseInt(args[0]);
// get num2 from the command line
// loop through all integers from num1 to num2
// store those that are prime in the primes array
// keep track of the number of primes - numPrime
// output the sum of all the primes
System.out.println(sumArray(primes, numPrime));
}
}

Answers

Answer:

Explanation:

The following code is written in Java and creates the necessary code so that two int inputs are read and looped through all the numbers between them to find all the primes. These primes are counted and summed. Finally, printing out the sum and the number of primes found to the console.

import java.util.ArrayList;

import java.util.Scanner;

class SumPrimes{

   public static void main(final String[] args) {

       Scanner in = new Scanner(System.in);

           ArrayList<Integer> primes = new ArrayList<>();

           int num1, num2, numPrime = 0;

           System.out.println("Enter number 1:");

           num1 = in.nextInt();

           System.out.println("Enter number 2:");

           num2 = in.nextInt();

           for (int x = num1; x <= num2; x++) {

               if (isPrime(x) == true) {

                   primes.add(x);

                   numPrime += 1;

               }

           }

           System.out.println("There are " + numPrime + " primes in the array.");

       System.out.println("Their sum is " + sumArray(primes));

}

   public static int sumArray(ArrayList<Integer> arr) {

       int sum = 0;

       for (int x: arr) {

           sum += x;

       }

       return sum;

   }

   static boolean isPrime(int n) {

       if (n <= 1)

           return false;

       for (int i = 2; i < n; i++)

           if (n % i == 0)

               return false;

       return true;

   }

}

Which of these is NOT an example of lifelong learning?

A reading a trade magazing
B having lunch with a friend

C reviewing a textbook

Answers

Answer:

B. having lunch with a friend

Explanation:

Lifelong learning can be defined as a continuous, self-motivated, and self-initiated learning activity that is typically focused on personal or professional development. Thus, it's a form of education that is undertaken throughout life with the sole aim of pursuing knowledge, competencies, and skills for either personal or professional growth and development, especially after acquiring a formal education.

Some examples of lifelong learning includes the following;

I. Reading a trade magazine.

II. Reviewing a textbook.

III. Studying an encyclopedia.

What steps can be used to open the Custom AutoFilter dialog box? Select any cell in the data range.

Click the _____ tab.

In the ______ group, click Filter.

Next to a column heading, click the AutoFilter drop-down arrow.

Click ______ and click Custom Filter. The Custom AutoFilter dialog box appears for creating custom filers.

Answers

Answer:

Data

Sort and Filter

Text Filters

Explanation:

Proof that this answer is correct in the file attached.

A step which can be used to open the Custom AutoFilter dialog box is to click on the data tab.

What is data?

Data simply refers to a representation of factual instructions (information) in a formalized manner, especially as a series of binary digits (bits) that are used on computer systems.

The step which can be used to open the Custom AutoFilter dialog box on Microsoft Excel include the following:

Click on the data tab.In the Sort & Filter group, click Filter.Next to a column heading, click the AutoFilter drop-down arrow.Click Text Filters and click Custom Filter.Then, the Custom AutoFilter dialog box would appear for creating custom filers.

Read more on Excel spreadsheets here: https://brainly.com/question/4965119

#SPJ2

As a casting director arranging for an audition, what sequence of events would you follow?
Give copies of the script to
the actors to rehearse.

Ask the actors to complete the form with their contact details.
Conduct the final audition.

Advertise the audition.

Answers

Answer:

1. Advertise the audition.  

The first step after breaking down the script is to advertise the audition so that interested actors and agents can send in resumes that can be picked from.

2. Ask the actors to complete the form with their contact details.

Actors should complete a form that would give you their contact details. This is how you will reach out to the characters you are interested in for auditions.

3. Give copies of the script to the actors to rehearse.

You should give copies of the script to actors that you feel will match the roles in the production after you contact them.

4. Conduct the final audition

There will be first auditions invloving various actors and there will be comebacks to ensure that the the characters can fit into the role. Finally there will be a final interview after which a character will be chosen.

what is astronaut favourite key on keyboard? ​

Answers

The space bar
Thanks for that today
Have a great day

The astronaut favorite key on keyboard ​ is Space-Bar.

What is space bar?

This is known to be a long  key that is seen at the lower part of a computer keyboard or typewriter used to type space.

Conclusively, to Space Key is known to be the Astronaut's Favorite Key on the Keyboard due to the fact that an Astronaut often travel to Space and work on satellites and as such they loves the space bar, more as it tells more about  the Outer Space.

Learn more about astronaut from

https://brainly.com/question/24496270

What is office automation?

Answers

Office automation refers to the varied computer machinery and software used to digitally create, collect, store, manipulate, and relay office information needed for accomplishing basic tasks.

what are bananas if they are brown

Answers

they are ripe or overripe (rotten)

if banans are Brown there bad I think

Define- Emerging technology

Answers

Answer: Emerging technologies are technologies whose development, practical applications, or both are still largely unrealized, such that they are figuratively emerging into prominence from a background of nonexistence or obscurity.

Explanation: brainliest?

-224/105 in simplest form plz​

Answers

i believe ur answer is -32/15

hopefully i helped =3

Write a program in which will use some of the built-in METHODS as it relates to the use of Strings. 1) The program will ask the user the following prompts: Please enter your first name and their last name, separated by a space. This program will then read-in the user's response using Scanner. You must separate the string input entered by the user into two strings via substrings. Substring one will store the first name and Substring two will store the last name respectively. ***hint this can be accomplish using the indexOf() to find the position of the space. Your program must display/output the number of characters in each name, as well as the user's initials that was entered. You must check and trim all extra white spaces before and after the string entered by the user. Incorporate and loop to have this program ask this user if they would like to execute the program again by prompting and requesting a Y for Yes and a N for No. This prompt should ignore upper or lower case entries. The initials are the first letter of the first name together with the first letter of the last name. Hello their Louis I have your first name as Louis, which has 5 characters Hello again Louis I have your last name as Henry, which has 5 characters Did you know that your initials are LH Do you wish to continue (Y)Yes or (N)No

Answers

Answer:

The program in Java is as follows:

import java.util.*;

public class Main{

public static void main(String[] args) {

 Scanner input = new Scanner(System.in);

 char cont = 'Y';

 while(cont == 'Y'){

     System.out.print("Name: ");

     String name =input.nextLine();

     String names [] = name.split(" ");

     names[0] = names[0].replaceAll("\\s", "");

     names[1] = names[1].replaceAll("\\s", "");

     System.out.println("Hello their "+names[0]+", I have your first name as "+names[0]+", which has "+names[0].length()+" characters ");

     System.out.println("Hello again "+names[0]+", I have your last name as "+names[1]+", which has "+names[1].length()+" characters ");

     System.out.println("Did you know that your initials are "+names[0].charAt(0)+names[1].charAt(0));

     System.out.print("Continue (Y)Yes or (N)No: ");

     cont = Character.toUpperCase(input.next().charAt(0));

     input.nextLine();} }}

Explanation:

This initializes a character variable cont to Y

 char cont = 'Y';

This is repeated as long as cont is Y

 while(cont == 'Y'){

This prompts the user for name

     System.out.print("Name: ");

This gets the name from the user

     String name =input.nextLine();

This splits the name into the array of two elements (first name and last name)

     String names [] = name.split(" ");

This remove all whitespace from the first name

    names[0] = names[0].replaceAll("\\s", "");

This remove all whitespace from the last name

     names[1] = names[1].replaceAll("\\s", "");

This prints the details of the first name

     System.out.println("Hello their "+names[0]+", I have your first name as "+names[0]+", which has "+names[0].length()+" characters ");

This prints the details of the last name

     System.out.println("Hello again "+names[0]+", I have your last name as "+names[1]+", which has "+names[1].length()+" characters ");

This prints the initials

     System.out.println("Did you know that your initials are "+names[0].charAt(0)+names[1].charAt(0));

This prompts the user to continue or not

     System.out.print("Continue (Y)Yes or (N)No: ");

This gets the user response

     cont = Character.toUpperCase(input.next().charAt(0));

     input.nextLine();} }

Use the drop-down menus to complete the steps to create a report with the Report button. 1. In the Navigation pane, select the table from which to create the report. 2. Click the tab. 3. In the group, click Report. 4. Microsoft Access creates a form using . 5. Open the report in view. 6. Modify the report. 7. Save the report.

Answers

Answer:

Click the  

✔ Create

tab.

3. In the  

✔ Reports

group, click Report.

4. Microsoft Access creates a form using  

✔ all of the columns in the table

.

5. Open the report in  

✔ Design

view.

6. Modify the report.

Explanation:

just took it

The table shows the number of points Ramon has earned on science quizzes. Quiz 16 points Quiz 2 9 points Quiz 3 1 point Quiz 4 9 points Quiz 5 8 points Quiz 6 3 points What is the median number of points Ramon has earned? A. 6 В. 7 O C 8​

Answers

Answer:9

Explanation:d.9

what are the key differences between ides and website builders ?

Answers

Answer:

The key differences are as follows:

IDES:

Are usually installed locallyBuild websites by writing and tweaking the source codes

Website Builders:

Are usually run from an online serverprovides beginners with an easy way to create websitesBuild websites by selection from a number of preset options

Explanation:

IDE is short for Integrated Development Environment.

They are predominantly designed to ease the use of a specific programming language. In most cases, IDEs contain tools for editing, testing, and converting the code to its final form as an application.

Other functions that come with it are a web server with a control interface, a database management system with a control interface (in most cases, a relational database that functions off of the webserver), a server-side programming language

Cheers!

The different between Del key and BKSE key

Answers

Answer and Explanation:

I believe you are referring to Backspace and Del keys, which are the keys of a computer keyboard. In this case, the difference between them is quite simple and easy to understand. These two keys are used to delete characters, however, the Backspace key is capable of deleting characters that are to the left of the cursor (the dash that appears blinking when you are typing). Del Key, in turn, is able to delete the characters to the right of the cursor.

What are Render Modes? How different render modes can be used in different contexts?

Answers

Answer:

Rendering is the process that allows obtaining digital images taken from the three-dimensional model, through dedicated software. These images are intended to photorealistically simulate environments, materials, lights, objects in a project and a 3D model. In Computer Graphics Imagery , this process is developed in order to imitate a 3D space formed by polygonal structures, light behavior, textures, materials (water, wood, metal, plastic, cloth, etc.) and animation, simulating environments and credible physical structures. One of the most important parts of the programs dedicated to Computer Graphics Imagery are the rendering engines, which are capable of performing complex techniques or algorithms such as radiosity, raytrace (ray tracer), alpha channel, reflection, refraction or global illumination.

Explanation:

Rendering is a complex calculation process developed by a computer equipment designed to generate a 2D image from a 3D scene. Real-time rendering is preferably used in games and interactive graphics, it is made up of images or animations rendered at a speed that makes the fact that the computer takes time to calculate them imperceptible to the end user, therefore there will be graphic hardware dedicated to ensure rapid image processing. Offline rendering is used in those cases in which a very high speed of use of the images created is not so important, as it happens in animation works or those whose complexity and level of photorealism are much higher. Another of the applications of 3D rendering is in the world of graphic design, since it gives the designer an almost unlimited range of perspectives on the object he is designing. In addition to this, it allows a complete redesign from an initial image. Thus, designers have a tool that allows them to unleash their imagination.

Light bending power of a lens is shown by a charecteristic is called

Answers

Answer:

Optical power of lens.

Unit - 'dioptre '

symbol - φ

Write a Python programs to do frequency counting of the sum of two dice. Your function should accept an integer n parameter to run n trials (i.e., multiple rollings of the two dice); You can use the Python function randrange(1, 7) to simulate the roll of one die; After running the n trials, your function should return the sum of two dice that occurs most frequently.

Answers

Answer:

Explanation:

The following program uses Numpy import to detect the frequency of all the elements in an array and ouput the one that appears the most. The function creates random dice rolls and adds them to the array, looping the number of times that the trials parameter states. Then finally printing out the original array and the sum that appeared the most frequently.

from random import randrange

import numpy as np

def highestFrequency(trials):

   products = []

   for x in range(trials):

       product = randrange(1, 7) * randrange(1, 7)

       products.append(product)

   x = np.array(products)

   print("Original Array: " + str(list(products)))

   print("Most frequent value in the above array:")

   print(np.bincount(x).argmax())

highestFrequency(7)

Pendant Publishing edits multi-volume manuscripts for many authors. For each volume, they want a label that contains the author’s name, the title of the work, and a volume number in the form Volume 9 of 9. For example, a set of three volumes requires three labels: Volume 1 of 3, Volume 2 of 3, and Volume 3 of 3. Design an application that reads records that contain an author’s name, the title of the work, and the number of volumes. The application must read the records until eof is encountered and produce enough labels for each work.

I've seen psuedo-code, I've seen the flowchart. Yet no one explains how to accurately translate it into the programing program called raptor. I'm asking for help on translating the psuedocode I have into the raptor program.

Answers

72928.8 is what I got?

What happens during focus group testing?


Individuals who are not involved in the development process test the game.

Before the game is designed, experienced gamers tell the designers what they would like to see.

Company leadership looks closely at the game to see if it meets their standards.

Members of the team that designed the game test the game for quality.

Answers

Answer:

Individuals who are not involved in the development process test the game.

Explanation:

Focus groups are made up of people with no knowledge about the game being developed. This allows for an unbiased review of the game to take place and see how a typical player will behave and feel about a game.

Answer:

Individuals who are not involved in the development process test the game.

name 3 supercomputers along with their cost, purpose and the country it is located.​

Answers

Answer:

The three super computers are

a) Fujitsu Fugak

b) IBM Summit/IBM/Nvidia/Mellanox

c) Sunway TaihuLigh

Explanation:

Three super computers are as follows

a) Fujitsu Fugak - It is located in Kobe, Japan and its costs is ¥130 billion

b) IBM Summit/IBM/Nvidia/Mellanox - It is located in Oak Ridge, U.S. and it costs $325 million

c) Sunway TaihuLigh- It is located in Wuxi, China and it costs US$273 million

Diana is trying to increase the contrast by blending textures into an image using the Blend Layers mode. Which blend mode should Diana use?
A-
Screen
B-
Color
C-
Overlay
D-
Multiply
E-
Luminosity

Answers

C. Overlay

Hope this helps :)

What year did the first hovercraft sail on water

Answers

1959!!!!!!!!!!!!!aksksid

who plays Counter blox or counter strike

Answers

Answer:

me

Explanation:

csgo

Answer: not me

Explanation:

Question 5 a. critically explain why you would consider arrays over normal data types [5 marks] b. from you explanation in “a” above, write and initialize an array called BongoBar of type string and having 4 element. [5 marks] c. embed your array in “b” above in a full c++ program. [5 marks] d. critically explain what will happen if an amateur programmer called BongoBar[5] in the main function in you program in “c” above.

Answers

Can you explain the question better?

You can insert video by clicking video drop-down menu on the ______ tab.

i. HOME ii. DESIGN iii. INSERT
choose the correct answers​please tell me the answer right now

Answers

The correct answer is iii. Insert

Write a program that asks the user for an integer between 0 and 100 that represents a number of cents. Convert that number of cents to the equivalent number of quarters, dimes, nickels, and pennies. Then output the maximum number of quarters that will fit the amount, then the maximum number of dimes that will fit into what then remains, and so on. If the amount entered is negative, write an error message and quit. Amounts greater than 100 are OK (the user will get many quarters.) Use extended assembly instructions and exception handler services. Enter number of cents: 67 Number of quarters:2 Number of dimes :1 Number of nickels :1 Number of pennies :2

Answers

Solution :

import [tex]$\text{math}$[/tex]

#First we need to define the value of each coin

[tex]$\text{penny=1}$[/tex]

[tex]$\text{nickel}$[/tex] = 5

[tex]$\text{dime}$[/tex] = 10

[tex]$\text{quarter}$[/tex] = 25

#Here we define [tex]$\text{the variables}$[/tex] to hold the [tex]$\text{max}$[/tex] number of each coin

[tex]$\text{quarter}$[/tex]s = 0

[tex]$\text{dime}$[/tex]s = 0

[tex]$\text{nickel}$[/tex]s = 0

[tex]$\text{pennys}$[/tex] = 0

[tex]$\text{cents}$[/tex] = int([tex]$\text{inpu}t $[/tex]("Please enter an [tex]$\text{amount}$[/tex] of money you have in [tex]$\text{cents}$[/tex]: "))

if [tex]$\text{cents}$[/tex] [tex]$>0$[/tex] and [tex]$\text{cents}$[/tex] [tex]$<=$[/tex] 100:

   if [tex]$\text{cents}$[/tex] >= 25:

       quarters = [tex]$\text{cents}$[/tex] / quarter

       [tex]$\text{cents}$[/tex] = [tex]$\text{cents}$[/tex] % quarter

   if [tex]$\text{cents}$[/tex] >= 10:

       dimes = cents/dime

       [tex]$\text{cents}$[/tex] =[tex]$\text{cents}$[/tex] % dime

   if [tex]$\text{cents}$[/tex] >= 5:

       nickels =[tex]$\text{cents}$[/tex] /nickel

       [tex]$\text{cents}$[/tex] = [tex]$\text{cents}$[/tex] % nickel

   if [tex]$\text{cents}$[/tex] > 0:

       pennys = [tex]$\text{cents}$[/tex] / penny

       [tex]$\text{cents}$[/tex] = 0

    print("The coins are: "

       "\[tex]$\text{nQuarters}$[/tex]", math.floor(quarters),

       "\[tex]$\text{nDimes}$[/tex]", math[tex]$\text{.floor}$[/tex](dimes), "\[tex]$\text{nNickels}$[/tex]", math[tex]$\text{.floor}$[/tex](nickels), "\nPennies", math[tex]$\text{.floor}$[/tex](pennys))

else:

   print("wrong value")

Hide Time Remaining A
Suppose that the following statement is included in a program. import static
java.lang. Math.*; After this statement, a static method of the class Math can be called
using just the method name.
A. True
B. False

Answers

Answer:

True

Explanation:

The class Math include mathematical functions such as sin(), cos(), tan(), abs(), etc

If the given statement is not written, each of the math function will be written as (take for instance, the sin() function):

Math.sin()

But after the statement has been written (it implies that the Math library has been imported into the program) and as such each of the mathematical function can be used directly.

So instead of Math.sin(), you write sin()

1. You will need to add data to the tables in your design that matches the data in the supplied Excel documents. If your database design doesn't accommodate a given piece of data you must modify your design and implementation to ensure that all data provided in the spreadsheet can be added. a. You may any other data you wish and as your design requires. If your design is such that the needed data is not supplied in the spreadsheet you will need to simply "mock" up some sample data and add it into your database. b. Important: Your instructor cannot provide you with specific information how to complete this step. Each person's database design will be different and therefore, how data must be entered will be different from person to person.

Answers

Answer:

is all about knowing what to do with the data

Explanation:

determine what to do with your data

What methods do phishing and spoofing scammers use? List and explain methods to protect against phishing and spoofing scams.

Answers

How can you protect against phishing and spoofing scams?

Anti-spyware and firewall settings should be used to prevent phishing attacks and users should update the programs regularly. Firewall protection prevents access to malicious files by blocking the attacks. Antivirus software scans every file which comes through the Internet to your computer.

Phishing is an online engineering attack which uses email message to deceive the receiver to enter data, login credentials and credit card numbers.

Spoofing involves someone gaining access to use other person computer, device, or network networks through illegitimate means and thus appears likes a legitimate entity.

Methods to protect against phishing and spoofing:

Anti-spyware and firewall: These application restricts external entity from intruding into the system. Anti-spyware recognizes and reveal any spyware application inadvertently install on the system.

Ignoring fake mails.

Ignore and delete mails from unknown sender.

Periodic scan of the computer against spywares.

Learn more about phishing and spoofing here

brainly.com/question/23009476


Using examples, evaluate the open source model of software development. In your discussion highlight some of its advantages and disadvantages. Furthermore, explain some of the alternatives that also exist.

Answers

Hope this helps! Good luck!
Other Questions
Drag the slider to change the value of b and observe the effect of b on the graph of the sine function. 8 when b=0.5 ,the period of orange graph is 4 when b=2, the period of orange graph is 110 311 TE RETRY 8 y = sin(2) b=1 y = sin(1) 1) Intro this is geometry can someone help me? 4. Which two factors help shape the population growth rate? A.) stabilization and demographic transition B.) urbanization and industrialization C.) feritlity and mortality D.) none of the above Andrews Company manufactures a line of office chairs. Each chair takes $12 of direct materials and uses 1.9 direct labor hours at $16 per direct labor hour. The variable overhead rate is $1.20 per direct labor hour, and the fixed overhead rate is $1.30 per direct labor hour. Andrews Company expects to produce 20,000 chairs next year and expects to have 610 chairs in ending inventory. There is no beginning inventory of chairs. Prepare a cost of goods sold budget for Andrews Company. What is a 7 - 0.9 = * hiii please help ill give brainliest:) Which of these mutations do you think would have the worst effect on the function ofthe protein?an insertion ordeletion nearthe end of agenean insertion ordeletion at thebeginning ofan insertion atthe middle ofa nonsensemutation at theend of the genea missensemutationthe genethe gene What number is 40% of 160? plz help me on this its based off communism in china and i need help :( ill give brainliest when its right and plz dont scam i need to pass question down below at the time of the Civil War TWO major issues dividing the North and South were... A ) States rights and expansion of slavery. B ) Immigrants policies and westward expansion. C ) Income tax and welfare reform. D ) Loyalty to Britain and the election of Jackson. ROMEO AND JULIET ACT 1:What evidence shows you that the nurse is an important part of the Capulet family? Use three details from the play to support your answer. Answer in 1-2 paragraphs! I had $370.00. My Mom gave $150.00. My Dad gave $150.00. My Aunt and Uncle gave me $100.00. I had another $30.00. How much did I have? For regular verbs, the stem change happens in every form EXCEPT whichtwo?el, ellanosotros, ustedesvosotros, yoO nosotros, vosotros hi! pls help me, this is my last question. :) What is the answer to: 20 - 6x = 4x -15 = ? Where in the Oklahoma State Constitution is the initiative outlined?Article IIArticle VArticle XArticle XII A glass bottle of soda is sealed with a screw cap. The absolute pressure of the carbon dioxide inside the bottle is 1.50 x 105 Pa. Assuming that the top and bottom surfaces of the cap each have an area of 4.40 x 10-4 m2, obtain the magnitude of the force that the screw thread exerts on the cap in order to keep it on the bottle. The air pressure outside the bottle is one atmosphere Organizations face myriad barriers and obstacles to effectively increasing and embracing diversity in their workplaces. a. Trueb. False The American Community Survey (ACS), part of the United States Census Bureau, conducts a yearly census similar to the one taken every ten years, but with a smaller percentage of participants. The most recent survey estimates with 90% confidence that the mean household income in the U.S. falls between $69,720 and $69,922. Find the point estimate for mean U.S. household income and the error bound for mean U.S. household income. For each expression below, write an equivalent expression by applying the distributive property. 1. 2(12p-6w + 7y)2. 1/4(32h + 64)3. 6(9m-8)