write a python program that counts the number of odd numbers, even numbers, squares of an integer and cubes of an integer from 2 to 130 (inclusive). for example, 9 is both odd and a square, 8 is even and a cube. use constants to set the beginning and ending of the range. for output, print a title with the total range. for odd and even, print the totals and the range of the numbers in scope. for squares and cubes, print the totals and a list of the numbers that meet the criteria nothing printed should be hard coded

Answers

Answer 1

Answer:

numbers = (2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19.20,21,22,23,24,25,26,2,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130)

count_odd = 0

count_even = 0

for x in numbers:

       if not x % 2:

         count_even+=1

       else:

         count_odd+=1

print("Number of even numbers :",count_even)

print("Number of odd numbers :",count_odd)

Explanation:

What is a python program?

Python is a popular computer programming language used to create software and websites, automate processes, and analyze data. Python is a general-purpose language, which means it may be used to make many various types of applications and isn't tailored for any particular issues. Python provides three different paradigms for programming.

paradigms for object-oriented programming.paradigms for procedure-oriented programming.paradigms for functional programming.

You can use Python for web processing, machine learning, and even biology due to the more than 125,000 third-party modules that are now available. It is favored in data analysis because, with its data-focused modules like pandas, NumPy, and matplotlib, it is very skilled at processing, manipulating, and visualizing data.

To learn more about python, refer:

https://brainly.com/question/28691290

#SPJ4

Answer 2

count_odd = 0

count_even = 0

for x in numbers:

      if not x % 2:

        count_even+=1

      else:

        count_odd+=1

print("Number of even numbers :",count_even)

print("Number of odd numbers :",count_odd)

Python program :

      Python is a general-purpose, high-level programming language. Its design philosophy prioritises code readability by employing significant indentation. Python is garbage-collected and dynamically typed. It is compatible with a variety of programming paradigms, including structured, object-oriented, and functional programming. Python is a programming language that supports multiple paradigms. Object-oriented and structured programming are fully supported, and many of its features support functional and aspect-oriented programming as well. Many other paradigms, such as design by contract and logic programming, are supported by extensions.

           Python manages memory using dynamic typing and a combination of reference counting and a cycle-detecting garbage collector. It employs dynamic name resolution, which binds method and variable names while the programme is running. Python is designed to be a simple language. Its formatting is clean and uses English keywords where other languages use punctuation. It does not use curly brackets to delimit blocks, and semicolons after statements are permitted but rarely used. There are fewer syntactic exceptions and special cases in it than in C or Pascal.

To learn more about Python refer :

https://brainly.com/question/26497128

#SPJ4


Related Questions

Taylor, Catherine, and Naomi all made
inventions that improved people's
. They all protected.
their inventions by getting a

Answers

Taylor, Catherine, and Naomie all invented things that helped people's health.They all protected their inventions by getting a solution.

What do you mean by an invention?

A unique or novel device, method, composition, idea, or process is defined as an invention. An invention can be an enhancement to a machine, product, or process that increases efficiency or reduces costs. It is possible to patent an idea if it is distinct enough, either as a stand-alone invention or as a significant improvement over the work of others. If granted, a patent grants the inventor a proprietary interest in the patent for a set period of time, which can be licenced for monetary gain.

To learn more about invention

https://brainly.com/question/17931211

#SPJ13

Iuanyware is a ________ application that is designed to run within a computer browser such as firefox, chrome, opera, or edge.

Answers

What is meant by IUanyWare?

Iuanyware is a service application that is designed to run within a computer browser such as firefox, chrome, opera, or edge.

What is meant by IUanyWare?

All IU staff, faculty, and students have access to IUanyWare. You may stream the IU-licensed apps and software you need from anywhere, on any device, without having to download, install, or utilize a VPN for each one.

While IUanyWare enables you to stream your program from a web browser or mobile app, IUware lets you install software straight to your hard drive.

Iuanyware is a service program made to function inside of a web browser like Firefox, Chrome, Opera, or Edge.

IUanyWare exists a service available to all staff, faculty, and students at IU. No matter where you exists or what device you're utilizing, you can stream the IU-licensed apps and software you required— without containing to install each one or utilize a VPN.

To learn more about IUanyWare refer to:

brainly.com/question/17493537

#SPJ4

App developers often work with marketing firms to figure out what consumers want and need. In your opinion, what need or want are today’s app developers failing to meet? How could you use analytical skills to help identify and meet that need or want?

Answers

App developers often work with marketing firms to figure out what consumers want and need. In my opinion, the need or want today’s app developers fail to meet is the need to be very professional, and keep to project delivery timelines.

How could one use analytical skills to help identify and meet that need or want?

The app developers simply need to take more courses on project management.

Project management is the process of managing a team's effort to fulfill all project goals within the limits set.

This data is often specified in project documentation, which is prepared at the start of the development process. Scope, time, and budget are the key restrictions.

Learn more about App Developers:
https://brainly.com/question/26533170
#SPJ1

In a database, what term is used to describe a group of fields that are all associated with and accessed using single primary key?.

Answers

In a database, a group of fields that are all associated with and accessed using a single primary key is called a record.

What is database?
A database is a planned grouping of material that has been arranged and is often kept electronically inside a computer system. A database is frequently managed with a database management system (DBMS). The term "database system," which is frequently abbreviated to "database," refers to the combination of the data, the DBMS, and the applications which are connected to it.

To facilitate processing and data querying, the most popular types of databases currently in use typically model their data as rows and columns in a set of tables. The data may then be handled, updated, regulated, and structured with ease. For writing and querying data, most databases employ structured query language (SQL).

To learn more about database
https://brainly.com/question/518894
#SPJ4

which of the following is not true? (a) an interface can extend another interface. (b) a class which is implementing an interface must implement all the methods of the interface. (c) an interface can implement another interface. (d) an interface is a solution for multiple inheritance in java. (e) none of the above.

Answers

An interface can extend another interface but not implement it. Java does not enable multiple inheritances for classes, so multiple inheritances can be accomplished by utilizing an interface.

What is meant by the interface?

An interface in computing is a shared boundary that allows two or more independent computer system components to communicate. Software, computer hardware, peripherals, people, and combinations of these can all be exchanged.

To accomplish complete abstraction, it is employed. Java does not enable multiple inheritances for classes, so multiple inheritances can be accomplished by utilizing an interface. In order to establish loose coupling, it is also used.

Java utilizes interfaces to achieve abstraction. A Java class can implement an interface by using the implements keyword. In general, an interface can be thought of as a repository for the method signatures that will be used to implement them in the code section. The degrees of abstraction is raised.

An interface can extend another interface but not implement it.

Therefore, the correct answer is an option (d) an interface is a solution for multiple inheritances in java.

To learn more about interface refer to:

https://brainly.com/question/28235695

#SPJ4

When the goal, scope and product domain are not understood by the scrum team, the scrum master should.

Answers

The Scrum Master is supposed to assist them in resolving questions and facilitating the project's progress in his or her capacity as a coach, mentor, and guide.

When a Scrum Master encounters resistance from outside of the scrum team what should Scrum Master do?

Scrum Master may help the team become very effective by eliminating obstacles, assisting with dispute resolution, ensuring that team members receive the necessary training and coaching, and conducting superbly conducted meetings that foster understanding and do not waste time.

To effectively assist the PO and support the team's product understanding, the Scrum Master needs to have sufficient product domain knowledge.

The Scrum Master is supposed to assist them in resolving questions and facilitating the project's progress in his or her capacity as a coach, mentor, and guide.

To learn more about Scrum Master refer to:

https://brainly.com/question/4763588

#SPJ4

THIS QUESTION IS ABOUT NETWORK ACCESS LAYER! WILL GIVE 30 POINTS PLEASE ANSWER ASAP
Diagram: Include a diagram (using squares, circles, arrows, etc.) showing the data unit and what its headers and footers do.

Answers

Answer:

it's 15 points

Explanation:

send a photo...can't understand like this

write a declaration statement that creates a two-dimensional array referenced by a variable named grades. the array should store int values using 18 rows and 12 columns.

Answers

The array should store int values using 18 rows and 12 columns is int[][] grades = new int[18][12];

What is array?
An array is a type of data structure used in computer science that contains a set of elements (values and variables), each of which is designated by an array index or key. An array is stored in a way that allows a mathematical formula to determine each element's position given its index tuple. A linear array, sometimes referred to as a one-dimensional array, is the most basic sort of data structure. The memory addresses 2000, 2004, 2008,..., 2036 (or 0x7D0, 0x7D4, 0x7D8,..., 0x7F4) can be used to store an array with ten 32-bit (4-byte) integer variables with indices 0 through 9, where the element with index I does have the address 2000 + I 4). The first address, foundation address, and base address is the memory location of the first element of an array.

To learn more about array
https://brainly.com/question/28061186
#SPJ4

write a method called percenteven that accepts an array of integers as a parameter and returns the percentage of even numbers in the array as a real number. for example, if the array stores the elements {6, 2, 9, 11, 3}, then your method should return 40.0. if the array contains no even elements or no elements at all, return 0.0.

Answers

This program require to write a function that calculate the average of the even numbers in the array. The function perecentEven print the average of the even number while taking array of integer as an argument or parameter.

The above functionality is implemented in Python language as given in the below code and output of the code is also attached.

from array import * # import array related functionality.

def percentEven(a):#here 'i' defines the datatype of the array as integer

   evenNumber=[] # array to capture even number

   oddNumber=[] #array to capture odd number

   average=0 # average variable

   total=0 # total of positive number in array

   count=0 # count the positive number in array

   if len(a)>0: # check if the provided array has an element(s)

       for i in a: # iterate through the array

           if (i%2==0): # check if the number in the array is positive

               evenNumber.append(i)# store that number in array of #evenNumber

               count=count+1 #count the positive number in array

           else: #else the number in array is odd

               oddNumber.append(i) # add that number into array of #oddNumber

       if len(evenNumber)>0: # now check if evenNumber array has some #value

           for i in evenNumber: # iterate through every even number

               total= total+i # add the even number

           average=total/count # calculate average

           print(average) # print average

       else:

           print(0.0) # if array is empaty or have odd values then print 0.0

   

arr = array('i',[6, 2, 9, 11, 3]) # here 'i' defines the datatype of integer, and

#declare an array of integers

percentEven(arr) # pass the array to function.

You can learn more about function in Python at

https://brainly.com/question/25755578

#SPJ4

a user complains that he cannot access a particular web site, although he is able to access other web sites. at which layer of the osi model should you begin troubleshooting the problem?

Answers

The layer of the OSI version that must start troubleshooting the problem is layer 1.

The Open Systems Interconnection version may be defined as a conceptual version that resources a not unusualplace foundation for the coordination of [ISO] requirements improvement for structures interconnection. The Physical layer of the OSI version way accountable for the switch of bits — the 1's and 0's which make up all pc code. This layer plays the bodily medium this is wearing the site visitors among nodes. An instance could be your Ethernet cable or Serial Cable.

Learn more about The OSI at https://brainly.com/question/14433133

#SPJ4

an intrusion detection and prevention system is one that determines whether activity is present that is contrary to organization policy and represents a(n) .

Answers

The Intrusion detection system is the one that works on detection and prevention systems and determines whether the activity is present that is contrary to organization policy.

What do you mean by an Intrusion detection system?

A monitoring system called an intrusion detection system (IDS) looks for abnormal activity and sends out alarms when it does. A security operations centre (SOC) analyst or incident responder can analyse the problem and take the necessary steps to eliminate the threat based on these notifications.

What is SOC?

The goal of the security operations centre (SOC) is to continuously monitor, stop, detect, look into, and react to cyber-attacks.

Intrusion detection and prevention system (IDPS) is the collective name for a set of hardware and software that checks for the presence of activity that is against organisational rules and constitutes an intrusion.

Hence, a(n) reprsents the intrusion.

To learn more about the SOC from the given link

https://brainly.com/question/15072085

#SPJ4

to address this vulnerability, you recommend that the client hire additional network administrators who have cybersecurity credentials and experience. what type of vulnerability does this address?

Answers

This addresses the vulnerability of not having enough staff with the necessary skills to protect the network.

What is vulnerability?

Vulnerability is defined as "the condition or state of being vulnerable to being attacked or damaged, either physically or emotionally."A window of vulnerability (WOV) is a period of time during which protective mechanisms are reduced, compromised, or absent. As a methodological technique, understanding social and environmental vulnerability entails analysing the risks and assets of disadvantaged populations, such as the elderly. The concept of vulnerability raises high expectations for social policy and gerontological planning.

This vulnerability addresses the issue of weak network security. By hiring additional network administrators who have cybersecurity credentials and experience, the client will be better able to protect their network from attacks.

To learn more about vulnerability

https://brainly.com/question/25633298

#SPJ4

when tejay started his new job, he found the step-by-step process for logging into the company server set forth in a laminated document by computer. what type of information is represented by this document? multiple choice question.

Answers

Explicit type of information is represented by the documents

What is an Explicit type of information provided to tejay?

Explicit type info might be:

1)Open the required server

Snapshots for that

2)Login using the below credentials

3)Enter the User id

4)Enter the password

5)Click on the authentication

6)Download the required software to proceed

Explicit means

Knowledge that is directly communicated and shared between individuals is referred to as explicit knowledge. It has been explicitly laid out in a tangible format, like a marketing report or a standard operating procedure. Explicit knowledge can also be found in how-to manuals and onboarding materials.

Explicit knowledge exists as data that can be structured, processed, saved, and interpreted. Its message is simple to comprehend and may be stated and presented easily. This kind of knowledge can be recorded in a knowledge base or as part of your knowledge management strategy, making it very transferable between personnel.

All the above information with snapshots can be considered as the Explicit type of information

To know more about the explicit type of information please follow the link

https://brainly.com/question/12862221

#SPJ4

describe in your words how you think computer instruction design correlates with memory access ? the chapter also compares the design of various mainstream chips on the market. in particular, the chapter compares the design of the risc, arm, and cisc instruction sets describe some differences and similarities between the arm and risc instruction set describe some difference and similarities between the risc and cisc instruction sets describe some difference and similarities between arm and mips instruction sets what is the linker in computer software implementation what is the role of the loader in computer software implementation describe some of the addressing modes in the mips instruction set what is the role of the activation record in program execution

Answers

The computers operate with great speed and only run one process at once. The fastest storage of all is the cache memory. Random Access Memory is in second place, and the hard drive is in third.

What is computers?
A computer is a digital electrical device that may be configured to automatically perform series of logical or mathematical operations (computation). Programs are generic sets of actions that can be carried out by modern computers. These apps give computers the ability to carry out a variety of tasks. A computer system is a "complete" system that comes with the peripheral devices, operating system, and hardware required for "full" functioning. This phrase may also apply to a collection of connected computers that work as a unit, such as a computer network a computer cluster.

Computers are used as control systems in a wide variety of industrial and consumer goods.

To learn more about computer
https://brainly.com/question/23275071
#SPJ4

write a method called max that accepts an array of integers as a parameter and returns the maximum value in the array. for example, if the array passed stores {12, 7, -1, 25, 3, 9}, your method should return 25. you may assume that the array contains at least one element. your method should not modify the elements of the array.

Answers

Method called max that accepts an array of integers as a parameter and returns the maximum value in the array:

public class max {
   public static void main(String[] args) {
       int[] myArray = {12, 7, -1, 25, 3, 9};
       int max = myArray[0];
       for (int i = 1; i < myArray.length; i++) {
           if (myArray[i] > max) {
               max = myArray[i];
           }
       }
       System.out.println("The maximum value in the array is: " + max);
   }
}

What is array?
A collection of items (values or variables) is referred to as an array in computer science. Each element is identifiable by at least one array index or key. An array is stored in a way that allows a mathematical formula to determine each element's position given its index tuple. A linear array, sometimes referred to as a one-dimensional array, is the most basic sort of data structure. Two-dimensional arrays are sometimes referred to as "matrices" since the theoretical concept of a matrix can be expressed as a two-dimensional grid. Although tuples instead of vectors it is the more mathematically accurate counterpart, the term "vector" is occasionally used in computers to reference to an array. In particular, lookup tables are frequently implemented as arrays, and the word "table" is occasionally used as a shorthand for array.

To learn more about array
https://brainly.com/question/28061186
#SPJ4

How can mynav green cloud advisor help an accenture client achieve a clear emissions profile for their data centers?.

Answers

The tool myNav Green Cloud Advisor turn on the client to seek the cloud and select the right architecture and cloud solution that help them to fulfill particular business needs.

MyNav Green Cloud Advisor allows businesses to lay out cloud solutions that reduce carbon emissions and lay a foundation for responsible innovation. It additionally establishes a baseline of gift data center electricity consumption, computing requirements, and sustainability goals. The myNav permit Accenture to help its clients become more sustainable, By facilitating the design of cloud solutions that reduce carbon emissions by reorganizing manufacturing facilities to easily calculate carbon emissions.

You can learn more about MyNav Green Cloud Advisor at https://brainly.com/question/24918185

#SPJ4

one of the characteristics of big data is the variety of data. explain why this characteristic has resulted in the need for languages other than sql for processing big data.

Answers

Because variety makes data become a huge. Kinds of big data is structured, semi structured and others.

Data variety can be defined to discrepancies in the way data is assigned across an organization–in different formats, across different business units, and with differing organizational structures. Variety can be described as the diversity of data types. An organization might obtain data from a number of different data sources, which may vary in value. Data can come from sources in and outside an enterprise as well. The challenge in variety concerns the standardization and distribution of all data being collected.

You can learn more about The Data Variety at https://brainly.com/question/14548310

#SPJ4

suppose the source port of the dns request from the recursive dns server, as well as the id field, is completely random. what is the ratio for the attacker to succeed if the attacker only sends out one fake dns response whose destination port and id are randomly selected?

Answers

There are 3: 1 ratio for the attacker to succeed in the battle, his forces should be at least three times the force of the defender. This somewhat vague statement has resulted in numerous interpretations and discussions from historical and military science points of view.

The force ratio can be described as to be the enemy total combat power divided by the friendly total combat power. In the current method, the staff assigns combat power indices (potentials) to each unit. The indices are connect to a base unit of 1. Traditionally it is accepted that a defending force has a 3:1 advantage over an attacker. A defending force can hold off three times its own number of attackers.

You can learn more about The force ratio at https://brainly.com/question/15726547

#SPJ4

Which feature in microsoft word gives you the option to increase or decrease the indentation of items in a bulleted list or numbered list?.

Answers

Answer:

These icons.

Explanation:

You can these icons that are in the paragraph section or you can use the tab/delete keys on the keyboard

you are consulting a small startup company that needs to know which kind of windows computer network model they should implement. the company intends to start small with only 12 employees, but they plan to double or triple in size within 12 months. the company founders want to make sure they are prepared for growth. which networking model should they implement?

Answers

In my opinion, the network model that they can use is Systems Network Architecture.

Systems Network Architecture (SNA) can be defined as a data communication architecture established by IBM to specify common conventions for communication among the wide array of IBM hardware and software data communication products and other platforms. Systems Network Architecture is IBM's proprietary networking architecture, built in 1974. It is a complete protocol stack for interconnecting computers and their resources. SNA explains formats and protocols but, in itself, is not a piece of software.

You can learn more about Systems Network Architecture (SNA) at https://brainly.com/question/28208861

#SPJ4

after locating the characters that separate the components of a string you wish to parse, which functions would you to extract the individual components?

Answers

In SQL, the functions used to extract individual components are LEFT, RIGHT, SUBSTRING, and LEN.

what is the LEFT() function?

The LEFT() function retrieves a string's first few characters (starting from the left).

what is the SUBSTRING() function?

A string of characters can be extracted using the SUBSTRING() function.

Once you've identified the characters that divide the parts of a string you want to parse. So the functions that are used to extract individual components are LEFT, RIGHT, SUBSTRING, and LEN.

Therefore, LEFT, RIGHT, SUBSTRING, and LEN functions are used.

To learn more about the SUBSTRING() function from the given link

https://brainly.com/question/28290531

#SPJ4

Julie has 3 printers installed on her windows 10 computer and wants to set one of them as the default printer. Where would she go to do this?.

Answers

To set one of her printers as a default printer, Julie should go to Settings>devices<Printers and Scanners.

In the field of computers, printers and scanners are hardware devices that are used for printing of a document or scanning it when they are attached to a computer.

A user can have the settings of multiple printers installed on the computer but for feasibility can set a default printer for easy use.

To make a particular printer as a default one, you need to go to settings, then choose devices and then choose printers and scanners. Here, you can easily make the choice of your default printer.

Although a part of your question is missing, you might be referring to this question:

Julie has 3 printers installed on her windows 10 computer and wants to set one of them as the default printer. Where would she go to do this?

Settings > Devices > Printers & scanners

Control Panel > Devices > Printers & scanners

Control Panel > Printers and scanners

Settings > Printers & scanners

To learn more about printers, click here:

https://brainly.com/question/28110846

#SPJ4

If you could create any type of technology that would be beneficial to the world what would you create and why? What resources would you use? What will it look like? Who would it benefit the most?
*must be 3 paragraphs*

Answers

I would create a technology that would allow people to tap into the collective unconsciousness of humanity. This would enable people to connect with each other on a much deeper level and would allow for a greater understanding of the human experience.

This technology would be beneficial to everyone, but would be especially beneficial to those who are seeking to understand themselves and others on a deeper level.

The resources that I would use to create this technology would be primarily mental and spiritual in nature. This technology would look like a device that people could use to connect with the collective unconsciousness.

Technology:

Technology is the application of knowledge to achieve practical goals in a predictable and repeatable manner. The term technology can also refer to the outcome of such an undertaking. Technology is widely used in medical, science, industry, communication, transportation, and everyday life. Physical objects such as utensils or machinery are examples of technologies, as are intangible instruments such as software.

To learn more about technology

https://brainly.com/question/7788080

#SPJ9

What form of lookup is used when you have a small list of values and the values remain constant over time?.

Answers

Answer:

Array Form is used when you have a small list of values and the values remain constant over time.

Explanation:

Define Array Form.

The array form of the LO

The Lookup function's array form locates the supplied value in the array's first column or row and retrieves it from the same point in the array's last column or row.

Two arguments are provided for the array Lookup, and both are necessary:

lookup value, an array

Where:

A lookup value is a value that can be used to search an array.

An array is a group of cells in which you want to Lookup a value. In order to do a V-lookup or H-lookup, the values in the array's first column or row must be sorted in ascending order. Characters in both upper- and lowercase are considered to be equal.

To learn more about array form, refer to:

https://brainly.com/question/21613466

#SPJ4

Array Form

      When you have a small list of values that remain constant over time, use Array Form.

What is Array Form :

              The static method Array.from() creates a new, shallow-copied Array instance from an iterable or array-like object. It is defined as a sequence of objects of the same data type. It is used to store a group of data, and it is more useful to think of an array as a group of variables of the same type. It is possible to declare and use arrays. An array requires a programmer to specify the types of elements and the number of elements. This is known as a one-dimensional array. The array size should be a constant integer greater than zero. Arrays can be multidimensional as well. They can also be passed to functions and returned from functions. You can also use pointers to generate the first element of an array, and you can simply specify the array name without specifying the index.

          An array's memory can be allocated dynamically. This advantage of an array aids in the saving of system memory. It is also useful when the pre-defined array does not have enough memory. Memory can be manually allocated during run time. Furthermore, when memory allocation is not dynamic, data is stored in contiguous memory locations. The amount of storage required is determined by the type or size of the data. Zero-length arrays are also advantageous because they are flexible and can be used to implement variable-length arrays. When considering a structure, the user frequently ends up wasting memory, and the constants are too large. When using zero-length arrays, the allocated structures consume no memory. They serve as pointers. Zero-length arrays are pointers whose contents are identical to themselves.

To learn more about Array refer :

https://brainly.com/question/20351133

#SPJ4

in a basic program with 3 IF statements, there will always be _________ END IIF's.
a)2
b)3
c)4

Answers

Answer:

c)4

Explanation:

Hope it could helps you

a. it's the set of encoding rules to transmit the management information over the network b. it's the logical language used to define management information c. it's the logical database that holds information about managed objects d. it's the communication protocol agents and managers use to communicate

Answers

Structure of Management Information exists directed to as SMI. It establishes the standards for managing object descriptions.

What is meant by SMI?

Structure of Management Information exists directed to as SMI. It establishes the standards for managing object descriptions. Managed objects in the SNMP framework are stored in a virtual database known as the management information base (MIB).

The Storage Networking Industry Association created and maintains the computer data storage management standard known as the Storage Management Initiative Specification, or SMI-S. (SNIA). Additionally, it has been approved as an ISO standard.

Therefore, the correct answer is option c. It's the logical language used to define management information.

The complete question is:

What is SMI?

a. It's the logical database that holds information about management objects.

b. It's the set of encoding rules to transmit the management information over the network.

c. It's the logical language used to define management information.

d. It's the communication protocol agents and managers use to communicate.

To learn more about logical database refer to:

https://brainly.com/question/17216999

#SPJ4

4. some computer systems provide multiple register sets. describe what happens when a context switch occurs if the new context is already loaded into one of the register sets. what happens if the new context is in memory rather than in a register set and all the register sets are in use?

Answers

if the new context is in memory rather than in a register set and all the register sets are in use it makes one of the contexts in a register set must be chosen and moved to memory, and the new context must be loaded from memory into the set. This process takes a little more time than on systems with one set of registers, depending on how a replacement victim is selected.

The register set of a processor can be shared into different register classes. A register class can be defined as the subset of the processor's register set, that can be viewed as homogeneous from the point of view of a certain instruction's operand or result.

You can learn more about The register set at https://brainly.com/question/28497132

#SPJ4

he news reports a security breach of credit card information at a large department store that has recently laid off many employees. why should the store investigate the possibility of the breach being from an insider?

Answers

There are several reasons why the store should investigate the possibility of the breach being from an insider. First, insider breaches are often more difficult to detect and can do more damage than outsider breaches.

What is breach?
A breach is an unauthorized access or use of data, systems, or other resources. Breaching a contract is an example of a breach. A breach or violation of a contract, law, legal obligation, or promise.


Second, insiders often have access to more sensitive information than outsiders, making them more valuable targets for thieves. Third, insiders may be more motivated to commit theft or fraud if they are disgruntled or have financial problems. Finally, investigating the possibility of an insider breach can help the store prevent future breaches and protect its reputation.

To learn more about breach
https://brainly.com/question/1184001

#SPJ4

jerome wants to search for articles about banana pudding but his web search results also show results for chocolate pudding as well as articles about bananas. what should jerome enter into the search window so that he only finds articles with the words banana pudding in them?

Answers

Jerome should enter Banana pudding into the search window so that he only found articles with the words banana pudding in them.

An article means a kind of written work that is often available in everyday life, both academically and non-academically. The regular purpose of an article is to educate, inform, and entertain the reader. Usually, articles are launched through websites or other digital media.

Based on the content of the article, articles can be divided into several types, namely:

1. Light Article, this article usually consists of light information that is packaged by the author in an entertaining style or inserted with humor.Practical Articles, Practical articles tend to be narrative, and the messages written in them are sorted by time or events.Opinion Articles, the aims of opinion articles is to express neutral and critical opinions with written presentations or evidence.Expert Analysis Article, the general goal of the article is to publish a research result that has been done.Description Articles, description articles are usually written to take a picture of something so that it can be easily understood by readers.

You can learn more about Article here brainly.com/question/14172780

#SPJ4

if the process is in control but not capable, what would you do? select an answer and submit. for keyboard navigation, use the up/down arrow keys to select an answer. a redesign the process so that it can achieve the desired output. b use an alternative process that can achieve the desired output c retain the current process but attempt to eliminate unacceptable output using 100% inspection d see whether specs could be relaxed without adversely affecting customer satisfaction. e all of the above

Answers

All choices are true. So the right answer to this question is e. all of the above.

Things that you can do if the process is in control but not capable, there are:

Redesign the process so that it can achieve the desired output.Use an alternative process that can achieve the desired output.Retain the current process but attempt to eliminate unacceptable output using 100% inspection.See whether specs could be relaxed without adversely affecting customer satisfaction.

You can learn more about The Things that we can do if the process is in control but not capable at https://brainly.com/question/15734362

#SPJ4

Other Questions
geometry extra credit- 25 questions Compound light microscopes and transmission/transmitted light microscopes produce an image based on light transmission through the sample. Explain how the fluorescence microscope layout differs from that of transmission microscopes. Include the source of the light visualized in fluorescence microscopy in your answer. Which two details from the passage should be included in a summary -The Worst Hard Time Why is job specialization an important feature of civilization? A. Job specialization creates social classes. B. Job specialization allows for a variety of goods and services to be produced. C. Job specialization allows the government to focus on the most urgent things first. D. Job specialization means that more people can practice religion. Spoonhead'sheart beats 48 timesper minute. How many times willhis heart beat in two hours? 10Estimate the solution to the following system of equations by graphingOA (1,7)OB. (-1,1)OC.OD. (-1,-1) Ethics of Journalism 1. What are they? List them out (5 of them)2. Explain your thoughts on each one (even if you don't understand it...write questions about each one).3. Which is most important? Why? Question 4 of 20Which of the following is an example of primary source?O A. Law journalO B. Legal encyclopediaO C. Legal analysisOD. Case law 10. (01.04 LC)Your first six-month auto insurance premium was $658.00. Based on your driving record, your renewal premium is $756.70. What percent increase did you see in your premium? (112%15%28%35% Quantitative research is most likely to be used when? which of the following is a measure of energy expended in everyday spontaneous activities? a. non-exercise activity thermogenesis (neat) b. basal metabolic rate (bmr) c. resting metabolic rate (rmr) d. set-point I'm attempting to solve and linear equation out of ordered pairs in slopes attached who said the british is comming Consider the hypothetical thermochemical equation 3 A + B 2 C for which H = 65.5 kJ/mol.What would H, in kJ/mol, be for the reaction 2 C 3 A + B? Hey I need help on this math problem thank you clients involved in a mass casualty incident are triaged and assigned a color-coded tag. when prioritizing care, clients tagged with which color would be treated first? If 3.8 moles of P4 are used, how many moles of O2 are needed? HELP MEE((((((((solve an equation and draw a graph on itI give 20 points!! please help as soon as possible( robert john and paul start to run from the same point in the same direction around a circular track.if they take 126 seconds 154 seconds and 198 seconds respectively to complete one round along the track, when will they next meet again at the starting point? Read the passage.The violin sang its haunting melody, inviting the rest ofthe orchestra to respond. Soon, the timpani marchedin, leading the other instruments to a crescendo.Which type of figurative language is most used as anelement of style in this passage?O alliterationO personificationO simileO allusion