1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
QveST [7]
3 years ago
5

Each processor or core processes two threads at the same time is called _________.

Computers and Technology
1 answer:
Scrat [10]3 years ago
4 0

Answer:

Parallelism

Explanation:

Each processor or core processes two threads at the same time is called <em>parallelism.</em>

<em>Parallelism </em>in computing refers to the improvement of performance. In fact parallelism is the mechanism in which multiple computing tasks can be processed at the same time. In synthesis in <em>parallel executions </em>every single task is split into multiple core processes in which every sub-task is executed at the same time.

You might be interested in
(1) The Format Painter ___.
siniylev [52]

(1) <u>The Format Painter-</u><u>allows you to copy formatting from one object and apply it to another object</u>

<u>(2) What is the best description of the Quick Access toolbar-</u><u>(b) Shows the shortcut for the current tool</u>

Explanation:

(1) <u>The Format Painter-</u><u>allows you to copy formatting from one object and apply it to another object</u>

<u>(2) What is the best description of the Quick Access toolbar-</u><u>(b) Shows the shortcut for the current tool</u>

<u>(3) What is the difference between the Slides pane and the Outline pane-</u><u>(a) one is text-based while the other shows thumbnails</u>

<u>(4) Where can you find the ZOOM command-</u><u>(c) View Tab</u>

<u>(5) If you wanted to add a glow effect to text, which dialog box would you use-</u><u>(c) Format Text Effects</u>

<u>(6) You have created a Title slide, but you have made too many formatting modifications and you want it to look like the original layout. What is the best way to do this-</u><u>(a) Use the Reset command on the Home tab</u>

<u>(7) Which of the following tabs is not shown by default-</u><u>(a) Slide Show</u>

<u>(8)</u><u> </u><u>If you want to change the background of a particular slide, which tab would you choose-</u><u>(d) Design tab</u>

<u>(9) What is the shorcut for Paste-</u><u>(c) CTRL + V</u>

<u>(10) Which of the following statements about sections is FALSE-</u><u>(c) You can delete a section without all of the slides in it being deleted</u>

<u> (11) What is the shortcut key for checking spelling-</u><u>(c) F7</u>

<u>(12) You have created a title slide but you want to change its layout to a section header slide. What is the quickest way to do this-</u><u>(b) Click Home - Layout - Section Header</u>

<u>(13) What types of presentations will you find in the File - New area-</u><u>(c) Templates from Office Online</u>

<u>(14) Which of the following commands can be used to open the Help screen-</u><u>(a) File - Help - Microsoft Office Help</u>

<u />

8 0
3 years ago
Write a C++ program using a do while loop for (Find the highest score). The program should work for any number of students. Run
alexdok [17]

Answer:

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.    int highest = 0;
  6.    int score;  
  7.    do{
  8.        cout<<"Input a score: ";
  9.        cin>>score;
  10.        
  11.        if(score > highest){
  12.            highest = score;
  13.        }    
  14.    }while(score >= 0);
  15.    
  16.    cout<<highest;
  17.    return 0;
  18. }

Explanation:

Firstly, create a variable highest and initialize it with zero (Line 5). Next, create a do while loop (Line 7 - 14). Within the loop prompt user to input a score (Line 8-9) and if the current score is higher than the highest variable, assign the score to highest variable (Line 11 - 13).

After finishing the loop when user put in any negative value, the program shall be able to print out the highest input score (Line 16).

8 0
3 years ago
Write the code to compute and output how many times the value 99 is found in an array of integers named numbers
astraxan [27]
Thank you for being the rare question where you actually provide what language you want your answer in; I approve, and encourage this.

In Java, the following will work.
I made it a bit more versatile to work with others numbers, other than 99, if you so please (if not, just hardcode the 99 in yourself).

// Example list - fill this with numbers yourself.
ArrayList<Integer> nums = new ArrayList<>();
int n = 99;
int count = (int)nums.stream().filter(i -> i == n).count();
System.out.println(n + " occurences.");
8 0
4 years ago
If you want to start a convo go here<br> https://padlet.com/beighbay000/x0q2v6qrm46j
Setler [38]

Answer:

ok

Explanation:

thx for tha points

..........

6 0
3 years ago
My friend Leo wants to have an emergency plan for his final exams on University of Southern Algorithmville. He has N subjects to
leonid [27]

Answer:

Greedy is an algorithmic paradigm that builds up a solution piece by piece, always choosing the next piece that offers the most obvious and immediate benefit. Greedy algorithms are used for optimization problems. An optimization problem can be solved using Greedy if the problem has the following property: At every step, we can make a choice that looks best at the moment, and we get the optimal solution of the complete problem.

If a Greedy Algorithm can solve a problem, then it generally becomes the best method to solve that problem as the Greedy algorithms are in general more efficient than other techniques like Dynamic Programming. But Greedy algorithms cannot always be applied. For example, the Fractional Knapsack problem (See this) can be solved using Greedy, but 0-1 Knapsack cannot be solved using Greedy.

The following are some standard algorithms that are Greedy algorithms.

1) Kruskal’s Minimum Spanning Tree (MST): In Kruskal’s algorithm, we create an MST by picking edges one by one. The Greedy Choice is to pick the smallest weight edge that doesn’t cause a cycle in the MST constructed so far.

2) Prim’s Minimum Spanning Tree: In Prim’s algorithm also, we create an MST by picking edges one by one. We maintain two sets: a set of the vertices already included in MST and the set of the vertices not yet included. The Greedy Choice is to pick the smallest weight edge that connects the two sets.

3) Dijkstra’s Shortest Path: Dijkstra’s algorithm is very similar to Prim’s algorithm. The shortest-path tree is built up, edge by edge. We maintain two sets: a set of the vertices already included in the tree and the set of the vertices not yet included. The Greedy Choice is to pick the edge that connects the two sets and is on the smallest weight path from source to the set that contains not yet included vertices.

4) Huffman Coding: Huffman Coding is a loss-less compression technique. It assigns variable-length bit codes to different characters. The Greedy Choice is to assign the least bit length code to the most frequent character. The greedy algorithms are sometimes also used to get an approximation for Hard optimization problems. For example, the Traveling Salesman Problem is an NP-Hard problem. A Greedy choice for this problem is to pick the nearest unvisited city from the current city at every step. These solutions don’t always produce the best optimal solution but can be used to get an approximately optimal solution.

6 0
3 years ago
Other questions:
  • Frank works for an organization that wishes to install a software program on a single server with multiple users connected. Whic
    8·1 answer
  • PLZ HELP ASAP!!!
    10·1 answer
  • If you download a virus onto ur computer which is the best way to get rid of it
    9·2 answers
  • Consider a system consisting of m resources of the same type, being shared by n processes. Resources can be requested and releas
    9·1 answer
  • How do web bugs invade a person's privacy?
    7·1 answer
  • The following are types of numbers except one. Select the one which is not an integer.
    11·1 answer
  • When the narrator of "EPIC 2015" describes the year 2015 as the "worst of
    6·1 answer
  • A co-worker is called away for a short errand and leave the clinical PC logged onto the Confidential Information System. You nee
    9·1 answer
  • Taran wants to work in the technology field but is unsure of which career to pursue. He has been told he has strong people skill
    14·1 answer
  • A computer is the __________ of an attack when it is used to conduct an attack against another computer.
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!