What are the steps In order that Jonah needs to follow to view the renaissance report ?

Answers

Answer 1

Incomplete question. The full question reads;

Jonah needs to add a list of the websites he used to his report. He opens the "Websites" document and copies the information. He now needs to change his view to the "Renaissance" report to add the information before saving his report.

What are the steps, in order, that Jonah needs to follow to view the "Renaissance" report?

Click on the View tab.

Go to the ribbon area.

Click on the "Renaissance" report.

Click on the Switch Windows tab.

Explanation:

Step 1.

Jonah should⇒ Go to the ribbon area

Step 2.

At the ribbon area, he should find and⇒ Click on the View tab.

Step 3.

Next⇒ Click on the Switch Windows tab.

Step 4.

Lastly, he can then⇒ Click on the "Renaissance" report.


Related Questions

Match the technology to its description.
facsimile
smartphone
HDTV
Internet
VoIP

Answers

Facsimile machine - Sends copies from one place to another

Personal Digital Assistant - sends e-mails and makes phone calls

High Definition Television - transmits digital signals for better-quality sound and pictures

The internet - makes web pages, music, and videos accessible

Voice over internet protocol - makes phone calls using computers

Reverse Word Order: Write a program that reverses the order of the words in a given sentence. This program requires reversing the order of the words wherein the first and last words are swapped, followed by swapping the second word with the second to last word, followed by swapping the third word and the third to last words, and so on.

Answers

Answer:

function reverseArray(arr) {

   if (arr.length > 1) {

      arr = [arr[arr.length-1], ...reverseArray(arr.slice(1, -1)), arr[0]]

   }

   return arr;

}

function reverseSentence(sentence) {

   let words = reverseArray( sentence.split(" ") );

   return words.join(" ");

}

console.log( reverseSentence("The quick brown fox jumps over the lazy dog's back") );

console.log( reverseSentence("one two three") );

console.log( reverseSentence("one two") );

console.log( reverseSentence("Single") );

Explanation:

This is a solution in javascript leveraging several powerful constructs in that language, such as the spread operator.

digital learning can help students who enjoy

structure and face to face interaction
flexibility and independence
homework and test
classrooms and support

Answers

Answer:

B

Explanation:

Hope this helps! :)

The digital learning can help students who enjoy classrooms and support. The correct option is 4.

What is digital learning?

Digital learning can be defined as a type of education in which the internet, a computer, or a network of computers, and softwares are used to connect students and teachers in order to provide educational services.

Digital learning brings together facilities such as classrooms and support in an effort to help and provide the necessary assistance to students who have chosen the digital medium but still enjoy the comfort of structure and face-to-face interaction.

Regardless of their learning style or preference, digital learning can benefit a variety of students.

It offers a variety of tools and resources to improve the learning experience while also accommodating various schedules and needs.

Thus, the correct option is 4.

For more details regarding digital learning, visit:

https://brainly.com/question/20008030

#SPJ7

I have been stuck on this lab this is my program.

Given four values representing counts of quarters, dimes, nickels and pennies, output the total amount as dollars and cents.

Output each floating-point value with two digits after the decimal point, which can be achieved as follows:
print(f'Amount: ${dollars:.2f}')

My program:
quarters = int(input("Quarters: "))

dimes = int(input("Dimes: "))

nickels= int(input("Nickels: "))

pennies= int(input("Pennies: "))

dollars = (quarters * 0.25 + dimes * 0.10 + nickels * 0.05 + pennies * 0.01)

print("Amount: ${:.2f}".format(dollars))


not sure why my answer is for wrong.

my output is: (with input)
1

2

3

4

Quarters: Dimes: Nickels: Pennies: Amount: $1.41

expected out put is : Amount: $1.41

What about my code adds the extra part to my answer?

Answers

They are using the knowledge of computational language in python to write the values ​​of the coins and the total we find that

Writing code in python      

quarters = int(input())

dimes = int(input())

nickels = int(input())

pennies = int(input())

cents = (quarters*25 + dimes*10 + nickels*5 + pennies)

#convert cents to dollars

# 1 dollar = 100 cents

# n cents = n/100 dollars

dollars = cents / 100.00

#Print the amount in dollars upto two decimal places

print("Amount: $"+"{:.2f}".format(dollars))

See more about python at brainly.com/question/18502436

#SPJ1

I have been stuck on this lab this is my program. Given four values representing counts of quarters,

Which two phrases describe the necessary skills that animators and digital communications professionals most likely need to develop

Answers

The skills necessary for both Digital communication professionals and animators are selection of appropriate graphics and draw storyboards phrases describe the necessary skills that animators and digital communications professionals.

What exactly is a digital communicator?

Individuals active in building and organizing a company's digital market are referred to as digital communication professionals.

Animators, on the other hand, are individuals who are responsible for framing and sequencing images in order to give the illusion of motion.

Both digital communication specialists and animators require the following skills:

Thus, The skills necessary for both Digital communication professionals and animators.

For more information about digital communicator, click here:

https://brainly.com/question/27797720

#SPJ1

what is a bit? And what is a byte?

Answers

How many bits are transmitted each second is referred to as the bit rate. The unit of measurement for storage sizes, however, is the byte. Eight bits make up a byte.

What do you mean by a bit?

The smallest piece of data that can be processed and stored by a computer is a bit (binary digit). Like an on/off switch for a light, a bit is always in one of two physical states. A single binary number, often a 0 or 1, is used to indicate the state.

What does byte explain mean?

A byte is a unit of data that is eight binary digits long in the majority of computer systems. Most computers store characters like letters, numbers, and typographic symbols in units called bytes.

To know more about byte visit :-

https://brainly.com/question/14477978

#SPJ1

Can someone answer the question s please

Can someone answer the question s please

Answers

Answer:

1. it the point of art and they do it for fun

2. Yes I done that a couple of time and the reason why is because it fun and it u that is acknowledging your own work that u done for later memories even tho you know it wont last long.

3. I would love to create a sand castle I think or something about kpop

An information of a 500GB is transferred at the speed of 10MB/s. Calculate the full time the information will be transfer.

Answers

Answer:

50,000 seconds

Explanation:

First multiply 500GB into 1000.(*1GB is equal to 1000MB so were going to multiply it so that we can get the exact MB) and we will get 500,000 MB. Then let's divide it by 10.(*since 10MB can be transfer in just one second.) and we will get 50,000 SECONDS.

Hope it can help you lovelots

I really need help with CSC 137 ASAP!!! but it's Due: Wednesday, April 12, 2023, 12:00 AM

Questions for chapter 8: EX8.1, EX8.4, EX8.6, EX8.7, EX8.8

I really need help with CSC 137 ASAP!!! but it's Due: Wednesday, April 12, 2023, 12:00 AMQuestions for
I really need help with CSC 137 ASAP!!! but it's Due: Wednesday, April 12, 2023, 12:00 AMQuestions for
I really need help with CSC 137 ASAP!!! but it's Due: Wednesday, April 12, 2023, 12:00 AMQuestions for

Answers

The response to the following prompts on programming in relation to array objects and codes are given below.

What is the solution to the above prompts?

A)

Valid declarations that instantiate an array object are:

boolean completed[J] = {true, true, false, false};

This declaration creates a boolean array named "completed" of length 4 with initial values {true, true, false, false}.

int powersOfTwo[] = {1, 2, 4, 8, 16, 32, 64, 128};

This declaration creates an integer array named "powersOfTwo" of length 8 with initial values {1, 2, 4, 8, 16, 32, 64, 128}.

char[] vowels = new char[5];

This declaration creates a character array named "vowels" of length 5 with default initial values (null for char).

float[] tLength = new float[100];

This declaration creates a float array named "tLength" of length 100 with default initial values (0.0f for float).

String[] names = new String[]{"Sam", "Frodo", "Merry"};

This declaration creates a String array named "names" of length 3 with initial values {"Sam", "Frodo", "Merry"}.

char[] vowels = {'a', 'e', 'i', 'o', 'u'};

This declaration creates a character array named "vowels" of length 5 with initial values {'a', 'e', 'i', 'o', 'u'}.

double[] standardDeviation = new double[1];

This declaration creates a double array named "standardDeviation" of length 1 with default initial value (0.0 for double).

In summary, arrays are objects in Java that store a fixed-size sequential collection of elements of the same type. The syntax for creating an array includes the type of the elements, the name of the array, and the number of elements to be stored in the array. An array can be initialized using curly braces ({}) to specify the initial values of the elements.


B) The problem with the code is that the loop condition in the for loop is incorrect. The index should start from 0 instead of 1, and the loop should run until index < masses.length instead of masses.length + 1. Also, the totalMass should be incremented by masses[index], not assigned to it.

Corrected code:
double[] masses = {123.6, 34.2, 765.87, 987.43, 90, 321, 5};

double totalMass = 0;

for (int index = 0; index < masses.length; index++) {

   totalMass += masses[index];

}


The modifications made here are to correct the starting index of the loop, fix the loop condition, and increment the totalMass variable correctly.


C)

1)
Code to set each element of an array called nums to the value of the constant INITIAL:

const int INITIAL = 10; // or any other desired initial value

int nums[5]; // assuming nums is an array of size 5

for (int i = 0; i < 5; i++) {

   nums[i] = INITIAL;

}


2) Code to print the values stored in an array called names backwards:
string names[4] = {"John", "Jane", "Bob", "Alice"}; // assuming names is an array of size 4

for (int i = 3; i >= 0; i--) {

   cout << names[i] << " ".

}



3) Code to set each element of a boolean array called flags to alternating values (true at index 0, false at index 1, true at index 2, etc.):

bool flags[6]; // assuming flags is an array of size 6

for (int i = 0; i < 6; i++) {

   flags[i] = (i % 2 == 0);

}


Learn more about array objects at:

https://brainly.com/question/16968729

#SPJ1

String Challenge RUBY!!!!
Have the function String Challenge (num)
take the num parameter being passed and
return the number of hours and minutes the
parameter converts to (ie. if num = 63 then the
output should be 1:3). Separate the number of
hours and minutes with a colon.
Examples
Input: 126
Output: 2:6
Input: 45
Output: 0:45

Answers

The function string in Java is used to create the program as seen below.

How to create a Java String?

/*

Description: Using the Java language, have the function TimeConvert(num) take the  num parameter being passed and return the number of hours and minutes the parameter converts to (ie. if num = 63 then the output should be 1:3). Separate the number of

hours and minutes with a colon.

*/

import java.util.*;

import java.io.*;

class Function {  

 String TimeConvert(int num) {

 

  int hours = num/60;

  int minutes = num%60;

  String output = hours + ":" + minutes;

   

     

   return output;

   

 }

 

 public static void main (String[] args) {  

   // keep this function call here    

   Scanner  s = new Scanner(System.in);

   Function c = new Function();

   System.out.print(c.TimeConvert(s.nextLine()));

 }  

 

}

Read more about Java String at; https://brainly.com/question/14610932

#SPJ1

what does c++ programming mean?

Answers

Answer:

It's an internal joke to say the language is basically C with some extra stuff (like classes)

the "++" is short for

C += 1 or

C = C + 1 which is a common calculation among programmers so they named it C++ to be a more commercial and attractive name than "C with classes"

Explanation:

A security administrator is reviewing the following information from a file that was found on a compromised host: Which of the following types of malware is MOST likely installed on the compromised host?
A. Keylogger
В. Spyware
C. Trojan
D. Backdoor
E. Rootkit

Answers

Answer:

C. Trojan

Explanation:

In Cybersecurity, vulnerability can be defined as any weakness, flaw or defect found in a software application or network and are exploitable by an attacker or hacker to gain an unauthorized access or privileges to sensitive data in a computer system.

This ultimately implies that, vulnerability in a network avail attackers or any threat agent the opportunity to leverage on the flaws, errors, weaknesses or defects found in order to compromise the security of the network.

In this scenario, a security administrator is reviewing the following information from a file that was found on a compromised host: "cat suspiciousfile.txt."

Some of the ways to prevent vulnerability in a network are;

1. Ensure you use a very strong password with complexity through the use of alphanumerics.

2. You should use a two-way authentication service.

3. You should use encrypting software applications or services.

In which of the following situations must you stop for a school bus with flashing red lights?

None of the choices are correct.

on a highway that is divided into two separate roadways if you are on the SAME roadway as the school bus

you never have to stop for a school bus as long as you slow down and proceed with caution until you have completely passed it

on a highway that is divided into two separate roadways if you are on the OPPOSITE roadway as the school bus

Answers

The correct answer is:

on a highway that is divided into two separate roadways if you are on the OPPOSITE roadway as the school bus

What happens when a school bus is flashing red lights

When a school bus has its flashing red lights activated and the stop sign extended, it is indicating that students are either boarding or exiting the bus. In most jurisdictions, drivers are required to stop when they are on the opposite side of a divided highway from the school bus. This is to ensure the safety of the students crossing the road.

It is crucial to follow the specific laws and regulations of your local jurisdiction regarding school bus safety, as they may vary.

Learn more about school bus at

https://brainly.com/question/30615345

#SPJ1

10+2 is 12 but it said 13 im very confused can u please help mee

Answers

Mathematically, 10+2 is 12. So your answer is correct. However, if you are trying to write a code that adds 10 + 2, you may need to troubleshoot the code to find where the bug is.

What is troubleshooting?

Troubleshooting is described as the process through which programmers detect problems that arise inside a specific system. It exists at a higher level than debugging since it applies to many more aspects of the system.

As previously stated, debugging is a subset of troubleshooting. While debugging focuses on small, local instances that can be identified and fixed in a single session, troubleshooting is a holistic process that considers all of the components in a system, including team processes, and how they interact with one another.

Learn more about Math operations:
https://brainly.com/question/199119
#SPJ1

How is the query wizard used on a table?

Answers

The query wizard is a tool in database management systems that helps users create queries to retrieve specific data from a table. Here are the steps to use the query wizard on a table:

1. Open the database management system, such as Microsoft Access.
2. Open the table you want to query.
3. Locate the "Query Wizard" option, which is typically found in the toolbar or menu.
4. Click on the "Query Wizard" option to launch the wizard.
5. Follow the instructions provided by the query wizard.
6. Select the fields you want to include in your query from the available options.
7. Choose the criteria you want to use to filter the data. This can be based on specific values, ranges, or conditions.
8. Specify the sorting order for the query results, if desired.
9. Name the query and choose whether to immediately view the results or modify the design of the query further.
10. Click "Finish" or "OK" to generate the query and view the results.
By using the query wizard, you can easily create and customize queries without needing to write complex SQL statements manually. It provides a user-friendly interface to guide you through the process of querying a table.

For more such questions wizard,Click on

https://brainly.com/question/30670647

#SPJ8

what is the meaning of Ram?​

Answers

Answer:

Random-Access Memory

Explanation:

used as a short-term memory for computers to place its data for easy access

please help on this, multiple choice!

please help on this, multiple choice!

Answers

Answer:

b. input

Explanation:

Well, it's the only word that has a noun and verb form. Also, it's the right answer

Please Help!! Thank You. What will happen in this program after the speak function is called for the first time?

Please Help!! Thank You. What will happen in this program after the speak function is called for the

Answers

Answer:

D The sprite will say "hi" twice.

Explanation:

the first call of the speak function specifies that:
if the word is not bye then the word will be repeated twice
so the sprite will say hi twice

Answer:

D.The sprite will say "hi" twice.

Explanation:

Five jobs arrive nearly simultaneously for processing and their estimated CPU cycles are, respectively: Job A = 12, Job B = 2, Job C = 15, Job D = 7, and Job E = 3 ms. Using SJN, and assuming the difference in arrival time is negligible, What is the average turnaround time for all five jobs?

Answers

Answer:

A scheduling mechanism called Shortest Job Next (SJN), often referred to as Shortest Job First (SJF), chooses the work with the shortest CPU burst time to be completed next. We must first establish the turnaround time for each work in order to calculate the average turnaround time using SJN. Turnaround time is the sum of the waiting and execution periods from the time the task is delivered until it is finished.

Considering the CPU cycles used by each job:

Job A: 12 ms

Job B: 2 ms

Job C: 15 ms

Job D: 7 ms

Job E: 3 ms

The jobs are arranged using the SJN method in the following order: Job B (2 ms), Job E (3 ms), Job D (7 ms), Job A (12 ms), and Job C. (15 ms)

Now we can figure out how long it will take to complete each job:

Job B: 0 ms (waiting time) + 2 ms (execution time) = 2 ms

Job E: 2 ms (waiting time) + 3 ms (execution time) = 5 ms

Job D: 5 ms (waiting time) + 7 ms (execution time) = 12 ms

Job A: 12 ms (waiting time) + 12 ms (execution time) = 24 ms

Job C: 24 ms (waiting time) + 15 ms (execution time) = 39 ms

By summing all all turnaround times and dividing by the total number of tasks, we can determine the average turnaround time:

(2 ms plus 5 ms plus 12 ms plus 24 ms plus 39 ms) / 5 = 82 ms / 5 = 16.4 ms.

Thus, the SJN algorithm's average turnaround time for all five tasks is 16.4 ms.

One of the common tests used to evaluate the accessibility of a web page consists of

using an Internet search engine to see if the page can be found easily.
clicking all hyperlinks in the page to test for broken or inaccurate links.
using the TAB and ENTER keys to move through the page’s content.
comparing the page with others in the website to find inconsistent layout.

Answers

The statement provided is True. An Internet search engine examination is a comprehensively employed method to evaluate the accessibility of a webpage, gauging if the page can be expeditiously found by users.

Other methods of accessing data

Furthermore, all hyperlinks in the page are clicked upon to weed out broken or inaccurate links which may negatively affect user experience by leading them astray. This rubric helps identify any links that may pose difficulties in accessing an accurate destination or even incorrect one, thus excluding any possibility of misunderstanding or degradation of user satisfaction.

An additional arbiter frequently employed to determine the accessibility of a webpage is using TAB and ENTER keys on a keyboard only interface. Loopholes for a comfortable exploration via keyboards when digital displays cannot help decipher is demonstrated in this manner; important for those susceptible to low vision or motor impairments obeying disability codes with accessible requirements or anyone else lacking interaction means save the keyboard.

Learn more about Internet search engine at

https://brainly.com/question/26488669

#SPJ1

Create a program that uses a Java method to determine the length of a line by inputting the X,Y coordinates of the line endpoints. Show the result with a precision of four decimal places.

Answers

Answer:

import java.lang.Math;

import java.util.Scanner;

class lineLength {

 private double x1;

 private double x2;

 private double y1;

 private double y2;

 public lineLength(double x1, double y1, double x2, double y2){

   this.x1 = x1;

   this.x2 = x2;

   this.y1 = y1;

   this.y2 = y2;

   

 }

 public String toString(){

   double length = Math.sqrt( ( ( this.x2 - this.x1 ) * ( this.x2 - this.x1 ) ) + ( ( this.y2 - this.y1 ) * ( this.y2 - this.y1 ) ) );

   String answer = String.format("%.4f %n", length);

   return answer;

 }

}

class Main{

 public static void main(String[] args) {

   Scanner scanner = new Scanner(System.in);

   System.out.println("Please input x1, y1, x2, and y2");

   double x1 = scanner.nextDouble();

   double y1 = scanner.nextDouble();

   double x2 = scanner.nextDouble();

   double y2 = scanner.nextDouble();

   lineLength test = new lineLength(x1,y1,x2,y2);

   System.out.println(test);

 }

}

Explanation:

we use formula

\(\sqrt{(x_2-x_1)^2+(y_2-y_1)^2}\)

Which of the following is an impact technology has had on our society?
Political
Economic
Social
All the Above

Answers

A, Hopes this helps .


The equation of certain traveling waves is y(x.t) = 0.0450 sin(25.12x - 37.68t-0.523) where x and y are in
meters, and t in seconds. Determine the following:
(a) Amplitude. (b) wave number (C) wavelength. (d) angular frequency. (e) frequency: (1) phase angle, (g) the
wave propagation speed, (b) the expression for the medium's particles velocity as the waves pass by them, and (i)
the velocity of a particle that is at x=3.50m from the origin at t=21.os​

Answers

Answer:

A. 0.0450

B. 4

C. 0.25

D. 37.68

E. 6Hz

F. -0.523

G. 1.5m/s

H. vy = ∂y/∂t = 0.045(-37.68) cos (25.12x - 37.68t - 0.523)

I. -1.67m/s.

Explanation:

Given the equation:

y(x,t) = 0.0450 sin(25.12x - 37.68t-0.523)

Standard wave equation:

y(x, t)=Asin(kx−ωt+ϕ)

a.) Amplitude = 0.0450

b.) Wave number = 1/ λ

λ=2π/k

From the equation k = 25.12

Wavelength(λ ) = 2π/25.12 = 0.25

Wave number (1/0.25) = 4

c.) Wavelength(λ ) = 2π/25.12 = 0.25

d.) Angular frequency(ω)

ωt = 37.68t

ω = 37.68

E.) Frequency (f)

ω = 2πf

f = ω/2π

f = 37.68/6.28

f = 6Hz

f.) Phase angle(ϕ) = -0.523

g.) Wave propagation speed :

ω/k=37.68/25.12=1.5m/s

h.) vy = ∂y/∂t = 0.045(-37.68) cos (25.12x - 37.68t - 0.523)

(i) vy(3.5m, 21s) = 0.045(-37.68) cos (25.12*3.5-37.68*21-0.523) = -1.67m/s.

Declare a character variable letterStart. Write a statement to read a letter from the user into letterStart, followed by statements that output that letter and the next letter in the alphabet. End with a newline. Hint: A letter is stored as its ASCII number, so adding 1 yields the next letter. Sample output assuming the user enters ‘d’: de
#include
int main(void) {
char letterStart;
char letter2;
scanf("%c", &letterStart);
letter2 = (letterStart + 1);
printf("%c%c\n", letterStart, letter2);
return 0;
}

Answers

We have declared a character variable named as letterStart. Now to read a letter from the user into letterStart, this will be followed by statements that output that letter and the next letter in the alphabet. Later we will end with a new line.

The code given below is written in C language.

It should be noted that a letter is stored as its ASCII number, so adding 1 yield the next letter. Also, the sample output assumes the user enters 'd': de.

#include <stdio.h>

#include <conio.h>

int main(void) {

  char letterStart;

  scanf("%c", letterStart);

  printf("%c", letterStart);

  printf("%c", letterStart + 1);

  return 0;

}

Learn more about C language at:

brainly.com/question/26535599

#SPJ4

How do the Internet and Internet technology work, and how do they support communication and e-business

Answers

Every computer on the Internet is assigned a unique numeric IP address. The domain name system (DNS) converts IP addresses to more user-friendly domain names.

A collection of computers and other hardware devices that are connected together to share hardware, software, and data, as well as to communicate electronically with one another? Explain.

Answers

Here you go.....................
A collection of computers and other hardware devices that are connected together to share hardware, software,

which statements are true? Select 4 options. Responses A function can have no parameters. A function can have no parameters. A function can have a numeric parameter. A function can have a numeric parameter. A function can have only one parameter. A function can have only one parameter. A function can have a string parameter. A function can have a string parameter. A function can have many parameters. A function can have many parameters.

Answers

Answer:

A function can have a numeric parameter.

A function can have many parameters.

A function can have only one parameter.

A function can have a string parameter.

Explanation:

You decide to test the voltages across several of the components. The measured voltages are:

V1 = 0 Volts
V2 = 12 Volts
V3 = 0 Volts
V4 = 12 Volts

These voltages do not correspond with what should be happening if there is current flowing through each device.

Which statement below describes what is happening?

Zero voltage across the fuse indicates that the fuse is the problem.
12 volts across the resistor and no current indicates that the resistor is blown.
Zero volts across the lamp indicates that the light is bad.
The fuse is bad because there is no current.

Answers

Zero volts across the lamp indicates that the light is bad. The correct option is C.

What is resistor?

A resistor is a passive two-terminal electrical component used in circuits to implement electrical resistance.

Resistors have a variety of purposes in electronic circuits, including lowering current flow, adjusting signal levels, dividing voltages, biassing active components, and terminating transmission lines.

After the light bulb, a test of 0 volts shows that there is no resistance in the ground circuit.

At that time, the battery is receiving all of the circuit's voltage (by the path of least resistance), and no voltage is passing through the metre (0 volt reading).

Thus, the correct option is C.

For more details regarding resistor, visit:

https://brainly.com/question/24297401

#SPJ1

10 disadvantages of Edp​

Answers

The  disadvantages are:

High initial investmentTechnical complexitySecurity risksDependence on technologyWhat is the  Electronic Data Processing?

EDP (Electronic Data Processing) alludes to the utilize of computers and other electronic gadgets to prepare, store, and recover information.

Therefore,  Setting up an EDP framework requires a noteworthy speculation in equipment, computer program, and other hardware, which can be a obstruction for littler businesses.

Learn more about  Electronic Data from

https://brainly.com/question/24210536

#SPJ1

Right now I have an i5 2400 and a PYN XLR8 gaming GTX 1650 Super, my CPU is too weak for 1080p gaming, what CPU should I get that has a B75 LGA 1155 socket, or Overclock it if so how many GHz should I overclock it to
(I only have a stock cooler)

Answers

Answer:

if its a number you need 5600GHz but im not to sure

Explanation:

Answer:

answer

Explanation:

if it a number you need 5600GHz but it not I'm not sure

Other Questions
Help plzzzzzzzzzzzzzz A shop has a sale of 25% off all items in stock.If the original price of a dress is 20 what would be its sale price? A 240-hp automobile engine delivers only 174 hp to the driving wheels of the car. What is the efficiency of the transmission and drive mechanism? All of the following have been implicated in the development and maintenance of somatic symptom disorders EXCEPTa. the additional attention one receives when sick.b. a specific hypochondriac gene.c. the high incidence of disease in the family during the hypochondriac's childhood.d. stressful life events In the long nn, a country that has experienced econsenio growth is ripresentad ac a. Anwwers A:E A right stift of lang run AS cure. tgit shil of aD cure. fise h natural rate of unemployment. (A) and (8) Al of the above. order from least to greatest Alicia ran 5 miles over the weekend. Approximately how many kilometers did she run? [Use the conversion 1 mile 1.6 kilometers. Type your answer as a number.] kilometers Maribel deposited $1,500 in a new account at her bank. -The bank pays 4.5% annual simple interest on this account. -Maribel did not make any additional deposits or withdrawals. What is the balance of the account at the end of five years? explain the difference between the culture of poverty explanation of poverty and the structural inequality explanation Use context to determine the meaning of the word jabbering as it is used in Born Worker. Write your definition of jabbering here and show how you found it. Check your answer against the dictionary definition. PLS HELP the form of government that the framers of the u.s. constitution agreed upon was that of a(n) _____ How does the author build suspense in this scene where Salva sees his father in the clinic? passage along walk to water. (04.06 MC)What is one argument against the idea of emotional intelligence as a type of intelligence?a. peoples behaviors are not impacted by their emotions.b. it broadens the concept of intelligence too far.c. it has no impact on quality of life.d. it is a poor predictor of social success. an automobile salesperson uses ________ when it accesses a mobile system to obtain the latest information on consumer demand for electric vehicles.push publishingdeep learningRFM analysesO just-in-time data Vincent purchased a machine for $23,500 for his company. He paid 5.00% of this amount as a down payment and financed the rest at 4.82% compounded monthly. He paid $1,125 at the end of every month to settle the loan.a. What was the principal portion of payment number 4?Round to the nearest centb. What was the interest portion of payment number 4?Round to the nearest cent Who was Albert Sydney Johnston?A Confederate president Jefferson Davis appointed him postmaster general. At the end of the war, he, like other members of the Confederate government, found himself in afederal prison, where he spent several months.B resigned from the U.S. Army, declared himself a Texan, andjoined the Confederate army as a captain.C Having served as a general in the Texan army, the UnitedStates Army, and the Confederate States army, he remainsthe highest-ranking American officer ever killed in combat.D took command and recaptured Galveston, giving Texas atemporary reprieve from the Union blockade. He strictlyenforced the draft and allowed commanders in sub-districtsto rule with dictatorial powers. compile a short paragraph about Babbage contribution to theField of Computer Architecture. Which of the following is NOT one of the advantages associated with multinational corporations? O the capacity to tap into new technology from around the world O significantlabor savings, even in highly unionized countries the ability to shift production from one plant to another as market conditions change a positive exchange rates the ability to sidestep regulatory problems Exercice n13 : Le corps humain contient 25 x 10 puissance 12 globules rouges. Suite une maladie,un individu perd 12% de ses globules rouges. Combien de globules rouges lui reste-t-il ?(Donner le rsultat en notation scientifique)svp aidez moi ;) Can you please help me