You use ____ operators to perform calculations with values in your programs.

a.
arithmetic

b.
calculation

c.
integer

d.
precedence

Answers

Answer 1

Answer:

arithmetic

Explanation:

Arithmetic operator like + , - , * , / are used to perform calculations with values in programs. For example:

1 + 2 will add 1 and 2 and return the value 3.

1 * 2 will multiply 1 and 2 and return the value 2.

3 - 2 will subtract 2 from 3 and return the value 1.

The values which undergo the operation can be integral or floating point.

Answer 2

Answer:

Option a is the correct answer for the above question.

Explanation:

For any programming language, An arithmetic operator is used to perform the calculation for any set of values. It takes two or more value to perform the calculation. This operation performed by the help of the Arithmetic logic unit which is also called ALU. It lies on the CPU and works for the instruction of the control unit.

The above question scenario states that if there are two or more value then which operator is used to perform calculation then the answer is an arithmetic operator as described above. Hence option a is the right answer. while the other is not because--

Option b states about calculation operator but it is not the defined operator for any programming language. Option c states about integer operator but it is not the defined operator for any programming language. Option d states about precedence operator but it is not the defined operator for any programming language. It tells that which operator is executed first if two or more operators are used for any statement.

Related Questions

Why do we need the binary system?

Answers

Answer:

We need to have binary numbers because that is how computers process data.

Explanation:

Which would be the best user error message?

A) Invalid Parameter
B) You must type a user name to continue.
C) You enter a user name to continue.
D) Gotcha! Type in a your user name.
E) Point the cursor on the user name and type one, please.

Answers

Answer: B. You must type a username to continue.

Explanation: "you must type a username to continue" is the most suitable error message of all the options given because it is the appropriate way and user-friendly approach to the user for correcting the error as compared to other options which consist of inappropriate words ,slang language or lengthy message which is not easily understood by the user.

.Compositionally designed systems have the followingcharacteristics except:
A.dynamic definition B.classes built from componentclasses C.encapsulation D.white-box reuse

Answers

Answer: C) encapsulation

Explanation:

 As, encapsulation is the process by which the data is included from the protocol of the upper layer into lower layer of the protocol in the computer networking. Basically, in the networking it is the method of abstraction, as it allowed different functions by adding different layer. In encapsulation, the IP encapsulated packet are sent over the data link layers protocol for example ethernet.

If the list above is named list1 and is implemented as a list, whatstatement would you use to find the number ofelements?list1.size()list1.numElementslist1.lengthlist1.contains

Answers

Answer:

list1.size()

Explanation:

In order to find the number of elements in a List , we can use the size() method defined in the java.util.List interface.

This method returns an integer which corresponds to the number of elements in the list.

The usage syntax example is as follows:

int num = list1.size();

If the list referenced by list1 contains 6 elements, then this method will return the value 6.

Write down the complete procedure for creating ExcelSheet.

Answers

Answer:

The complete procedure for creating Excel Sheet:

Excel sheets is defined as which are typically in tabs near the bottom left hand corner of the window, when a sheet gets open, it can only be viewed one at a time, however you can generated formulas and select the data from other sheets that can be used on another sheet's formula. Separated sheets are valuable for inserted separate charts and graphs, organizing the information from sheet.You are given three sheets with any new excel sheet.The default names are Sheet 1, Sheet 2, and Sheet 3 and are named on the tabs. These names can be changed accordingly by clicking on the tab name.We can also add the boundaries and label the rows.

An abstract method ____.

is any method inthe abstract class
cannot beinherited
has nobody
is found in asubclass and overrides methods in a superclass using the reservedword abstract

Answers

Answer:

has no body.

Explanation:

An abstract method is a method which has no body.

It is contained in a class which is marked as abstract.

The implementation of such method is specified in a subclass.

For example:

//abstract class

abstract class myClass{

  /* Abstract method */  

  public abstract void mymethod(int a, int b);

}

//Concrete class extending abstract class

class Concrete extends myClass{

  public void mymethod(int a, int b){

return a+b;

  }

}

The height of building A is 210 m and the height of building B is 350 m. The two are 240 m away from each other. How long should a ladder be for a person to go from the top of A to the top of B.

Answers

Answer:

The length of the ladder should be 277.85 meters long

Explanation:

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

I have created an illustration and attached it as a photo below to better help you understand the situation. As seen on the illustration the difference in height of Building B from Building A is,

[tex]350m-210m = 140m[/tex]

Now that we have the difference we need to find the length of the ladder which is the hypotenuse between the two buildings. We can calculate this by using the Pythagorean theorem which is the following

[tex]h^{2} = a^{2} +b^{2}[/tex]

Now we can plug in the values and solve for the hypotenuse (h)

[tex]h^{2} = 240^{2} +140^{2}[/tex]

[tex]h^{2} = 57,600 +19,600[/tex]

[tex]h^{2} = 77,200[/tex] ... square root of 77,200

[tex]h = 277.85m[/tex] .... rounded up

Therefore, the length of the ladder should be 277.85 meters long

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

What is the comment marker in Python? ("character marker" means the sequence of characters that indicates the beginning of a comment.)

Answers

Answer:

The # marker is used to mark a line comment in python.

Explanation:

The line that starts with # is a comment.Python will ignore the lines that starts with #.These comments can be used to add extra information in the python code.

For example:-

Following is the python code with comments.

names=['sam','optimus','bumblebee'] #names is the list of transformers characters.

for i in names:

     print(i)  #printing the names.

There are 2 comments in the python code written above.These are ignored by python.

DASD stands for ____________? Direct access storage device? Direct application storage device? Diverse access storage device

Answers

Direct Access Storage Device

Answer:

Direct access storage device.

Explanation:

DASD stands for direct access storage device.

A ____ is a text document written in HTML.
Answer
Web browser
Web page
Web server
Web site

Answers

Answer:

Web page

Explanation:

A Web page represents content formatted in HyperText Markup Language ( HTML). Web Browsers like internet explorer,firefox or google chrome can interpret this content and display the page as specified in the markup. If we access any webpage on the browser and view its source we can see the HTML content underlying the webpage.

Which of the following statements isNOT true about abstract data types (ADTs)?A list is anexample of an ADT.ADTs hide theimplementation details of operations from users.Java provides allthe ADTs you need, therefore you do not need to create any newones.An ADT is anabstraction of a commonly appearing data structure.

Answers

Answer:

Java provide all the ADTs you need,therefore you do not need to create any newones.

This statement is not true.

Explanation:

ADTs are those data types which we use but we didn't know their inner working that is how it is working what is happening inside.It is commonly used for Data Structures for example:- In stack we use push and pop operations to insert and to delete element from a stack respectively but we didn't know how it is happening inside.How the stack is implemented and etc.Java provides most of the ADT's but not all.

The statement that is wrong as regards abstract data types in this question is C: Java provides all the ADTs you need, therefore you do not need to create any new ones.

The abstract datatype can be regarded as special kind of datatype, whereby the behavior of the data is been defined by a set of values as well as a set of operations.

ADTs can perform operation such as hiding of  the implementation details of operations from users. It can be regarded as an abstraction of data structure that appear more often

Examples of ADT are;

StackQueueList

Therefore, option C is correct.

Learn more at:

https://brainly.com/question/23883878?referrer=searchResults

Memory cache is referred to as ______. A. SRAM c. SROM b. DRAM d. DROM

Answers

Answer:

Answer is A. SRAM

Explanation:

Memory cache is called static RAM.

A while loop is somewhat limited, because the counter can only be incremented by one each time through the loop.



True False

Answers

Answer:

False

Explanation:

In a while loop we can increment the counter by any number that we wish. It is not that the counter can only be incremented by one each time through the loop.

Below is an example of a while loop with counter incremented by 5 each time.

int count=0;    //initialize count to 0

while(count<50){    //continue the loop till count is lesser than 50

  cout<<count;   //display the value of count

  count = count + 5;    //increment counter by 5 each time

}

Final answer:

The statement is false; a while loop can increment a counter by any amount based on the code within the loop's body.

Explanation:

The statement that a while loop is limited because the counter can only be incremented by one each time through the loop is false. In programming, a while loop can be used to increment or alter a counter variable by any amount, as dictated by the statements within the loop's body. The control of a while loop is based on a condition, and as long as the condition remains true, the loop will continue to execute.

For example:

int counter = 0;
while (counter < 10) {
   counter += 2; // Increment counter by 2
}

In this example, the counter variable starts at 0 and increases by 2 on each iteration of the loop. You can increment the counter by any number, or even apply other operations to change its value in complex ways.

Which method(s) must a serializable class, implement?
? It must always implement both readObject andwriteObject

? It must implement either readObject orwriteObject, or both, depending upon the

desired behavior

? No Need to implement any methods

? None of the given option is correct

Answers

Answer: None of the given option is correct

Explanation:

A serializable class is implemented, when an object is serializable interface. If you want to serialize one of your classes, then the class must implemented in the Serializable interface. To implement the serializable interface, convert a class into the series of bytes and when serializable object might reference your class. Serializable classes are useful when you wanted to persist cases of the class or send them over wire.

Relational DBMS are unable tostore multimedia objects. Does it underestimate RDBMS importance inreal world?

Answers

Answer:

 It may underestimate the importance of RDBMS in real world as, database system for storing the multimedia object images and images,consequently the objects and operation become more complex that is why, it is degrading the performance of the application in RDBMS. It is also dependence on the structure query language as, it is comparatively simple query optimization and unable to handle complex applications.

A relational database is a combination of many relation in the form of two dimensional table of rows and the columns containing tuples. The rows are called as records and the columns are called as attributes.

Mergesort uses the divide-and-conquer technique to sort a list.

True

False

Answers

Answer:

True: Merge Sort sorts a list using divide-conquer approach.

Merge_Sort(B,p,n)  //p is the starting index of array B and n is the last index.

1. if(p<n)

2.        q ← (p+n)/2    //divides the list into two sub-lists

2.        Merge_Sort(B, p, q) //sorts the left half

3.        Merge_Sort(B, q+1, n) //sorts the right half.

4.        Merge(B, p, q, n)

Merge(B, p, q, n)

1.l ← q-p+1.  //no. of elements in left half

2.m ← n-q  //no. of elements in right half.

3.for x ← 1 to l

4.      Left[x] = B[p+x -1] //The elements of left half are copied to Left array

5.for y ← 1 to m.

6.      Right[y]= B[q+y]  //The elements of right half are copied to right array

7. x ← 1, y ←1

8.for z ← p to n.

9.      if( Left[x] ≤ Right[y] ) // to merge the two lists Left and Right, the    //elements are compared.

10.     {   A[z] ← Left[x]   //smaller one comes to the merged list.

11.          x++. }

12.    else

13.      {   A[z] ← Right[y]

14.          y++ }

Explanation:

The Merge_Sort(A, p, n) algorithm first divides the whole array into two halves. Then again divides the sub-lists into it's halves and so on.

Then using merge algorithm it compares the elements of both halves one by one and keep it in sorted order.

Briefly explain the key points(including benefits/drawbacks) about the Water Fall life-cycle
model.

Answers

Answer:

The water fall life cycle model is explained as:

The waterfall life cycle model is defined as a sequential designed process in which progress are flowing steadily downwards through the process of analysis, design, testing and maintenance. It is the process of managing the development when something is complex.

Benefits:

It is a top down approach which breaks the tasks into a series of necessary goals that can important in the development process.Easy to maintain and use this approach. It can be easy to manage each phase has specific outputs and review process.

Drawbacks:

It takes a lot of time to properly document a system.The requirements cannot be changed in any phase.Risk and uncertainty are higher in this case.

Compare and contrast the role that business users play when software is developed using Waterfall and Agile software development methodologies.

Answers

Answer: Both Agile and waterfall model are software development models to deliver a final outcome in the form of a software product. Waterfall model is sequential process with the requirements beings rigid and defined before beginning the software development.

Agile method basically  concerned with the requirements of the client. Here both testing and development is carried out at the same time.

Explanation:

More differences between the two include :

Waterfall model is easy to manage whereas in agile model as the the client requirements changes and wants more functionalities is becomes a bit more difficult to manage. the role of project manager is very crucial in waterfall model whereas the role of developers ans testers is more important in Agile model.

True or False and WHY:
Constructors can have names different from theirclasses.

Answers

Answer:

False

Explanation:

Constructors have to have the same name as their classes for proper syntax, if their names are different it will result in an error. Methods contained within the class can/should have different names, it is allowed because methods require return types while constructors cannot have return types.

Please briefly describe your QA / testing process?

Answers

Answer: The QA/Testing process consist of the following:

1. Requirement specification

2. Reviewing the code.

3. Unit testing

4. Integration test

5. Performance testing

Explanation:

We start of by the requirement specification try to gather all the information accurately. Then begins the coding process where there is review of the code so that they perform their desired purpose. After modules are completed we perform unit testing of the different modules individually and also do the integration testing once all the modules are completed. At the end we perform the performance testing to take a note on their desired output and other quality parameters.

The statement ____ declares intList to be a vector and the component type to be int

A.
vector intList;

B.
int.vector intList;

C.
int.vector intList;

Answers

Answer: vector<int> intList

Explanation:

Using the above declaration we can declare intList to be a vector and the component type to be int.

example:

int main()

{

vector<int> intList

   intList.push_back(1);                          

   intList.push_back(2);                          

   intList.push_back(3);                        

   printList(intList);  // printing the list

}

. Where is the bootstrap program usually located?

Answers

Answer and Explanation:

The bootstarp loader is also know as bootstrapping a bootstrap loader is usually located in EPROM (erasable programmable read only memory). It is a non volatile memory. The booststrap loader is automatically exicuted by the processor when we turn on the computer.Non volatile memory is that memory in which retain their content even when the power is swithed off.

Answer: Bootstrap program is generally found in the ROM (read only memory) else EEPROM (Electrically erasable programmable read-only memory)

Explanation:Bootstrap loader or program is referred as the program that gets into action or execution when there is the rebooting process in the operating system and it initializes it. It is usually located in EEPROM of the system. After the restarting of the computer system , all the loaded data gets transferred into the RAM(Random access memory).

The collection of all component frequencies iscalled _____________

a. Frequency Spectrum

b. Bandwidth

c. Throughput

d. None of the given

Answers

Answer:

The answer is Frequency Spectrum.

Explanation:

The frequency spectrum is range of all component frequencies.It contains all the waves which are as following:-

Gamma Rays

X-Rays

Ultraviolet

Visible light.

Infrared

Micro wave

Radio wave

These all waves have their range of frequencies.The waves that are visible to us is only the visible light.

What are minimum numbers of pins required for serialcommunication? Also write

their names?

Answers

Answer:

Serial communication are connected using 2 types of connector

Explanation:

The two types of connector for serial communication are:

1. Nine pin connector.

2. Twenty five pin connector.

for 9 pin connector we have:

pin 1 = data carrier detect

pin 2= received data

pin 3= transmitted data

pin 4= data terminal ready

pin 5= signal ground

pin 6= data set ready

pin 7= request to send

pin 8= clear to send

pin 9= ring indicator

Here, the minimum number of pins can be pin 2,3 and 5 which are receive, transmit and ground signal to establish a communication without handshaking.

The minimum number of pins actually depend on the type of software we use.

Trailer is only added at ___________ layer of OSI model.

a. Data link layer

b. Physical layer

c. Network layer

d. Transport layer

Answers

Answer:

a. Data link layer

Explanation:

A trailer / footer is the additional data (metadata) which is positioned at the end of the data block being stored or transferred,it  may contain information for the processing of the data block or simply placed at the end of the block.

In data transmission, the data is called the payload or body after the end of the header and before the trailer starts.

In Data link layer, it contain three parts-

Frame headerFrame dataFrame footer    

Data Analysis The Iris Plants Database contains 3 classes of 50 instances each, where each class refers to a type of Iris plant. Five attributes/features were collected for each plant instance. 1. Implement an algorithm to read in the Iris dataset.

Answers

Answer:

35

Explanation:

Assuming deq is a deque object, the expression deq.push_front(elem) deletes the first element from deq.

True

False

Answers

Answer: False

Explanation:

This code code not deletes element from deq. This insert element at the beginning of deq. if it was deq.pop_front(elem) then it would have deleted the first element.

Therefore, it is false.

Write a for loop to print all elements in courseGrades, following each element with a space (including the last). Print forwards, then backwards. End each loop with a newline. Ex: If courseGrades = {7, 9, 11, 10}, print: 7 9 11 10 10 11 9 7

Answers

Answer:

JAVA program to display the array elements both forward and backward is given.

public class MyProgram {

   public static void main(String args[]) {    

     int len = 5;

     int[] courseGrades = new int[len];      

     courseGrades[0] = 7;

     courseGrades[1] = 10;

     courseGrades[2] = 11;

     courseGrades[3] = 9;

     courseGrades[4] = 10;      

     System.out.println("The elements of array are ");

     for(int i=0; i<len; i++)

     {

         System.out.print(courseGrades[i]+" ");

     }  

// new line is inserted    

     System.out.println();      

     System.out.println("The elements of array backwards are ");

     for(int i=len-1; i>=0; i--)

     {

       // elements of array printed backwards beginning from last element

       System.out.print(courseGrades[i]+" ");

     }

// new line is inserted    

     System.out.println();  

   }

}

OUTPUT

The elements of array are  

7 10 11 9 10  

The elements of array backwards are  

10 9 11 10 7  

 

Explanation:

This program uses for loop to display the array elements.

The length of the array is determined by an integer variable, len.

The len variable is declared and initialized to 5.

int len = 5;

The array of integers is declared and initialized as given.

int[] courseGrades = new int[len];

We take the array elements from the question and initialize them manually.

First, we print array elements in sequence using for loop.

for(int i=0; i<len; i++)

To display in sequence, we begin with first element which lies at index 0. The consecutive elements are displayed by incrementing the value of variable i.

The array element is displayed followed by space.

System.out.print(courseGrades[i]+" ");

Next, we print array elements in reverse sequence using another for loop.

for(int i=len-1; i>=0; i--)

To display in reverse sequence, the last element is displayed first. The previous elements are displayed by decrementing the value of variable i.

At the end of each for loop, new line is inserted as shown.

System.out.println();

The length and elements of the array are initialized manually and can be changed for testing the program.

Loops are used to perform operations that would be repeated in a certain number of times; in other words, loops are used to perform repetitive and iterative operations

The loop statements are as follows:

for(int i = 0; i<sizeof(courseGrades)/sizeof(courseGrades[0]);i++){

       cout<<courseGrades[i]<<" ";

   }

cout<<endl;

   for(int i=sizeof(courseGrades)/sizeof(courseGrades[0]) - 1; i >=0; i--){

       cout<<courseGrades[i]<<" ";

   }

cout<<endl;

The flow of the above loops is as follows

The first for loop prints the elements in a forward order.The second for loop prints the elements in a backward order.

Read more about loops at:

https://brainly.com/question/11857356

Which of the following is the correctsyntax for commenting in Java?# Enter CommentsHere/* EnterComments Here*/** Enter CommentsHere **

Answers

Answer:

/* EnterComments Here*/

Explanation:

/* EnterComments Here*/   is the right syntax for comments in java.

we can use double farword slash (//)  for single line comment and for mutliple line we can use /* comments here */ and for documentation comment we use below syntax-

/**

*

*

*/

Write the sum of products, the canonical product of sums, theminterm shorthand and the maxterm shorthand for the following:

F(A,B,C) = A'B'+ AB'C + A'B'C'

Answers

Answer:

SOP=AB'+B'C

POS=B'(A'+C)

Shorthand Minterms=m₀+m₁+m₅

Shorthand Maxterms=M₃+M₂+M₄+M₆+M₇

Explanation:

For the full explanation of this question refer to the image attached which is of the k-Map of F.As we can see in the k-map that there are only 3 ones.by making 2 pairs of 1 we get the SOP expression.

Rest of them are zero from there we will get the POS expression.

The one's in the k-map represent the Minterms and 0's represent Maxterms and the number written in the box is their respective minterm and maxterm number.Minterms are represented by m and maxterms are represented by M.

Other Questions
For a line that goes through points (2,-2) and (1.-6), what is the equationof the line in point-slope form? I need help please. Place a single word into each sentence to make it correct, then place each sentence into a logical paragraph order. Hemodialysis is the ____________ cleansing of wastes from the blood. How is entropy defined on a differential basis? (use an equation)? The octet rule pertains to: a. only the noble gases. b. only groups 1A and 2A. c. elements in Groups 1A - 7A. d. all elements in the periodic table. in the first quadrant you start at (4,5) and move 2 units down define the role of cache memory in computers. Alan's dogs have a total of 24 legs (l). If each dog has 4 legs, which equation gives the number of dogs (d) that Alan has? What is the similarity between the story of Adam and Eve and the story of Prometheus? A. Both stories value individuality over conformity. B. Both stories encourage women to submit to male authority. C. Both stories are considered Greek myths. D. Both stories involve a god who creates life.2b2t Find the distance between the points (9, 0) and (2, 5). Which expression is equivalent to 6^-3?6^33^63sqrt6(1/6)^3 EarlKeen Co. sold $260,000 of equipment during January under a one-year warranty. The cost to repair defects under the warranty is estimated at 4% of the sales price. On August 15, a customer required a $100 part replacement plus $50 of labor under the warranty. Provide the journal entry for (a) the estimated warranty expense on January 31 for January sales on page 10 of the journal and (b) the August 15 warranty work on page 14 of the journal. Refer to the Chart of Accounts for exact wording of account titles. Paula, the controller of Tasty Pizza, is purchasing several new delivery vehicles. Paula has numerous work responsibilities, so she has limited time to shop for cars. Because of the time constraints, she cannot make an extensive search for the best alternative, so she looks for cars until she finds a model that is satisfactory. Paula is following the _____ model. A quality control inspector has drawn a sample of 10 light bulbs from a recent production lot. Suppose 20% of the bulbs in the lot are defective. What is the probability that exactly 7 bulbs from the sample are defective? Round your answer to four decimal places whats the value of y ? Which of the following is a primary reason settlers came to the continent of North America? Which line contains the point (2,1)4x-y=72x+5y=47x-y=15X+5y=21 11 pts. plz help and stay on my acc if u want points. ima slowly raise points i need help on a lot of questions and have like 400 its to give up Consider the following diction. What sense does the author hope to evoke? With crispy, golden brown edges, the cheesy mozzarella stick called to me. A. Fun B. Sight C. Hunger D. Hope This type of mutation occurs when one or more base pairs are added to the gene sequence. PLEASEEEEE HELPPPPP MEEEE!!!! All of the following are equivalent except___. 7x^3,4x+3x,(4+3)x,7x