Every object in asequence container has a specific position.

a. True

b. False

Answers

Answer 1

Answer: a)True

Explanation: A sequence container is a class which has the sequence of the objects present in it .By having the objects in a sequence it has a specific position that is given to the objects to keep them in a particular order .the sequence of objects can be like first object, second object , third object ...etc. Therefore the statement given is true that every object in a sequence container has a specific position.


Related Questions

__________ is a growing practice in cooperative farmingassociations to pool and sell the fruit as a common commodity underthe brands of the association rather than to sell the fruit of eachgrower separately.
There
One
It, which
Why

Answers

Answer:

There

Explanation:

Great question, it is always good to ask away and get rid of any doubts that you may be having.

The Correct and only answer for the sentence given in the question is "There". From the four answers given, "There" is the only answer that makes factual and grammatical sense in the sentence displayed. Therefore it is the correct answer.

** "One" could work if you took out the "is" after it, otherwise it will just be grammatically incorrect. **

I hope this answered your question. If you have any more questions feel free to ask away at Brainly.

The power we use at home has a frequency of 60 HZ. What is the time period of such a power?

Answers

Answer:

The period of the power for our lights at home is 0.0116 s, or 16.6 ms.

what is java applets?and can we used java applets in web site??

Answers

Answer: Java applets is the program written in java language that run in web application. Yes, we can use java applets in web sites.

Explanation: Java applets are the minor java language program that runs with the help of internet for the web applications having compatibility to work with java .These programs usually run in web browser for the execution and it is the client side applet. It is used because it serve the purpose of having approachable and interactive features .It is possible to use it in web sites .

Answer: Java applets is the program written in java language that run in web application. Yes, we can use java applets in web sites.

Explanation: Java applets are the minor java language program that runs with the help of internet for the web applications having compatibility to work with java .These programs usually run in web browser for the execution and it is the client side applet. It is used because it serve the purpose of having approachable and interactive features .It is possible to use it in web sites .

Two input capture events occur at counts 0x1037 and 0xFF20 of the free-running counter. How many counts, in decimal have transpired between these two events?
A. 25,891
B. 57, 421
C. 61,161
D. 64, 551

Answers

Answer:

The correct answer is C.

Explanation:

You have to do 0xFF20 - 0x1037 but first, you need to convert the counts from hexadecimal base system to decimal base system using this formula:

[tex]N = x_{1} * 16^{0} + x_{2} * 16^{1} + x_{3} * 16^{2} + x_{4} * 16^{3} + ... + x_n 16^{n-1}[/tex], where position of the x₀ is the rightmost digit of the number.

Note:

A = 10.B = 11.C = 12.D = 13.E = 14.F = 15.

0xFF20 = 15*16³+15*16²+2*16¹ = 65312

0x1037 = 1*16³+3*16¹+7*16⁰ = 4151

Result: 65312 - 4151 = 61161

UML uses the________________ diagram to model the flow of procedureor

activities in aclass.

a. Activity b. case

Answers

Answer:

A - Activity

Explanation:

UML contains multiple subdivisions of diagrams which allow you to visualize what the software will do, while activity diagrams demonstrate the process of what happens in the system being modeled. This is why UML uses the activity diagram to model the flow of procedure.

Which of the following statements is false? a. Racks and bins are examples of storage equipment. b. Automation refers to equipment that complements, rather than replaces, human contact. c. Forklifts can be dangerous. d. In a part-to-picker system, the pick location is brought to the picker.

Answers

Answer:

b. Automation refers to equipment that complements, rather than replaces, human contact.

In these kinds of systems, a mechanical device—typically—brings the pick location to the picker. The device's transit time is crucial in part-to-picker systems. Since the proper pick position is automatically offered, the picker's search time is greatly decreased. Thus option B is correct.

What best define about In a part-to-picker system?

Systems for picking orders from warehouses are created to improve picking operations' effectiveness, speed, and accuracy. One or more of these systems can be used by businesses to improve order fulfilment processes in their distribution centres.

In this approach, warehouses set up a space for material handling, where merchandise is frequently moved using forklifts. Additionally, the system has a picking section where order pickers acquire goods to complete customer orders.

Therefore, Automation refers to equipment that complements, rather than replaces, human contact.

Learn more about picker system here:

https://brainly.com/question/23287453

#SPJ5

Something within a while loop must eventually cause the condition to become false, or a(n) __________ results.



1. null value

2. infinite loop

3. unexpected exit

4. compiler error

5. None of these

Answers

Answer: Infinite loop

Explanation:

A while loop terminates when the condition within the loop becomes false else the it will continue to loop for ever and thereby lead to memory overflow.

example : while(i<10)

                      {  print("hello");

                        }

  here if value of i <10 then it will print hello, but if there is no condition it will lead to an infinite loop. example : while();

ARP only permits address resolution to occur on a single network.could ARP send a request to a remote server in an IP datagram?why or why not?

Answers

Answer:

The answer to this question is Yes it is possible

Explanation:

It can be done In the case where a special server is required in each network that would forward the request to the  remote ARP(Address Resolution Protocol) server and will receive the response from the server and send it to the requesting host.So we conclude that we can do that hence the answer is Yes.

ith reference to McCall's quality modle , what are the three important aspects of a software product ?

Answers

Answer: According to McCall's quality model , the three important factors for the aspect of a software product are:-

Product RevisionProduct Operation Product Transition

Explanation:

Product Revision:-these are the factors which includes the maintenance, flexibility and testing of a software .

Product Operation:-these include the factors like checking the correctness, usability, reliability, efficiency and Integrity of software to maintain its quality

Product Transition:- these are the qualities that define the portability, interoperability and whether the software can be reused or not .

What are the two categories of problems that we can simply convert
to parallel code?

Answers

percentage and decimals

List and explain the error in the code

public class Weekdays {

public static void main(String[] args) {

final String[] WEEKDAYS = {"Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"}

System.out.println("List of weekdays:");

for (int i = 1; i
System.out.println(WEEKDAYS[i]);

}

Answers

Answer:

Errors:

1. semicolon is missing in the declaration of string.

2. for loop is not complete.

3. one curly braces is missing for closing class.

Explanation:

In the programming, semicolon is used at the end of the statement as a terminator.

in the declaration of string array semicolon is missing.

for loop is incomplete.

syntax of for loop;

for(initialization;condition;increment/decrement)

{

  statement;

}

and finally curly braces in the programming braces must be enclose.

here, the braces of the class is missing.

List the steps that the insertion sort algorithm would make in sorting the values 4, 1, 3, 2.

Answers

Answer:

The Insertion Algorithm will loop through the values given and move certain values back until the final array is sorted.

Explanation:

Insertion Algorithms start with the second value in a set.

Initial set:  4, 1, 3, 2

Step 1:  1 is lower than 4 so it is moved behind 4 and 4-2 are pushed forward by one ....... 1, 4, 3, 2

Step 2: 3 is lower than 4 but higher than 1 so it is moved behind 4 and 4 and 2 are pushed forward by one ..... 1, 3, 4, 2

Step 3: 2 is lower than 4 and lower than 3 but higher than 1 so it is moved behind 3, and 3-4 are pushed forward by one ...... 1, 2, 3, 4

The Set is now Sorted and the Insertion Algorithm is finished.

I hope this answered your question. If you have any more questions feel free to ask away at Brainly.

Which of the following variable names is not valid? 1price 1 price price 1 price1

Answers

Answer:

1price 1 price price 1

Explanation:

In the c programming, the rule for valid variable name.

1. Variable name cannot start with numeric value like 1,2,3..

2. Space and special character other than underscore '_' are not allowed.

3. After the first letter, numeric values can be used.

Let discuss the options:

Option A:  1price

it start with number which is not allowed.

Option B:  1 price

it start with number and also contain the space which is not allowed.

Option C:  price 1

it contain the space which is not allowed.

Option D:  price1

it is the valid variable name, start with letter and their is no space.

Therefore, option A, B and C are correct option.

________ of Willa Catha present an unadorned picture oflife on the prairies of the Midwestern United States during the19th century.
The stories who
That the novels
The novels which
The novels

Answers

Answer:

"The novels"

Explanation:

Great question, it is always good to ask away and get rid of any doubts that you may be having.

Based on the sentence, we can see it is mentioning an object that belongs to Willa Catha. Unfortunately, all of them can be possible correct answers based on that information so we need to check which ones make the sentence factually and grammatically correct.

Therefore the only answer that makes this sentence both factually and grammatically correct is the last answer "The novels".

I hope this answered your question. If you have any more questions feel free to ask away at Brainly.

Generally, what is the term for storage locations in a processor?

Answers

Answer: Registers

Explanation:

Registers are small storage locations identified by different types of registers. The function of the register is to provide data for immediate processing to the CPU. These registers hold data temporarily and provide easy access of data to the processor.

program for bit stuffing...?

Answers

Answer: Program for bit stuffing in C

#include<stdio.h>

      int main()

    {    

          int i=0,count=0;

          char data[50];

          printf("Enter the Bits: ");

          scanf("%s",data);            //entering the bits ie. 0,1  

          printf("Data Bits Before Bit Stuffing:%s",databits);

          printf("\nData Bits After Bit stuffing :");

          for(i=0; i<strlen(data); i++)

              {

              if(data[i]=='1')

                     count++;

              else

                     count=0;

                printf("%c",data[i]);

             if(count==4)

                {

                          printf("0");

                          count=0;

                 }

             }

    return 0;

 }

Explanation:

bit stuffing is the insertion of non-information bits during transmission of frames between sender and receiver. In the above program we are stuffing 0 bit after 4 consecutive 1's. So to count the number of 1's we have used a count variable. We have used a char array to store the data bits . We use a for loop to iterate through the data bits to stuff a 0 after 4 consecutive 1's.

Which algorithm makes the most efficient use ofmemory?

Answers

Answer:

Best-fit Algorithm

Explanation:

Best-fit: Allocating the smallest memory location that is greater than or equal to the size of process.

Example

Let these are the memory locations-210kb,310kb,260kb,610kb

                    and size of processes-160kb,450kb,250kb,300kb

For the first-fit,

We allocate 160 kb to the 210kb memory location

Then, we allocate 450 kb to the 610kb because others don't have the size.

Then,we allocate 250kb to the 310 kb.

300 kb will stop,as no memory locations can execute.

For the Best-fit,

We allocate 160 kb to the 210kb memory location

Then,we allocate 450kb to the 610kb.

Then,we allocate 250kb to the  260kb not 310kb according to best-fit.

Then we allocate 300kb to the 310kb.

For the worst fit,

We allocate 160 kb to the 610kb memory location according to the worst-fit algorithm.

Then,we can't allocate 450kb to any memory location.

Then,we allocate 250kb to the 310kb .

We can' allocate 300kb in 260kb memory location.

As we can see from this example that in First-fit algorithm 300kb process will stop as no memory location is there.

In worst-fit algorithm ,We can't allocate 450kb,300kb to any memory locations.

In Best-fit algorithm,we can allocate the process to each location,so this algorithm is using memory in a efficient way.    

Write a C++ programme that asks the user to enter his age in days.Calculate then his age in:
Years – Months –Days

1 year = 365 days

1 year = 12 months

1 month = 30 days

Answers

C++ program that asks the user to enter his age in days

#include <iostream>

using namespace std;

void Findage() //Defining function

{

int a=0,d=0, m=0, y=0, r=0;

cout<<"Enter Age in Days= "; //Taking input

cin>>a;

   if(a>365) //If age is greater than 365

{

y=(a)/365;

r=a%365;

if(r>30)

{

m=r/30;

d=r%30;

}

else

{

d=r%30;

}

}

else //if the age is less than 365

{

if(a>30)

{

m=(a)/30;

d=a%30;

}

else

{

d=a;

}

}if(a==365) //Printing output

{ cout<<"Your Age in Calender"<<endl;

 cout<<"Year = 1"<<endl;

}

else

{

cout<<"Your Age in Calender"<<endl;

cout<<"Years= "<<y<<" Month="<<m<<" Days= "<<d<<endl;

}

}

int main()

{

Findage(); //Calling function

return 0;

}

Output

Enter Age in Days= 3697

Your Age in Calender

Years= 10 Month=1 Days= 17

A C++ program can be written to calculate a user's age in years, months, and days by dividing the total number of days provided by the user by 365 to find years and then dividing the remainder by 30 to calculate months, with the final remainder indicating the days.

A C++ program that calculates a user's age in years, months, and days from the age in days can be composed using simple arithmetic operations. Given that 1 year is 365 days, 1 year is 12 months, and 1 month is 30 days, the following process can be followed:

Ask the user for their age in days.

Use the remainder of the previous division to calculate the number of months by dividing by 30.

The remainder of the last division will give the number of days.

The resulting calculations will give the user's age in years, months, and days.

.When one component modifies an internal data item in anothercomponent we call this:
A.content coupling B.common coupling C.controlcoupling D. all of the above

Answers

Answer:

A. content coupling

Explanation:

When one component modifies an internal data item in another component we call this content coupling.

True / False
Generally, a multiply instruction takes more clock cycles than an add instruction.

Answers

Answer: True

Explanation:

A multiplication takes more clock cycle than an add instruction as, multiplication has more complicated circuit as compared to addition instruction. Multiplication instruction may takes more duration depends on its processor or architecture. Sometimes, it is difficult and take longer time to calculate the multiplication of decimal integer and numbers.

Does RISC provide better performance today than CISC?

Answers

Answer: Yes, RISC has better performance than CISC at present .

Explanation: Following are the reasons for the better performance of the RISC as compared to CISC:-

RISC(Reduced instruction set computer) processors has simple instructions which take about one clock cycle whereas CSIC (complex instruction set computer) processor has complex instructions which may take multiple clocks to execute. Decoding of instruction in RISC is simple as compared to CISC .Execution  time is less in RISC whereas CISC takes more time to executeRISC has reduced instruction that is the instructions are less but in CISC , the instruction set is complex which make the operation more complexNo requirement of external memory in RISC for calculation but CISC requires external memory for calculation.

1) Only analog signals can be used to transmit information.

a) True b) False

Answers

Answer: False

Explanation:

Digital signal is used for transmission of information over a dedicated line wheres for using analog signal for transmission of information it is first converted to digital to be able to transfer it across long distances./

BorderLayout is the default layout manager for a JFrame’scontent pane

?? True

?? False

Answers

Answer:

True

Explanation:

BorderLayout is the default JFrame, JInternalFrame, and JApplet content panel layout manager.Border layout are used to arrange components(such as text fields, buttons, labels etc) in a particular manner.

Example

           public class BorderLayout

            extends Object

         implements LayoutManager2, Serializable

These classes are used for making effective GUI(graphical user interface) in java.

Example for JFrame's content pane-

    JButton button = new JButton("Button click (PAGE_START)");

/*making object JButton with a button name 'click*/

      pane.add(button, BorderLayout.PAGE_START);

/*Adding Border layout in button*/

PAGE_START is BorderLayout constant,there are four more which defines the area-

PAGE_END

LINE_START

LINE_END

CENTER

.When a system is designed such that there is one-to-manydependency between objdects with automatic notification ofdependents when any object changes, the implied patterns iscalled:
A.observer B.mediator C.interpreter D.iterator

Answers

Answer: A) observer

Explanation:

When the system are designed in such a way that there is one to many dependency between the object, when the object changed with the automatic notice of the dependent , and the implied pattern are known as observer. As, the pattern observer are defined a one to many object dependency so, when the state of one object changed, then the dependent update automatically. Observable object are get notified for the changes when a class are get implemented observer interface.

Which of the following is NOT areserved word in Java?intpublicstaticnum

Answers

Answer:

num

Explanation:

In java reserved words are also known as keywords, keywords are reserve words for a language that can't be used as an identifier(name of a class, name of a variable, name of an array etc.) int, public static, are reserve words.

In given question num is not a reserved word.

Cash cows are always in

a. Introductory industry

b. Growing industry

c. Mature industry

d. Declining industry

Answers

Answer:

The correct answer is C. Cash cows are always in mature industry.

Explanation:

A cash cow is a company, business area or product that generates a large free cash flow over time. Cash flow depends on the profitability of the company or product, that is, revenues are greater than costs, but also because the surplus is not tied up in the business in the form of working capital.

The cash flow in a company can be used to pay off debt but also as a dividend to owners. An individual product that constitutes a cash cow can help to finance other activities in the company or group.

Write a program to define three variables to hold three test scores. The program should ask the user to enter three test scores and then assign the values entered to the variables. The program should display the average of the test scores and the letter grade that is assigned for the test score average. Use the grading scheme in the following table. 90 or greater 80-89 70-79 60-69 Below 60

Answers

Answer:  

It's always good to use if else with boolean expressions in such cases.

Explanation:

I have written a program  where I have used c# as programming language.

I used if else block with boolean expressions to enforce conditions to print the grades according to the average of test scores. I have used Logical And(&&) operator in boolean expressions so that all the conditions in if and if else  must be true

Here is the program:  

using System;

public class Test

{

   public static void Main()

   {

       int testScore1, testScore2, testScore3;

       Console.WriteLine("enter first testScore");

       testScore1 = Convert.ToInt32(Console.ReadLine());

       Console.WriteLine("enter second testScore");

       testScore2 = Convert.ToInt32(Console.ReadLine());

       Console.WriteLine("enter third testScore");

       testScore3 = Convert.ToInt32(Console.ReadLine());

       float avg = (testScore1 + testScore2 + testScore3) / 3;

       if(avg>=90)

       {

           Console.WriteLine("You got grade A");

       }

       else if(avg >=80 && avg <=89)

       {

           Console.WriteLine("You got grade B");

       }

       else if (avg >= 70 && avg <= 79)

       {

           Console.WriteLine("You got grade c");

       }

       else if (avg >= 60 && avg <= 69)

       {

           Console.WriteLine("You got grade D");

       }

       else if(avg< 60)

       {

           Console.WriteLine("You got grade E");

       }

       else

       {

           Console.WriteLine("Sorry, You failed");

       }

       Console.ReadLine();

   }    

}

Explanation of program:  

I created three variables named, testScore1, testScore2, testScore3 of datatype int. I prompted the user to enter three test score values. Each value is read using Console.ReadLine() . As the value entered is of type integer, I converted the  console read value into int using Convert method.  

In the next step, I calculated average using the formula.  

Now, Based on the average, I can calculate the grade according to the given grading scheme.

What are search tries? Why are they more efficient than usualsearching

algorithms?

Answers

Answer:

Trie is a tree based data structure where the keys are strings.  

Search trees are a data structures in Computer Science in which they are based on trees.

Explanation:

Search trees are tree based data structures which are used to search elements in the tree as the names suggests (search tree). However, for a tree to perform as search tree the key it has to follow specific conditions. They are , the the key of any node has to be less than the all the keys present in the right sub trees and greater than all the keys present in the left subtree.

Unless you explicitly initialize global variables, they are automatically initialized to

_________.

Answers

Answer:

Zero(0)

Explanation:

Global Variables

Variables which are declared outside any function. Any function can use these variables,they are automatically initialized to zero(0).They are generally declared before main() function.

Example- C program for showing global variable is 0.

  #include <stdio.h>

   int g;  // declaring g as global variable

   int main()

   {

       printf("%d",g);  //printing global variable

       return 0;

    }

Output

  0

T F In a function prototype, the names of the parameter variables may be left out.

Answers

Answer:

True.

Explanation:

In a function prototype, the names of the parameter variables may be left out.

Other Questions
colleges with competitive admission requirements often require___ M1Q13.) Find the relative frequency of the 2nd class to the nearest tenth of a percent. The process in which the system pressure remain constant is called a)-isobaric b)-isochoric c)-isolated d)-isothermal Use the map to determine which statement is true. (5 points)A) Most eastern European nations are candidate countries.B) All of the Western European nations are part of the European Union.C) All European nations want to be part of the European Union.D) Most European nations are part of the European Union. which point is the image P Describe the phases through which a program goes during its lifecycle. explain your answer with the help of diagram Environmental law is a system of laws that encompass all of the environmental protections that originate from all the sources listed below except: (A) United States constitution and state constitutions regulations published by Federal(B) State and local agencies(C) Justice of the Peace rulings (D) Presidential executive orders the common law A rectangular prism with a volume of 666 cubic units is filled with cubes with side lengths of \dfrac12 2 1 ? start fraction, 1, divided by, 2, end fraction unit. How many \dfrac12 2 1 ? start fraction, 1, divided by, 2, end fraction unit cubes does it take to fill the prism? What is the domain for the following function?Y= (x+1)/(x^2+x-6)A) {x does not equal -1}B) {x does not equal -3; x does not equal 2}C) {x does not equal -3}D) {x does not equal 0} erika raked 5% more leaves than adam raked. erika raked 357liters of leaves. how many liters of leaves did adam rake? Which of the following vitamins is used to construct the coenzymes NADH and NADPH?a. Riboflavinb. Panthothenic acidc. Vitamin B12d. Niacin 8 sentence paragraph why college isnt for everyone The sides of a square increase in length at a rate of 3 m/sec. a. At what rate is the area of the square changing when the sides are 14 m long? b. At what rate is the area of the square changing when the sides are 25 m long? The magnetic flux that passes through one turn of a 18-turn coil of wire changes to 2.67 from 8.19 Wb in a time of 0.0386 s. The average induced current in the coil is 275 A. What is the resistance of the wire? PLEASE HELP ME WITH THIS MATH PROBLEM If x and p are both greater than zero and 4x^2p^2+xp-33=0, then what is the value of p in terms of x?A) -3/xB) -11/4xC) 3/4xD) 11/4x Bryan is coming to see you for a routine STD screening. A complete history reveals that he is sexually active with his partner of 5 years. They have consistently used condoms, however he admits that the condom did break once during intercourse about 6 months ago. He is feeling healthy and considers himself fit. Other than a little flu that he had half a year ago, he has no complaints for the past year. His HIV test comes back positive. Which stage of the infection is he most likely at What do the original Olympic games reveal about ancient Greek culture and values? (Provide as many specific examples as possible, but a minimum of three.) What, in your view, is admirable abut the games and what is not? Find the coordinates of the orthocenter of YAB that has vertices at Y(3, 2), A(3, 5), and B(9, 1). (JUSTIFY) HELP me please I need it !!