7) Which of the following is False regarding RISC and CISC architectures?
a) CISC has variable length instruction formats while RISC has fixed length instructions. b) CISC has a larger number of instructions than RISC.
c) CISC has more addressing modes than RISC.
d) In RISC, memory access is limited to load and store instructions, while in CISC, other instructions can support memory access.
e) CISC has a larger number of general purpose registers than RISC.

Answers

Answer 1
D hope that helps
Have a. Good one

Related Questions

Definition of Computer?​

Answers

Answer:

Computer

A computer is an electronic device that manipulates information, or data. It has the ability to store, retrieve, and process data. We can use a computer to type documents, send email, play games, and browse the Web.

the carbon fixation reaction converts?​

Answers

Answer:

Photosynthetic carbon fixation converts light energy into chemical energy. Photosynthesis reduces the carbon in carbon dioxide from OSC = +4 to OSC = +1 in the terminal carbon in glyceraldehyde-3-phosphate, the feedstock for simple sugars, amino acids, and lipids.

Which sort tool will reorganize the numbers so they are listed from largest to smallest? A.sort ascending B.custom sort-background color C.sort descending D.custom sort-font color

Answers

Answer:

C Sort Descending

Explanation:

100% on edg

Answer:

C.) Sort descending

Explanation:

got it correct on edge!!!

Subjective Questions
1. Why are professional roles important in ethics?
2. What is a strongly differentiated profession? Give examples.
3. Why some professions are not strongly differentiated? Give examples.
4. "The role of computer professional is not strongly differentiated.' Why?
Please need help in my question ​

Answers

Answer:

3 I'm hope I'm right sorry if I'm not

9 Suppose that while trying to access a collection of short videos on some Web site, you see a pop-up window stating that you need to install this custom codec in order to view the videos. What threat might this pose to your computer system if you approve this installation request

Answers

Answer:

the threat of exposing your computer to a virus

Explanation:

Remember, a pop-up message is one of several strategies used by bad actors to get internet users into downloading malicious programs into their computers.

Consider,

the said "custom codec" is being downloaded not from the official windows app store; a red flag.a typical web browser is able to play most of the various video formats available online.even if this program works as intended; it may gain maliciously gain access to your system data.

Does nature behave the exact same way as fractals?

Answers

no, it doesn’t because they are too different

please help me please help me.​

Answers

Answer:

Earth. Wind. Water. Fire

Explanation:

These are elements right or is it metal plastics and all the other object materials sorry if this question isn't what you asked for just that I don't get the question

What is the correct formula for the IF function in excel

Answers

Use the IF function, one of the logical functions, to return one value if a condition is true and another value if it's false. For example: =IF(A2>B2,"Over Budget","OK") =IF(A2=B2,B4-A4,"")

The IF function in Microsoft Excel is the most common function in Excel that allows comparing the data.

The IF function can have two statements that is positive and negative. Like of IF(C2='' Yes'', 1, 2). Which means of c2 is yes then return one or two. Thus IF formula is used to evaluate errors.

Learn more about the correct formula for the IF function in excel.

brainly.in/question/5667072.

Edhesive AP Computer Science Coding Activity 2:

Write a method that takes 5 ints as parameters and returns the average value of the 5 ints as a double.
This method must be named average() and it must have 5 int parameters. This method must return a double.

Calling average(1, 5, 7, 4, 10) would return 5.4.

You can call your method in the program's main method so you can test whether it works, but you must remove or comment out the main method before checking your code for a score.

Answers

Answer:

The method in C++ is as follows:

double average(int v, int w, int x, int y, int y){

   double ave = (v+w+x+y+z)/5.0;

   return ave;

}

Explanation:

This defines the average method with 5 parameters

double average(int v, int w, int x, int y, int y){

This calculates the average

   double ave = (v+w+x+y+z)/5.0;

This returns the calculated average

   return ave;

}

To call the method from the program's main, use:

int main(){

   cout<<average(1,5,7,4,10);

   return 0;

}

Consider the following code:
Token LexicalAnalyzer: : GetToken()
input . GetChar(c);
switch (c) {
case '=':
input . GetChar(c);
if (c = = '=') {
tmp . token_type = EQEQ;
} else if (c = = ' <') {
tmp . token_type = EQLT; }
else if (c = = '>') {
tmp . token_type = EQGT; } else
tmp . token_type = ERROR;
return tmp;
default:
tmp . token_type = ERROR;
return tmp;
1. In the code, input.GetChar() gets the next character from standard input. If GetToken() is called four times, which of the following inputs will return a token whose type is ERROR?
A. ========
A. =<======
B. ===>====
C. =====<==
D. ======<=
2. If GetToken() is called four times on input <==<==, how many times is ERROR returned?
a. 0
b. 1
c. 2
d. 3

Answers

Answer:

return tmp;

default:

tmp . token_type = ERROR;

return tmp;

1. In the code, input.GetChar() gets the next character from standard input. If GetToken() is called four times, which of the following inputs will return a token whose type is ERROR?

A. ========

A. =<======

B. ===>====

C. =====<==

D. ======<=

If GetToken() is called four times, ======<= will be the error. The correct option is D.

What is error?

Error is a user-performed illegal action that causes the application to operate abnormally.

Programming mistakes frequently go unnoticed until the program is compiled or run. A few of the errors prevent the program from being built or run.

A bug is a mistake, fault, or flaw in any hardware device or computer software. A bug causes an unexpected system behavior or unexpected results.

Each time GetToken() is used, the following occurs: The input is read to read a character. There are two choices: In this instance, we read the following character, which is =.

When invoking GetToken() for the first time, line 2's input getChar(c) will accept the input =, resulting in the storage of "=" in c.

If GetToken() is called four times on input <==<==, the error will return 2 times.

Thus, the correct options are D and C respectively.

For more details regarding error, visit:

https://brainly.com/question/17101515

#SPJ5

Write a script named dif.py. This script should prompt the user for the names of two text files and compare the contents of the two files to see if they are the same.

Answers

Answer:

first = input("enter first file name: ")

second = input("enter second file name: ")

file_one = open(first, 'r')

file_two = open(second, 'r')

if file_one.read() == file_two.read():

   print("Both files are the same")

else:

   print("Different files")

file_one.close()

file_two.close()

Explanation:

The python module above is a procedural program. The first two lines ask for user inputs for both file names in string, then the files are opened and compared with the if-statement. At the end of the program, the files are closed to avoid leakage.

80billion +2 TRILLION . PLEASE AWNSER

Answers

Answer:

two trillion eighty billion

Explanation:

g00gle is my best friend

During Globalization 2.0, there was a huge overinvestment in: Question 10 options: 1) telecommunications infrastructure 2) computing hardware 3) robots 4) machinery

Answers

Answer: 1) telecommunications infrastructure

Explanation:

Globalization 2.0 came after the second world war at a time where the world was yarning for opportunities that would connect it better.

They turned to telecommunications infrastructure and invested heavily into it to carry messages from one part of the globe to the other. This led to a fall in telecommunications cost and a rise in new technologies like the mobile phone.

You’ve found the file you’ll be working with. Next, you decide to move

Answers

wait what, I’m confused

what should you do if your computer is running slower

Answers

Answer:

Update system and files. Also delete unnecessary apps taking space

HTML coding tells a computer what to do by using a series of?

Answers

Answer:

Elements

Explanation:

A computer code acts as a medium by which a person can communicate with the computer machine.

One such language is known as HTML or hypertext markup language.  HTML stands for Hypertext markup language which is used to markup the language for web pages in computer.

The HTML series consists of a series of elements which are enclosed in the tags commonly called start tag and a stop tag.

Example <head>  

here,  

the head is a series of elements.

< start-tag

> stop-tag

Thus, element is the correct answer.

You can find synonyms and disciplinary jargon in the ______, _______, and ______ in your search results. You can then use these as keywords in additional searches.

Answers

Answer:

1. Title

2. Abstract

3. Subject Headings

Explanation:

To carry out a project or research survey, a researcher needs an appropriate title that satisfies the technical keywords relating to the content and expected outcome of the research.

Hence, in this case, to find an appropriate title for a research survey "You can find synonyms and disciplinary jargon in the TITLE, ABSTRACT, and SUBJECT HEADINGS in your search results. you can then use these as keywords in additional searches."

Data type for a Subject ID​

Answers

Answer:

An integer.

Explanation:

A subject ID is most commonly an integer.

The price of an item you want to buy is given in dollars and cents. You pay for it in cash by giving the clerk d dollars and c cents. Write specifications for a function that computes the change, if any, that you should receive. Include a statement of purpose, the preconditions and postconditions, and a description of the arguments.

Answers

Answer:

Get the actual price of the item and convert it to cents, also get and convert the amount paid to cents.

subtract the actual price of the item from the paid amount ( which is in cents), if the result is greater than zero, covert the result back to dollars and output the result.

Explanation:

The program converts the actual price of the item and the amount paid to cents (where a dollar is equal to 100 cents). The variables are subtracted to get the change to be refunded, the result is converted back to dollars as the actual change to be paid.

Select the correct answer.
Tablets combine the features of which two types of devices?
A.
phones and computers
B.
handhelds and consoles
C.
handhelds and phones
D.
handhelds and computers

Answers

Answer: A. phones and computers

Explanation:

A tablet, is referred to as a mobile computing device which utilizes the touchscreen as the main input device that it has.

Tablets are usually bigger than a mobile phone but smaller than a computer. You can perform thesame function that you can do on your mobile phone or the computer on the tablet.

One can surf the net, play games and watch videos on the tablet.

What are some of the issues that create conflict in the future and why?

Answers

111111111111111111111

Which of the following is correct regarding Memory-Mapped I/O?
Select one:
a. Memory-Mapped I/O is more complex and inflexible in handling I/O operations.
b. The same memory reference instructions (read/write) can be used for I/O transfers. c. There are separate input and output instructions to handle I/O data transfers.
d. There is a separate memory and I/O address space.
e. The available memory address space is larger when using Memory-Mapped I/O.

Answers

Answer:

MSP430

Explanation:

MSP430 devices have up to 12 digital I/O ports implemented. Each port has eight I/O pins. Every I/O pin can be configured as either input or output, and can be individually read or written to. Ports P1 and P2 have interrupt capability. MSP430F2xx, F5xx and some F4xx devices feature built-in, individually configurable pull-up or pull-down resistors.

Identify the selector in the following CSS code:

h3 {
color: orange;
font-size: 12 px;
}

A.
h3
B.
color
C.
font-size
D.
px

Answers

Answer:

The right answer is: Option A. h3

Explanation:

The purpose of using selectors in CSS is to find the elements in the HTML page to which the formatting will be applied.

Different type of selectors are used in CSS.

In the given code, h3 is the selector.

All the <h3> elements on the page will be of orange color and will have font size 12.

Hence,

The right answer is: Option A. h3

it is where the home tab is located where you can view all the all the formatting purpose

Answers

Answer:

Its Ribbon

Explanation:

The Ribbon is located close to the top of the Word window. The Ribbon is organized into a set of task-oriented tabs, and each tab on the Ribbon contains groups of commands. The Home Tab contains the most frequently used commands in Word. To get to another tab on the Ribbon click that particular tab.

Btw Correct me if i am wrong

What occurs during the mail merge process? Place the steps in the correct order. Create the main document preview, print, or email document insert merge fields connect to a data source specify which records to include

Answers

Answer:

Create the main documentConnect to a data sourceSpecify which records to include Insert merge fieldsPreview, print, or email document

Explanation:

A Mail merge is a process in Microsoft office that allows one to be able to send a large number of customized messages to different people by using information that was inputted in a database in Excel or Access for instance.

The process requires that one creates a main document first and then connect that main document to a data source. After this is done one needs to specify exactly which record they hope to include to be merged and then insert the merge fields. You can then preview the documents before emailing or printing them.  

Answer:

Create the main document

Connect to a data source

Specify which records to include

Insert merge fields

Preview, print, or email document

Explanation:

Which statement describes what the Conditional Formatting option in Excel 2016 allows users to do?

Answers

Answer:

It automatically applies formatting based on specific rules or conditions being met. It automatically applies highlighting to selected cell ranges based on specific rules or conditions being met.

Explanation:

Answer:

D. All of the options listed are correct.

Explanation:

Edg. 2021

Which devices are likely to include a computer? Select 3 options.

cell phone
toaster
ATM cash machine at the bank
lawnmower
GPS mapping device

Answers

Answer:

Cell Phone, ATM Cash Machine, and a GPS Mapping Device

Answer:

Right answers:

ATM cash machine at the bank GPS mapping deviceCell phone

Explanation:

Edge 2022

11) A single inheritance model means: * A) A class can only have one parent class (superclass) B) A class can only have one child class (subclass) C) A class cannot have a parent class (superclass) D) A class cannot have a child class (subclass) E) A class can have multiple parent classes (superclasses)

Answers

Answer:

The correct answer is Option A (A class can only have one parent class (superclass))

Explanation:

The inheritance model is a computer program used in Javascript. This model aimed to make code that has been programmed already still relevant to be used again at any time minimizing errors associated with typing a new code. Inheritance  makes the attributes of a particular class valid while still possible to use the attributes of another class.

A child class (subclass) inherits from the parent class (superclass). So, it is a single inheritance once the child class (subclass) inherits from a single parent class (superclass) creating a subclass. A parent class (superclass) is the class that gives its attributes for inheritance.


What is an example of a free online library?
A. Duck Duck Go
B. Project Gutenberg
C. Bing
D. PubMed

Answers

The answer is b
Hope it helps



B project GUTENBERG!!!!!!
:) brainliest?

What is it called when a additional document is added to an email

Answers

A new data to save last chest

Answer:

I believe it's an attachment.

Explanation:

Other Questions
Evaluate when f(-3) and f(7)f(x) = {3x-1,tfx>4 {2x,tfx A park is rectangular with a length of 1/2 miles. If the area of the park is 6/8 square miles, what is its width? Input your answer as a fraction.giving 40 points! please help soon (6.MS-ETS2-1(MA).) The electrons in __________ move about more freely than the electrons in insulators which is why this type of material can be used to create electric circuits.A) conductorsB) insulatorsC) magnets 1800 yards per hour is the same rate as which of the following? A. ____ yards per second B. _____ yards per minute Read the sentence.A person must be at least sixteen years old to obtain a drivers license.Which detail follows logically from the big-picture idea in this sentence?Doug, who drove a car yesterday, is more than sixteen years old.Hannah, who rides a bike, does not have a drivers license. Antonio, who has a drivers license, is at least sixteen years old.Felicia, who does not have a car, does not have a drivers license. what is the x intercept of x+ 7y = 35 Why did the founders limit government in this way?To prevent any one level of government from becoming stronger than the otherTo specify checks on powers for each branch of government.To divide the power and responsibility between national and state governments.To protect the nation against tyranny by separating the powers of government. it is the process of enabling people to increase control and to improve their health. plss pls pls help and pls show ur work what is -12.41 as a fraction and it has to be in simplest form asap please help Espaol en el mundo In this activity, you will write a travel blog post in Spanish describing a trip that you have taken in the past. Include both past tenses, the imperfecto and the pretrito. Use vocabulary related to travel. Submit the response to your teacher.(I live in California) thank you if u helped 4.List any five advantages that we can have at conserving our socio-culturalcustoms at local levels. which BEST explains why Mowgli's decision to cause the herd of buffalo to trample shere khan is the climax of the story I NEED THIS FASTA all od Mowgli's conflict and problems are resolved.B the tension of the confict between the two has been building, and this action is a turning point,D it is the frist time the reader understands what Mowgli is feeling.C the action demonstrates that Mowgli is the protagonist of the story Answer first and I will mark brainliest How is temperature related to the motions of molecules? Why are ions charged particles? A tennis racket that cost $79 is now on sale for $83. What is thepercent of change? True/False: Alexander Hamilton was the first Secretary of Defense. How can recycling impact the environment? A) It uses less energy to make something from recycled materials than from new materials. B) It increases the amount of landfill space needed. C) It uses more natural resources than new materials do. D) It increases the need for mining, creating jobs. The columns in the periodic table are called groups. What do the elements in Group 17 have in common