6. Which of the following is the common measurement of unit of computer memory? (a) IQ (b) Byte (c) Terabyte (d) Gigabyte ​

Answers

Answer 1

Answer:

(b) Byte

Explanation:


Related Questions

using the resources available in your library, find out what laws your state has passed to prosecute computer crime.

Answers

The laws my state has passed to prosecute computer crime is Information Technology ACT, 2002 - It is known to be the law that stated that it will deal with cybercrime as well as electronic commerce in all of India.

What are Cybercrime?

Cybercrime is known to be a type of a crime that entails the use of a computer as well as a network.

Note that the computer is one that can or have been used in the commission of any kind of crime, or it one that is said to be under target. Cybercrime is a type of crime that can harm a person's security as well as their financial health.

Therefore, based on the above, The laws my state has passed to prosecute computer crime is Information Technology ACT, 2002 - It is known to be the law that stated that it will deal with cybercrime as well as electronic commerce in all of India.

Learn more about computer crime from

https://brainly.com/question/13109173

#SPJ1

how to move the text in computer​

Answers

Answer:

to move text selected test click on the cut icon from home tab put the cursor where you want to play the selected text click on paste icon from home tab

When a user interface is created in the window editor, the ide automatically generates the ________ needed to display each component in the window.

Answers

The ide automatically creates the graphical user interface required to display each component in the window when a user interface is built in the window editor. A system of visual, interactive components for computer software is known as a GUI (graphical user interface).

A graphical user interface presents information-conveying and action-representative items for the user to interact with. The objects change color, size, or visibility when the user interacts with them. In 1981, Alan Kay, Douglas Engelbart, and a handful of other researchers created the graphical user interface for the first time at Xerox PARC.

Learn more about graphical user interface https://brainly.com/question/14758410

#SPJ4

When an event occurs, the agent logs details regarding the event. what is this event called?
a. mib
b. get
c. trap
d. oid

Answers

If an event occurs, the agent logs details regarding the event. what is this event called GET.

The information in the agent log file is known to be the beginning of the log file, which is stated to show the agent's launch and handling of the services and configuration settings.

Keep in mind that the agent log also contains a history of the activities performed by the agent during runtime, along with any errors, and that it is utilised to investigate deployment issues.

As a result, if an event happens, the agent logs information about it. What is this GET event, exactly?

The agent monitoring services' startup and configuration settings are displayed at the log file's beginning. The sequence of agent runtime activity and any observed exceptions are also included in the agent log.

Learn more about agent logs:

https://brainly.com/question/28557574

#SPJ4

The series of steps that describe exactly what each portion of a program is supposed to do is known as a(n)?

Answers

The series of steps that describe exactly what each portion of a program is supposed to do is known as an Algorithm.

What is algorithm and how it works?

An algorithm is known to be a kind of a coded formula that is said to be written into software and it is one if triggered can make the tech to take some  action to handle a problem.

Note that Computer algorithms work through the use of input and output and as such, The series of steps that describe exactly what each portion of a program is supposed to do is known as an Algorithm.

Learn more about Algorithm from

https://brainly.com/question/15802846
#SPJ1

Write a split_check function that returns the amount that each diner must pay to cover the cost of the meal. the function has 4 parameters:

Answers

The function has 4 parameters:

def split_check(bill, people, tax_percentage = 0.09, tip_percentage = 0.15):

  tip = bill * tip_percentage

  tax = bill * tax_percentage

  total = bill + tip + tax  

  return total / people

bill = float(input())

people = int(input())

print("Cost per diner: " + str(split_check(bill, people)))

bill = float(input())

people = int(input())

new_tax_percentage = float(input())

new_tip_percentage = float(input())

Create a function named split check that takes four parameters, bill, persons, tax percentage and tip percentage (last two values are optional) (last two parameters are optional)

Use the percentages to compute the tip and tax inside the function. Add the bill, the tip, and the tax to get the final amount. The cost per person is then calculated by dividing the amount by the number of people.

Learn more about parameters:

https://brainly.com/question/28249912

#SPJ4

some programmers dislike return statements in the middle of a method. it is always possible to restructure a method so that it has a single return statement. rearrange the following lines of code to produce such a version of the firstspace method of the preceding exercise.

Answers

Using the knowledge in computational language in JAVA it is possible to write a code that produce such a version of the firstspace method of the preceding exercise.

Writting the code:

import java.util.Scanner;

public class FindSpaces

{

   

   

   public static int firstSpace(String str)

   {

       boolean found = false;

       int position = -1;

       for(int i = 0; !found && i < str.length(); i++)

       {

           char ch = str.charAt(i);

           if(ch == ' ')

           {

               position = i;

               found = true;

           }

       }  

       return position;

   }

   

   public static void main (String[]args)

   {

       Scanner in = new Scanner (System.in);

       String inputStr = in.nextLine ();

       int firstSpacePosition = firstSpace (inputStr);

       System.out.println (firstSpacePosition);

   }

}

See more about JAVA at brainly.com/question/12975450

#SPJ1

Modifier __________ reports when an anesthesiologist is medically directing one crna.

Answers

Modifier QY reports when an anesthesiologist is medically directing one CRNA.

What is Anaesthesia?

This refers to the medical process where there is an induced loss of sensation in a body part, usually in preparation for surgery.

Hence, we can see that Modifier QY reports when an anesthesiologist is medically directing one CRNA and this is because it is the medical direction of one qualified nonphysician anesthetist by an anesthesiologist.

Therefore, the use of modifier Q is important as it makes a report when an anesthesiologist is medically directing one CRNA.

Read more about anaesthesia here:

https://brainly.com/question/9918511

#SPJ1

Protection against active attacks (falsification of data and transactions) is known as?

Answers

Answer:

Message authentication.

Explanation:

Develop the IPO chart to calculate the area of a Triangle

Answers

The IPO chart to calculate the area of a Triangle is given below:

The Formula

at=area of triangle

b=Bredth ,h=height.

Formula=0.5×b×h.

Algorithm:

-Step 1:-Start.

Step 2:-Declare at,b,has float.

Step 3:-Initialize value of b and h.

Step 4:-Calculate at 0.5×b×h.

Step 5:-print area of triangle .

Step 6:-End.

Read more about algorithms here:

https://brainly.com/question/13800096

#SPJ1

1)write a python program to check wheter the given number is even or odd
2) write a python program to add any 5 subjects makrs, find sum and average (average=sum/5)
3)write a python program to print numbers from 1 to 100 using loops

Answers

Answer:

n = 16

if n%2:

 print('{} is odd'.format(n))

else:

 print('{} is even'.format(n))

m1 = 5

m2 = 4

m3 = 6

m4 = 8

m5 = 9

sum = m1+m2+m3+m4+m5

average = sum/5

print("The sum is {}, the average is {}". format(sum, average))

for i in range(1, 101): print(i, end=",")

Explanation:

Above program does all three tasks.

Answer:

1) num1 = int(input("Enter the number to be checked: "))

if num1%2==0:

   print("Your number is an even number!")

else:

   print("Your number is not even!")

2) maths = int(input("Enter your maths mark: "))

english = int(input("Enter your english mark: "))

social = int(input("Enter your social mark: "))

science = int(input("Enter your science mark: "))

computer = int(input("Enter your computer mark: "))

Sum =  maths + english + social + science + computer

average = Sum / 5

print("Sum of your marks are:",Sum)

print("average of your marks are:",average)

3) num = 0

while num <= 99:

   num+=1

   print(num)

Explanation:

Welcome.

montague e, xu j. understanding active and passive users: the effects of an active user using normal, hard and unreliable technologies on user assessment of trust in technology and co-user. applied ergonomics 2012; 43:702–712.

Answers

The purpose of this study was to comprehend how, in various technological environments, passive users judge the reliability of active users and technologies.

An experiment was created to change how various technologies operated as active people interacted with them and passive users watched them. The technology and partner were rated by both active and passive users.

Exploratory data analysis indicates that passive users formed opinions on technologies based on how they worked and how active users engaged with them.

The results of this study have significance for how technologies should be designed in settings where active and passive users engage with technology in various ways. Future research in this area needs to examine strategies that improve affective involvement and trust calibration.

Learn more about active and passive:

https://brainly.com/question/22600158

#SPJ4

The complete question is'' what are the effects of an active user using normal, hard and unreliable technologies on user assessment of trust in technology and co-user''

Data communications and networking can be considered as a global area of study because:_______.

Answers

Answer: Networks and Communication run the world (I.e., Everything on a computer or non-person communication is driven over a computer network)

Explanation:
Data communications is literally the basis of computer networks by using advanced mathematics and agreed upon computational standards that allow for communication between others via phone, computer, radios, etc. The creation of systems that allow the data communications are contained in network devices and a collection of networking applications create the network. Some real world examples of this can be seen in cellular carriers like Verizon, TMobile, and AT&T. Their whole businesses are built on ensuring data communications can be had in a wireless and accessible way for end users across their networks. And for instance if you talk to people across states or across countries, you are indeed traversing a global area. There will always be a need for data communication and networking to ensure everyone can continue to communicate with one another electronically.

Cheers.

A programmer is developing software for a social media platform. The programmer is planning to use compression when users send attachments to other users. Which of the following is a true statement about the use of compression?

A. Lossy compression of an image file generally provides a greater reduction in transmission time than lossless compression does.
B. Lossless compression of an image file will generally result in a file that is equal in size to the original file.
C. Sound clips compressed with lossy compression for storage on the platform can be restored to their original quality when they are played.
D. Lossless compression of video files will generally save more space than lossy compression of video files.

Answers

A true statement about the use of compression is Lossy compression of an image file generally provides a greater reduction in transmission time than lossless compression does.

What is Compression?

This refers to the process of modifying, encoding or converting the bits structure of data to use less space.

Hence, we can see that A true statement about the use of compression is Lossy compression of an image file generally provides a greater reduction in transmission time than lossless compression does.

Read more about data compression here:

https://brainly.com/question/17266589

#SPJ1

Name the piece of hardware found in a tablet computer that is both an input and output device.

Answers

Answer:

The screen.

Explanation:

You interact with the tablet via the screen and it displays information.

the information mis infrastructure supports the day-to-day business operations and plans for multiple choice security breaches and theft. all of the answer choices are correct. malicious internet attacks. floods and earthquakes.

Answers

The information MIS infrastructure supports the day-to-day business operations and plans for: D. All of the above.

What is an information system?

An information system (IS) can be defined as a collection of computer systems and Human Resources (HR) that is used by a business organization or manager to obtain, store, compute, and process data, as well as the dissemination (communication) of information, knowledge, and the distribution of digital products from one location to another.

What is MIS?

In Business management, MIS is an abbreviation for marketing intelligence system and it can be defined as a type of information system (IS)  which is designed and developed to uses both informal and formal information-gathering procedures to obtain strategic information from the marketplace.

In conclusion, the information MIS infrastructure generally supports the daily business operations and plans for:

Security breaches and theft.Floods and earthquakes.Malicious internet attacks.

Read more on marketing intelligence system here: brainly.com/question/14951861

#SPJ1

Complete Question:

The information MIS infrastructure supports the day-to-day business operations and plans for ____________.

A. Security breaches and theft

B. Floods and earthquakes

C. Malicious internet attacks

D. All of the above

suzanne’s at 2 inches per week suzanne’s at 1.5 inches per week megan’s at 3 inches per week megan’s at 2.5 inches per week

Answers

Based on the above, the plant that grew at a faster rate would be Megan’s at 2.5 inches per week.

What is the growth rate about?

The term growth rates is known to be one that is often used to show the annual alterations in a variable.

Note that:

Megan's rate = 12 - 4.5 / 4 -1

= 2.5 inches per week

Suzanne's rate = 11 - 5 / 4-1

= 0.5 inches per week

Based on the above,, the plant that grew at a faster rate would be Megan’s at 2.5 inches per week.

Learn more about growth rate from

https://brainly.com/question/2480938

#SPJ1

Megan and Suzanne each have a plant. They track the growth of their plants for four weeks. Whose plant grew at a faster rate, and what was the rate? Suzanne’s at 2 inches per week Suzanne’s at 1.5 inches per week Megan’s at 3 inches per week Megan’s at 2.5 inches per week

the internet of things (iot) is a world where interconnected, internet-enabled devices or "things" can collect and share blank without human intervention.

Answers

The  internet of things (iot) is a world where interconnected, internet-enabled devices or "things" can collect and share blank without human intervention is a true statement.

What is Internet of Things explain?

The Internet of Things (IoT) is known  to be a term that connote a kind of a network that is made up of physical objects which are said to be embedded with  things such as sensors, software, as well as  other forms of technologies.

They are known to be mad for the purpose of linking as well as exchanging data with other kinds of devices and systems over the use of internet.

Therefore, The  internet of things (iot) is a world where interconnected, internet-enabled devices or "things" can collect and share blank without human intervention is a true statement.

Learn more about internet of things from

https://brainly.com/question/19995128

#SPJ1

the internet of things (iot) is a world where interconnected, internet-enabled devices or "things" can collect and share blank without human intervention. True/false

What are two problems that can be caused by a large number of arp request and reply messages?

Answers

The two problems that can be caused by many ARP requests and reply messages are if switching is slowed down by a lot of ARP request and reply messages, the switch may have to alter its MAC table a lot and the other one is the ARP request will overwhelm the entire subnet because it is transmitted as a broadcast.

What is ARP?

Address Resolution Protocol is referred to as ARP. The system must translate an IP address into a MAC address before someone can ping an IP address to their local network. The user will need to use ARP to resolve the address in order to accomplish this.

There are some other problems that can be caused by many ARP request and reply messages are :

Because they focus all the traffic from the associated subnets, switches get overloaded.All nodes on the local network must process each and every ARP request message.ARP reply messages have a huge payload because of the 48-bit MAC address and 32-bit IP address that they include, which could cause the network to become overloaded.

To get more information about ARP :

https://brainly.com/question/12975431

#SPJ1

A ________ is a small message box that displays when the pointer is placed over a command button.

Answers

An enhanced ScreenTips is a small message box that displays when the pointer is placed over a command button.

What are ScreenTips?

ScreenTips is known to be a term that connote a small windows that shows any kind of descriptive text if a person place the pointer on a command or on a control.

Note that Enhanced ScreenTips are found to be bigger windows that shows a lot of descriptive text than a ScreenTip.

Therefore, An enhanced ScreenTips is a small message box that displays when the pointer is placed over a command button.

Learn more about ScreenTips from

https://brainly.com/question/26677974

#SPJ1

The number ____ is the standard dots per inch used for blogs, social media, webpages, and emails.

That question is for my photography class.

Answers

Answer:

72 dpi

Explanation:

72 DPI is standard for social media posts and others. It is not 300 DPI which is standard for print.

The standard dots per inch (DPI) used for blogs, social media, webpages, and emails can vary depending on the specific platform and device.

A common standard for these digital mediums is 72 DPI.

DPI refers to the resolution or sharpness of an image on a digital display. A higher DPI means more dots or pixels per inch, resulting in a clearer and more detailed image. On the other hand, a lower DPI means fewer dots per inch, resulting in a less sharp image.

For digital content displayed on screens, a DPI of 72 is often used because it strikes a balance between image quality and file size. This resolution is considered sufficient for viewing images online without causing excessive loading times or using excessive bandwidth.

It's important to note that when printing physical copies, a higher DPI is generally recommended to achieve better print quality. In print media, resolutions like 300 DPI are commonly used to ensure sharp and detailed prints.

Know more about dots per inch,

https://brainly.com/question/32108345

#SPJ3

A(n) ______ bus is used to transfer information about where the data should reside in memory.

Answers

A School bus.......

after developing a model, many case tools can generate program code, which impedes and slows down the implementation process.

Answers

The given statement that is after developing a model, many case tools can generate program code, which impedes and slows down the implementation process is false.

In computing, code generation is a step in the compiler's workflow that transforms intermediate representations of source code into forms that can be easily executed by the target system, such machine code. Multiple passes are frequently carried out by sophisticated compilers on various intermediate forms.

To begin writing in code, reverse-write the message you wish to communicate. Add a letter and a number between each letter in your original message after that. Your message will appear to everyone else as a collection of random characters and digits.

Tools that write code for you are called code generators. It's a really cool method for handling repetitious programming issues that can't be resolved by creating an abstraction.

Learn more about program:

https://brainly.com/question/26134656

#SPJ4

The default output of a command is displayed on the?

Answers

Answer:

It is displayed on the console or screen.

a complete model of the skeleton that could be useful for all practical applications would b a dissected human a dissected human a 3d computer generated model a 3d computer generated model such a model is impossible such a model is impossible a 2d computer generated model

Answers

A complete model of the skeleton that could be useful for all practical applications would be: C. such a model is impossible.

What is a model?

A model can be defined as the creation of a physical object either from kits, components or other applicable materials that are acquired by the builder, so as to simulate a phenomenon or process.

This ultimately implies that, a model should be probabilistic in nature rather than being perfect, so as to effectively illustrate or describe the relationship that is existing between an independent variable and the dependent variable.

Generally, some of the ways in which models cannot be useful include the following:

Building intuition for situations.Useful for all practical applications.Making predictions that can be verified.

In this context, we can reasonably infer and logically deduce that a complete model of the skeleton that could be useful for all practical applications would be impossible.

Read more on models here: https://brainly.com/question/27844970

#SPJ1

Complete Question:

A complete model of the skeleton that could be useful for all practical applications would be

A. a 3D computer generated model

B. a 2D computer generated model

C. such a model is impossible

D. a dissected human

Answer:

C. Some translation work will require a human being instead of a computer.

Explanation:

kate decides to download an extension to her favorite browser to quickly store links on her spreadsheet software. while downloading the software, she ignores the opt-out check box that allows the extension to download a search toolbar.

Answers

Since Kate has decides to download an extension to her favorite browser to quickly store links on her spreadsheet software. the situation that has occurred here is the fact that option d: She has installed PUPs (potentially unwanted programs).

What is a potentially unwanted program (PUP)?

The term known as a potentially unwanted program (PUP) is known to be a kind of a program that is known to not be needed that is they are unwanted.

Even if there is the possibility that users are known to be consented to download it, the  PUPs is known to be made up of spyware, adware as well as dialers, and they can be downloaded in line  with a program that a given user wants.

Therefore, Since Kate has decides to download an extension to her favorite browser to quickly store links on her spreadsheet software. the situation that has occurred here is the fact that option d: She has installed PUPs (potentially unwanted programs).

Learn more about potentially unwanted programs from

https://brainly.com/question/25091456

#SPJ1

Kate decides to download an extension to her favorite browser to quickly store links on her spreadsheet software. While downloading the software, she ignores the opt-out check box that allows the extension to download a search toolbar.

What has occurred here?

a.

Kate has installed an injection.

b.

Kate has installed a backdoor.

c.

Kate has installed a Trojan.

d.

Kate has installed a potentially unwanted program (PUP).

When packets arrive at their destination at different speeds, they sometimes arrive out of order. what does this cause?
a. jitter
b. latency
c. dropped packets
d. error rates

Answers

What cause based on the question is a. Jitter. Jitter is the variation in time between arriving data packets, caused by network congestion, or route changes. The longer the data packet is sent, the more jitter will affect the audio and network quality.

Standard jitter measurement in milliseconds (ms). If you receive a jitter higher than 15-20ms, it can increase latency and result in packet loss, causing a decrease in audio quality. Symptoms of jitter include:

Audio is intermittent Call pending or disconnectedStatic, intermittent, or garbled audio

If the test results show the Jitter rating is higher than 15-20ms, there is most likely a problem with the Internet Service Provider (ISP). If the test cannot be plugged directly into the modem, the ISP should be able to run the test. If they run into a jitter problem in the end, they should be able to solve it.

Learn more jitter https://brainly.com/question/13661659?

#SPJ4

A(n) _____ is a framework for describing the phases of developing information systems.

Answers

Systems development life cycle also known as SDLC

Type the correct answer in the box. Spell all words correctly.

George is creating a professional presentation for his client and wants to add his company’s logo, some images, and a video of his manufacturing unit into a slide. Which parts of the slide layout should he use?

George must use the [ ? ] of the slide layout to insert the company logo, images, and the video into his slide.

Answers

George must use the media of the slide layout to insert the company logo, images, and the video into his slide.

What is a slide?

A slide can be defined as a single page of a presentation that is made up of text-based information or images, which can be used to teach and educate an audience on a subject matter.

What is a slide layout?

In Computer technology, the slide layout feature of a presentation software’s interface such as Microsoft PowerPoint, can be used to insert two or more tables, logo, images, and the video in a slide and format the text on all slides.

In this scenario, George must use the media of the slide layout to insert the company logo, images, and the video into his slide.

Read more on slides here: brainly.com/question/7019369

#SPJ1

What is the term for the process of giving computers instructions about what they should do next? (1 point)

A. Programming

B. Step-by-step

C. Developing

D. Scheduling

Answers

It’s programming, that gives the set of instructions to the computer, it’s the computers way of understanding what a human wants the computer to do
Other Questions
Describes long term ecological stability and human progress and defines whether a process can be continued indefinitely. How many nucleoside triphosphate molecules does gluconeogenesis consume to make one glucose? group of answer choices 5 2 1 6 4 Use the inverse of the coefficient matrix to solve the system of equations.x+2y+3z = 11 2x+3y+4z = -10 x4y8z = 66 I need a poem with the word ( if ) in it. that's it!! If you change the shutter speed on a video camera from 1/1000 to 1/2000, you would need to _____ in order to keep the same exposure. Emission and absorption line spectra both provide evidence for which of the following:a. the existence of isotopesb. the existence of energy levels within the atomc. the existence of sub-atomic particlesd. the existence of ions Helpppppppl ur gurlll out Trees in this biome lose their leaves in the fallA. taigaB.savannaC. grasslandD.temperate decidious forest Can you please help me? Which of these writers influenced Jane Austens work? PLS HELP IMMA DIEJafari and adana are giving their dog a bath. The label on the shampoo bottle recommends a ratio of 1/6 of shampoo to water. what percent of the bath needs to be shampoo? You are the ceo of a large scanner manufacturer. you just caught a department manager embezzling money from your company. the decision you make about whether to fire the department manager is a? 7th GRADE SCIENCE QUESTION PLEASE ANSWER AS FAST AS YOU CAN I NEED IT (it can be 1 day late is fine... Ok I'll give you today like this minute and you can answer it when it is posted about 1-2 days but if you can answer it now that will be great)!!!Question #1: State the role of a nucleus in a cell. the nurse is performing bilateral comparison of pulse sites for strength and quality instead of counting the beats per minute. which pulse locations will the nurse palpate to gather this assessment data? select all that apply. Perhaps the most universally useful strategy in capturing your reader's attention is to:________ Evaluate 4 - 2(a - 3) for a=5 The right triangle drawn on the road sign is 10 inches high. If the base of the right triangle is 5 inches, what is thearea of the right triangle formed in the sign?O 48 sq.in.O 64 sq.in.O 25 sq.in.O 36 sq.in. What is the net ionic equation forthe reaction below?MnS(s) + HSO4 (aq) MnSO4 (aq) + HS(g) The weather report predicted that the low temerature would be 93 degrees farenheit. The weather man said , "The low temperature was 13 degrees warmer than predicted!'' What was the low temperature, in degrees Farenheight? the hats of n persons are thrown into a box. the persons then pick up their hats at random (i.e., so that every assignment of the hats to the persons is equally likely). what is the probability that (a) every person gets his or her hat back?