(TCO 4) What will be the value of input_value if the value 5 is input at run time? cin >> input_value; if (input_value > 5) input_value = input_value + 5; else if (input_value > 2) input_value = input_value + 10; else input_value = input_value + 15;

Answers

Answer 1

Answer:

15

Explanation:

if ..else is the conditional statement which is used to check the condition is true or not, if the condition is true that execute the particular statement and if not it moves to else part for execution.

if condition is more than two we can use continuous if else statement

Syntax:

if(condition)

{

 statement;

}else if(condition)

{

  statement;

}else

{

 statement;

}

In the code:

The value of the input is 5.

first it goes to if part and check condition if 5 > 5, condition false it equal to 5 not greater than 5.

it then moves to else if part and check condition if 5 > 2, condition is true,

it execute the code inside the else if part. so, input_value become

5+10 which 15.

after that, program control terminate the if else statement it does not check further.


Related Questions

True / False
1. A byte is a standardized unit of measure that is always 8-bits.

Answers

Answer:

TRUE

Explanation:

In telecommunication and computing, there are different units of data storage. The most commonly used units are the bit and the byte.

A bit is the capacity of the system having only two states.

Whereas, the byte, also known as octet, is equal to eight bits. The unit symbol for Byte is B. In many computers, it is the smallest addressable unit of memory.

Therefore, the given statement is TRUE.

What is one of the problems with project managementsoftware?

The project manager manages the software instead of theproject
Project duration calculations are sometimesapproximate
You cannot override the project management softwaredecisions regarding schedule
It’s expensive and difficult touse

Answers

Answer: It’s expensive and difficult to use

Explanation:

 The problems with project management software is that it is expensive and difficult to use as, the scale of project grow and their impact reach beyond the functional unit. Budget is one of the main issue in planning and tracking. It is time intensive to learn and refresh the interface design and also there is no invoicing or billing included.

Suppose you create a new PricedApt class that is derived from the RentalApt class (so it's derived from a derived class). It adds one new double attribute, price, which tells what the monthly rental for the apartment is. Here is a constructor call for the class: PricedApt p = new PricedApt("jill", 900, true, "jack", 1050.00); The class is missing its constructor. In the box provided below, write the constructor in its entirety. public class PricedApt extends RentalApt { private double price;

Answers

// here i am writing C++ code

public class PricedApt extends RentalApt {

private double price;

RentalApt(firstname,price,b,lastname): PricedApt(firstname,b,lastname){

// As there is only one member in this class this means that every argument //coming to it is supposed to be passed to the parent class constructor.

// in c++ : operator is used to call the super class constructor

this.price = price;

}

}

IMUL & IDIV operate on
a. Two's complement number, b. one's complementnumber, c. all of the give option, d. none of these

Answers

Answer: a) Two's complement number

Explanation: IMUL that is referred as signed multiply which performs the multiplication operation of two operands and IDIV is the referred as the signed division which performs the division between two operands. They perform their action on the two's complement number because of their signed behavior otherwise unsigned multiplication(MUL) and division(DIV) are  also present for other numbers.

We need ____ pointers to build a linked list.

A.
two

B.
three

C.
four

D.
five

Answers

Answer:

two

Explanation:

A linked list is a data structure which stores the multiple-element with data type

and a pointer that stores the address of the next element.

A linked list is a series of nodes connecting each other by a pointer.

a node contains data and a pointer.

For build an array, two pointers are used:

the first pointer for specifies the starting node called head node.

and the second pointer is used to connect the other node to build the linked list.

Both are used to build the array if we lose the head node we cannot apply the operation because we do not know the starting node and we cannot traverse the whole linked list.

for example:

1->2->3->4->5

here, 1 is the head node and -> denote the link which makes by the second pointer.

Final answer:

To build a linked list, at least two pointers are needed: one for the head of the list and another within each node to point to the next node.

Explanation:

To build a linked list, you need two pointers. The first pointer typically points to the head of the list, which is the first node in the list. The second pointer, found within each node, points to the next node in the list. This setup allows the linked list to efficiently add and remove elements, by adjusting these pointers appropriately when nodes are inserted or deleted.

In contrast to arrays, linked lists do not use contiguous memory space and they allow for efficient insertions and deletions. They can grow and shrink during the execution of a program. Each node in a singly linked list generally contains the data part and the next pointer. However, in a doubly linked list, each node contains an additional pointer, known as the previous pointer, referencing the preceding node in the sequence to allow bidirectional traversal.

In apersuasive message, opposing ideas should be:

a- Cited,then refuted

b- Ignored

c- Mentioned only when necessary

d- Notmentioned

Answers

Answer:

b- Cited,then refuted

Explanation:

Citation enhances persuasion of information sources.

Refutation means understanding the viewpoint of the opposition and then countering it by providing respective evidence  or by finding mistakes in the logic of the opposition's argument.

You are to create a program using Python that asks the user for a nonnegative number, then computes the mean and variance using the above given online update formulas which should be displayed on the console screen. The program should end when a user enters a negative number.

Answers

Answer:

# In the new version of python is available the functions mean() an variance()

# In the module of statistics

i = 0 #Var to input the elements

l = [] #Var to store the elements on a list

while(i>0):

    print("In put a positive number to add in the list or negative to exit ")

    i = input()

    l.append(i)

    print("The mean of the all elements is: " + mean(l) )

    print("The variance of the all elements is: " + variance(i) )

Explanation:

At present, you can use in the news python's verison e.g. (python 3.7) the statistics module and use functions like mean(), variance(), stdev() and many others.

In the first step you create two variables, i to recieve the inputs of a loop and l to store all the elements recieved in the i variable. after that you pass as an argument the list that you stored before and get the mean() and variance() of the all elements in the list.

I hope it's help you.

The decision-maker's attitude toward riskcan change the outcome of a situation involving risk.
True
False

Answers

Answer: True

Explanation: Yes, there is a major impact of the decision maker's attitude on a risky situation. In risky situation if the decision maker is on side of taking non-risking decision then there would be less chances of severe outcome but if the decision maker tends to take risk then the situation can have any sort of impact good or bad as outcome. Therefore there is a huge impact of decision makers attitude.

function getLongestString(strings) { } /* Do not modify code below this line */ const strings = ['long', 'longer', 'longest']; console.log(getLongestString(strings), '<-- should be "longest"');

Answers

Answer:

function getLongestString(strings) {  

return strings.reduce( (acc, cur) => acc.length > cur.length ? acc : cur);

}

Explanation:

A reducer applies the same operation to each array element. In this case, the longest string is stored in the accumulator (acc), and is replaced only by the current element (cur) if the current element is longer than the accumulator.

Write an overloaded constructor for the Table class that will take a single argument for the color of the table Write a set method (also known as a mutator method) for the color attribute.

Answers

Explanation:

Below is required code in java :-

public class Table{

   private String color;    //attribute to store the color of the table

   public Table(){    //default constructor

       this.color="";   //set a default blank color

   }

   public Table(String color){    //overloaded constructor

       this.color=color;    //set the color value equal to the parameter provided

   }

   public void setColor(String color){    //setter or mutator method

       this.color=color;    //set the color value equal to the parameter provided

   }

}

Describe a method for protecting users against URL obfuscation Attacks

Answers

Answer:

Anti-Phising softwares in stand alone systems connected to  a centralized database.

Explanation:

In order to protect oneself from URL obfuscation attacks one should install anti-phising software in their systems which is a software to warn users when exposed to obfuscation attacks. These software when connected contains a centralized database maintained which warns users when they try to access an effected URL. So upon clicking such URL the users are warned in their screen and thus provided with an option to return to their previous page.

Anti-phising software come handy in preventing such attacks while accessing certain URLs in their mails also.

Describe business benefits of using wireless electricity?

Answers

Answer:

To put it simply, the main benefit for a business to use wireless electricity is money.

Explanation:

Assuming that the company in question can solve specific hurdles such as Microwave Interference and Implementation costs. Then they would save a huge amount of money in the mid to long term since wireless electricity needs very little landscape and does not need cables and transmitting towers as opposed to traditional electrical systems.

Hope you have found this explanation helpful and If you have any more questions please feel free to ask them here at Brainly, We are always here to help.

Wireless electricity offers businesses enhanced reliability, reduced transmission losses, and operational flexibility. Smart Grid principles further improve efficiency and optimize energy usage. These benefits lead to greater cost savings and improved service reliability.

Wireless electricity offers several significant advantages for businesses:

Enhanced Reliability: Generating electricity at the point of use enhances the reliability of the electricity supply, ensuring that critical circuits remain powered during grid outages.Reduced Transmission Losses: By avoiding the need to convey electricity from central power generators to urban loads, businesses can eliminate energy losses typically around 7% due to transmission inefficiencies.Operational Flexibility: Wireless operations enable services and applications that are simply impossible or impractical with wired systems, especially for long-range communications and distributed electricity production.

Implementation and Efficiency

Future electrical transmission and distribution systems will become more efficient with the implementation of "Smart Grid" principles. These grids use smart meters and time-of-use pricing to optimize energy consumption during non-peak times, such as using electricity at night for heating water or charging electric vehicles, which can help level load and reduce peak demand.Moreover, transmitting electricity at high voltage and low current over long distances with wireless technology minimizes energy losses due to resistance heating, known as Joule heating, thus making the entire process more energy-efficient.

Consumer Advantages

Changes in equipment and usage patterns at the consumer end to allow for increased efficiencies, improved reliability, and lower energy costs are expected to benefit businesses greatly. For instance, ice-making air conditioning systems that operate during non-peak hours can provide cooling during peak demand hours, contributing to overall efficiency and cost savings.

The value of a default argument must be a(n) _________.

Answers

Answer:

Constant

Explanation:

A default argument is a value provided in a function declaration that the compiler automatically assigns if the function caller does not provide a default value for the argument.

The value of a default argument must be constant.

The default value parameter must be a  constant for compiling. Compiler does not accept dynamically calculated value against optional parameter. The reason behind this it is not certain that the dynamic value you provide would offer some valid value.

Example:

#include<iostream>  

using namespace std;  

/*A function with default arguments, it can be called upto 4 arguments*/

int sumnum(int x, int y, int z=0, int w=0)  

{  

return (x + y + z + w);  

}  

int main()  //driver function

{  

cout << sumnum(10, 15) << endl;  

cout << sumnum(10, 15, 25) << endl;  

cout << sumnum(10, 15, 25, 30) << endl;  

return 0;  

}

Output

25

50

80

Write a short note on Façadepattern.

Answers

is a software design pattern commonly used with object-oriented programming. The name is by analogy to an architectural facade. A facade is an object that provides a simplified interface to a larger body of code, such as a class library. I looked it up hope it helps

Write a program that asks the user to enter a number within the range of 1 through 10. Use a switch statement to display the Roman numeral version of that number. Input Validation: Do not accept a number less than 1 or greater than 10. Prompts And Output Labels. Use the following prompt for input: "Enter a number in the range of 1 - 10: ". The output of the program should be just a Roman numeral, such as VII.

Answers

cout<<"Enter a number in the range of 1 - 10 ";

cin>>num;

// check if the input is valid

if(num<0 || num > 10)

cout<<"Invalid Number"

// checking for appropriate output

switch(num){

case 1:

cout<< "|";

case 2:

cout<< "||";

case 3:

cout<< "|||";

case 4:

cout<< "|V";

case 5:

cout<< "V";

case 6:

cout<< "V|";

case 7:

cout<< "V||";

case 8:

cout<< "V|||";

case 9:

cout<< "|X";

case 10:

cout<< "X";

default :

cout<<" Nothing found";

}

Final answer:

The program asks the user to enter a number between 1 and 10 and uses a switch statement to convert it to a Roman numeral, with input validation to ensure the number is within the specified range.

Explanation:

Converting Numbers to Roman Numerals Using a Switch Statement

To write a program that asks for a number in the range of 1 through 10 and converts it to a Roman numeral, we can utilize a switch statement. Here is an example code in a programming language like C++ or Java:

#include <iostream>
using namespace std;
main() {
 int number;
 cout << "Enter a number in the range of 1 - 10: ";
 cin >> number;
 switch(number) {
   case 1: cout << 'I'; break;
   case 2: cout << 'II'; break;
   case 3: cout << 'III'; break;
   case 4: cout << 'IV'; break;
   case 5: cout << 'V'; break;
   case 6: cout << 'VI'; break;
   case 7: cout << 'VII'; break;
   case 8: cout << 'VIII'; break;
   case 9: cout << 'IX'; break;
   case 10: cout << 'X'; break;
   default: cout << "Error: invalid input.";
 }

 return 0;
}
This program will display a Roman numeral corresponding to the number entered by the user, ensuring that input validation is performed and only numbers between 1 and 10 are accepted.

The tremendous diversity ofthe source system is the primary reason for their complexity. Doyou agree/ If so, explain briefly why.

Answers

Answer and Explanation:

Yes, the situation mentioned in the question is agreeable.

Diversity in the field source system is due to the presence of data elements present in the system which directly increases the complexity of the system.The data can be stored in one place in any amount at present time due to developed technology but there are chances of lapse and complexity.

The reason is the variety of types of data that is stored which makes it difficult to access the data related to every single element especially when the data storage is in a large amount. Individual data sources also don't show high dependency on. Thus the complexity arises.

What is Service Oriented architecture & How is it different form Object Oriented Middleware?

Answers

Answer: This can be explained s follows :-

Explanation: The approach in which services available in the network are used by the applications is called service oriented architecture. In such structure a business function is provided by each service that is independent of other services.

Object oriented programming is a programming paradigm. OOP can be used outside of that architecture or it can be apart of SOA as well .

Write a program the will convert Celsius to Fahrenheit or the other way.The user is asked to enter a floating point number.The user should be asked to select the conversation that will be performed.The menu should look like the following:

C-----From Celsius to Fahrenheit
F-----From Fahrenheit to Celsius

Answers

Answer:

Output

Temperature Converter

C-----From Celsius to Fahrenheit

F-----From Fahrenheit to Celsius

Enter your choice (C or F):  

C

Enter temperature in Celsius:  

45

Temperature in Fahrenheit: 113.0 °F

Explanation:

Below given is a java code that will convert Celsius to Fahrenheit or the other way:-

import java.util.Scanner;

public class TemperatureConvertor {

public static void main(String[] args){

 double celsius=0.0;

 double fahrenheit=0.0;

 String choice;

 Scanner input=new Scanner(System.in);

 System.out.println("Temperature Convertor");

 System.out.println("C-----From Celsius to Fahrenheit");

 System.out.println("F-----From Fahrenheit to Celsius");

 System.out.println("Enter your choice (C or F): ");

 choice=input.next();

 if(choice.equals("C")){

  System.out.println("Enter temperature in Celsius: ");

  celsius=input.nextDouble();

  fahrenheit=((9*celsius)/5)+32;

  System.out.println("Temperature in Fahrenheit: "+fahrenheit+" °F");

 }else if(choice.equals("F")){

  System.out.println("Enter temperature in Fahrenheit: ");

  fahrenheit=input.nextDouble();

  celsius=(5*(fahrenheit-32))/9;

  System.out.println("Temperature in Celcius: "+celsius+" °C");

 }else{

  System.out.println("Wrong choice !!!");

 }

 

}

}

True / False
Variable length instructions generally use memory more efficiently than fixed-length instruction sets.

Answers

Answer: True

Explanation:

Variable length instructions generally implemented by CISC processors use memory more efficiently than fixed length instruction of RISC processors sets because CISC supports array whereas RISC does not. Also CISC uses more complex addressing modes which consumes less memory cycles and the the program is also reduces. In Fixed length instruction in RISC processor the simple instructions has to be used a number of time which leads to more memory cycles.

Perfective maintenance usually is cost effective ____ the system

Answers

Answer:

During the middle of

Explanation:

Perfective maintenance usually is cost effective during the middle of the system.

Perfective maintenance usually is cost effective during the middle of the system.

In how many ways can the letters of the word APPROXIMATION be arranged?

Answers

Answer:

2494800

Explanation:

A lot of math and time.

If the unitexchanged at the data link level is called a Frame and the unitexchanged at the Network layer level

is called a Packet, doframes encapsulate packet or do packets encapsulate frames? Explainyour answer.

Answers

Final answer:

Frames encapsulate packets in the context of networking, where the data link layer adds headers and trailers to the packet, forming a frame that is transmitted over the physical medium.

Explanation:

In the context of networking, frames encapsulate packets. When a packet, which is the unit of data at the network layer, is passed down to the data link layer to be prepared for physical transfer, it is encapsulated within a frame. The data link layer adds a header and sometimes a trailer to the packet, creating a frame. This frame includes not only the original packet's data but also additional information such as source and destination addresses, error-checking codes (like CRC), and control information necessary for establishing reliable links and ensuring data integrity over the physical medium.

The process can be thought of as an envelope (the frame) that carries a letter (the packet) inside it. Each network layer adds its own 'envelope' with specific information required for its operations. At the destination, these envelopes are removed in reverse order as data moves up through the layers until the original packet is delivered to the appropriate network layer application.

What is the decimal number of binary number 1101011 if the binaryis represented as a(n)
a. Unsigned integer
b. Signed magnitude integer
c. One’s complement integer
d. Two’s complement integer
e. ASCII character

Answers

Answer:

a. Unsigned integer  107

b. Signed magnitude integer  -43

c. One’s complement integer  -20

d. Two’s complement integer  21

e. ASCII character k

Explanation:

a) For unsigned integer,

   We put this value in representation of binary and put binary number in it.

   we will place 1, 2, 4, 8, 16, 32, 64, 128 ...(powers of two)

                         64  32  16  8  4  2  1

                           1     1    0   1   0   1   1        

The positions at 1 is present,we will add those numbers.In this                (64+32+8+2+1) =107 is there.

So,107 will be the representation.

b)For signed magnitude integer,

  The representation is just the same,but as signed integers the first bit represent the negative number.

                         64  32  16  8  4  2  1

                           1     1    0   1   0   1   1    

The first bit is for Negative(-),then we will add other number where 1 is present.In this (32+8+2+1)=43.We will add (-) due to signed integers.

So,-43 will be the representation.

c) For One's complement integer,

We will compliment the bits of binary number.At the place of 1 ,place 0 and at the place of 0,place 1.

                             1     1    0   1   0   1   1    

    Compliment   0   0    1   0  1   0   0    

Then,We put this value in representation of binary and put binary number in it, we will place 1, 2, 4, 8, 16, 32, 64, 128 ...(powers of two)                

                         64  32  16  8  4  2  1

                          0   0    1   0  1   0   0  

The positions at 1 is present,we will add those numbers.In this (16+8)=20    we will put negative at the starting because of the compliment

So, -20 will be the representation.

d)For Two's complement integer,

After compliment of bits At the place of 1 ,place 0 and at the place of 0,place 1.Then,we add 1 bit to the Least significant bit(Lsb).

                             1     1    0   1   0   1   1    

   Compliment     0   0    1   0  1   0   0    

 Add 1 to Lsb       0   0    1   0  1   0   0

                                                       +   1

   Number           0   0    1   0  1   0   1

Then,We put this value in representation of binary and put binary number in it, we will place 1, 2, 4, 8, 16, 32, 64, 128 ...(powers of two)                

                         64  32  16  8  4  2  1

                          0   0    1   0  1   0   1  

The positions at 1 is present,we will add those numbers.In this (16+8+1)=21

So,21 will be the representation.

e. For ASCII character,

First,convert it into decimal

  We multiply bits with 2^n,from ascending numbers to 0 to (n-1),and add them

           =   1 * 2^6 + 1*2^5 + 0* 2^4 + 1*2^3 + 0* 2^2 + 1*2^1 + 1* 2^0  

              =   64+32+8+2+1

                =  107

Then,we check in Ascii table 107 decimal number's position ,k is there.

So,k will be the representation.

Write a recursive method to return the number of uppercase letters in a String. You need to define the following two methods. The second one is a recursive helper method. public static int count(String str) public static int count(String str, int high) For example, count("WolFIE") returns 4.

Answers

Answer:

Recursive function with two parameters that return the number of uppercase letters in a String

public static int count(String str,int h)//Defining function

{

      if(str.charAt(0)>='A' && str.charAt(0)<='Z')//Checking the characters from A to Z

{

          h++; //incrementing the counter

          if(str.length()>=2){

              return count(str.substring(1),h);//recalling function

          }

      }

      if(str.length()>=2){

              return count(str.substring(1),h); //recalling function

      }

      return h;

  }

This is the recursive function with the name count of return type integer,having parameters str of string type and h of integer type.In this we are checking the characters at a particular position from A to Z.

Recursive function with one parameter that return the number of uppercase letters in a String

public static int count(String str)//Defining function

{

      if(str.charAt(0)>='A' && str.charAt(0)<='Z')//Checking the characters from A to Z

{

          count++; //incrementing the counter

          if(str.length()>=2){

              return count(str.substring(1));//recalling function

          }

      }

      if(str.length()>=2){

              return count(str.substring(1)); //recalling function

      }

      return count;

  }

This is the recursive function with the name count of return type integer,having parameters str of string type .In this we are checking the characters at a particular position from A to Z.

Java program that return the number of uppercase letters in a String

import java.util.*;

public class Myjava{

static int count =0;//Defining globally  

 

public static int count(String str,int h)//Defining function

{

      if(str.charAt(0)>='A' && str.charAt(0)<='Z')//Checking the characters from A to Z

{

          h++;

//incrementing the counter

          if(str.length()>=2){

              return count(str.substring(1),h);//recalling function

          }

      }

      if(str.length()>=2){

              return count(str.substring(1),h);

//recalling function

      }

      return h;

 

  }

  public static void main(String[] args)//driver function

  {

      System.out.println("Enter a string");//taking input

      Scanner scan = new Scanner(System.in);

      String s = scan.nextLine();

      int h =0;

      System.out.println("Counting the Uppercase letters: "+count(s,h));

  }

}

Output

Enter a string  WolFIE

Counting the Uppercase letters: 4

Final answer:

The question involves writing two methods to recursively count the number of uppercase letters in a String: a base method and a recursive helper method. The base method initiates the recursion with the string and its length, while the helper method implements the recursive logic, decrementing the count and checking for uppercase characters.

Explanation:

The question asks for the development of a recursive method to count the number of uppercase letters in a given string. This involves writing a base method count(String str) that initiates the recursion and a helper method count(String str, int high) which performs the actual recursive logic.

Method Definition

To achieve this, first, the base method needs to call the recursive helper method with the initial parameters - the string itself and the length of the string as the starting point. The recursive method will then decrement the count while checking for uppercase characters until it reaches the base case where the index (or high) is less than 0.

Example Implementation

public static int count(String str) {
   return count(str, str.length() - 1);
}

public static int count(String str, int high) {
   if (high < 0) {
       return 0;
   } else {
       int count = Character.isUpperCase(str.charAt(high)) ? 1 : 0;
       return count + count(str, high - 1);
   }
}

In this example, count("WolFIE") will indeed return 4, as it correctly identifies 'W', 'F', 'I', 'E' as uppercase letters.

What does the following function return? void index_of_smallest(const double all, int startindex, int numberOfSlots); A. a double B, numberOflots C. an integer D. nothing

Answers

Answer:

nothing

Explanation:

Because the return type of the function is void. void means does not return any thing.

The syntax of the function:

type name( argument_1, argument_2,......)

{

  statement;

}

in the declaration the type define the return type of the function.

it can be int, float, double, char, void etc.

For example:

int count( int index);

the return type of above function is int. So, it return integer.

similarly,

void count(int index);

it return type is void. So, it does not return any thing.

When superiors providedirections to their subordinates regarding what to do, thisis

known as a type of____________________ communication.

o Upward

o Horizontal

o Downward

o Lateral

Answers

Answer:

Downward

Explanation:

Downward communication

When instructions/orders given from Superiors to Subordinates.The instruction can be via mail,oral or handbooks it can be of any form. Examples are shareholders instructing management,teacher ordering students to bring notebooks etc.  

Upward communication

When Information is sent bottom level to the upper levels in an organization.The information includes reports,judgments, estimations, propositions, complaints, appeals, etc  

Lateral communication/Horizontal communication

When same hierarchical levels shares idea or information with each other for coordinating, fulfilling a common purpose or goal.It doesn't involve sharing information with up or down levels in organization.

int[] array1 = {1, 3, 5, 7}

for(int i =0; i if(array1[i] > 5)
System.out.println(i +" " + array1[i]);


Which indices are in bounds for the array array1, given thedeclaration above?

0, 1, 2,3
1, 2, 3,4
1, 3, 5,7
0, 1, 3,5

Answers

Answer:   0,1,2,3

Explanation:

The array contains 4 elements that is 1,3,5,7.So the size of the array is 4.The indexing in an array starts from 0 means the element at 0 index is the first element in the array So 1 is at the index 0 and the index will increase by 1 as we move right of the array.So 3 is at the index 1 ,5 is at the index 2 and 7 is at the index 3.So the indices are 0,1,2,3.

If a function doesn’t return a value, the word _________ will appear as its return type.

Answers

Answer: error

Explanation: the word ‘error’ will flash up

Write a program which will ask the user to input a floating point number corresponding to temperature. We will assume the temperature was in Celsius degrees and display its equivalent in Fahrenheit degrees after computing it using the following formula Fahrenheit = ( 9.0 / 5.0 ) * Celsius + 32

Answers

// writing c++ code...

// taking input

cout<< " Enter the floating point number : ";

cin>>fnumber;

// calculating the Fahrenheit temp

far_temp= (9.0/5.0) * fnumber +32;

cout<<" Fahrenheit = "<< far_temp;

Do you think that the power of face to face communication ismore effective than the other modes of communication?

Answers

Answer: YES

Explanation:

Face to face communication more preferred than other means of communication because in this form of communication you are able to convince someone more and also you are able to build a form of trust with the individual.

In other forms of communication there can be misunderstanding or maybe the interpretation not conceived well. So, Face to face communication more effective than other means of communication

Other Questions
Given the system of equations, match the following items.x + 3y = 5x - 3y = -1 Which is a perfect square? PLEASE HELP!!!The following table shows a proportional relationship between A and B.A= 8, 24, 40 B= 3, 9, 15Write an equation to describe the relationship between A and B. I have to write a brochure for English class, but I can't think of anything to write about.... any ideas? Which is true about Pluto?OA. It is orbited by Charon.OB. It orbits between Uranus and Neptune.Oc. It takes 14 months to orbit the sun.D. There are no moons larger than it. can someone help with this question? Which of these is an example of symbolism in a painting Simplify the following algebraic expression: 6(2y + 8) - 2(3y - 2) How did satellites impact scientific understanding of space during the late 20th century?Satellites allowed astronauts to successfully navigate around the moon.Satellites allowed for more accurate predictions of solar flares.Satellites provided images from surrounding solar systems that confirmed the existence of other planets with water.Satellites provided high resolution photos that helped scientists research the origins of the universe. Which of the following elements is a nonmetal? a. selenium (Se) b. yttrium (Y) c. barium (Ba) d. calcium (Ca) e. All of these are metals. What effect did world war II have on empires that had been created by European nations?A. Nations used their colonies to rebuild after the war.B. Many nations granted freedom to their colonies.C. Overseas colonies came to the aid of the empires that ruled them.D. Nations were able to expand their colonies overseas. Which of the following is the equation of a line that passes through (-2,1) and (-4,-3)? 13.10. Suppose that a sequence (ao, a1, a2, ) of real numbers satisfies the recurrence relation an -5an-1+6an-20 for all n> 2. (a) What is the order of the linear recurrence relation? (b) Express the generating function of the sequence as a rational function. (c) Find a generic closed form solution for this recurrence relation. (d) Find the terms ao,a1,.. . ,a5 of this sequence when the initial conditions are given by ao 2 and a5 (e) Find the closed form solution when ao 2 and a 5. Consider the equation below. (If an answer does not exist, enter DNE.) f(x) = e8x + ex (a) Find the interval on which f is increasing. (Enter your answer using interval notation.) Find the interval on which f is decreasing. (Enter your answer using interval notation.) (b) Find the local minimum and maximum values of f. local minimum value local maximum value (c) Find the inflection point. (x, y) = Find the interval on which f is concave up. (Enter your answer using interval notation.) Find the interval on which f is concave down. (Enter your answer using interval notation.) If the charge of a particle doubles, what happens to the force acting on it? It doubles It gets reduced by a factor of two It stays the same A charge exerts a negative force on another charge. Does that mean that: Both charges are positive Both charges are negative the charges are of opposite signs please explain this throughly! thanks A ball is dropped from rest. What will be its speed when it hits the ground in each case. a. It is dropped from 0.5 meter above the ground. b. It is dropped from 5 meters above the ground. c. It is dropped from 10 feet above the ground. The three-dimensional motion of a particle on the surface of a right circular cylinder is described by the relations r = 2 (m) = t (rad) z = sin24 (m) Compute the velocity and acceleration of the particle at t=5 s. Assuming the character maydelle is a symbol, what does he mostly plausibly represent? A. taking from society without ever giving back B. overcoming one's circumstances to act morally C. judging others by appearances rather than by character D. taking the easy route to success instead of the moral one A solid sphere of mass 4.0 kg and radius 0.12 m starts from rest at the top of a ramp inclined 15, and rolls to the bottom. The upper end of the ramp is 1.2 m higher than the lower end. What is the linear speed of the sphere when it reaches the bottom of the ramp Read the excerpt from "The Miracle Worker" and answer the question: 50 points!!!75 if you get brainliest!!!Kate (cuts in). Miss Annie, before you came we spoke of putting her in an asylum.[ANNIE turns back to regard her. A pause.]Annie. What kind of asylum?Keller. For mental defectives.Kate. I visited there. I cant tell you what I saw, people likeanimals, withrats, in the halls, and(She shakes her head on her vision.) What else are we to do, if you give up?Annie. Give up?Kate. You said it was hopeless.Annie. Here. Give up, why, I only today saw what has to be done, to begin! (She glances from KATE to KELLER, who stare, waiting; and she makes it as plain and simple as her nervousness permits.) Iwant complete charge of her.Keller. You already have that. It has resulted inAnnie. No, I mean day and night. She has to be dependent on me.Kate. For what?Annie. Everything. The food she eats, the clothes she wears, fresh(She is amused at herself, though very serious.)air, yes, the air she breathes, whatever her body needs is aprimer,9 to teach her out of. Its the only way, the one who lets her have it should be her teacher. (She considers them in turn; they digest it, KELLER frowning, KATE perplexed.) Not anyone who loves her, you have so many feelings they fall over each other like feet, you wont use your chances and you wont let me.Kate. But if she runs from youto usAnnie. Yes, thats the point. Ill have to live with her somewhere else.Keller. What!Annie. Till she learns to depend on and listen to me.Kate (not without alarm). For how long?Annie. As long as it takes. (A pause. She takes a breath.) I packed half my things already.Keller. MissSullivan![But when ANNIE attends him he is speechless, and she is merely earnest.]Annie. Captain Keller, it meets both your conditions. Its the one way I can get back in touch with Helen, and I dont see how I can be rude to you again if youre not around to interfere with me.Keller (red-faced). And what is your intention if I say no? Pack the other half, for home, and abandon your charge totoAnnie. The asylum? (She waits, appraises KELLERS glare and KATES uncertainty, and decides to use her weapons.) I grew up in such an asylum. The state almshouse. (KATEs head comes up on this, and KELLER stares hard; ANNIES tone is cheerful enough, albeit level as gunfire.) Ratswhy, my brother Jimmie and I used to play with the rats because we didnt have toys. Maybe youd like to know what Helen will find there, not on visiting days? One ward was full of theold women, crippled, blind, most of them dying, but even if what they had was catching there was nowhere else to move them, and thats where they put us. There were younger ones across the hall, prostitutes mostly, with T.B.,10 and epileptic fits, and a couple of the kind whokeep after other girls, especially young ones, and some insane. Some just had the D.T.s.11 The youngest were in another ward to have babies they didnt want, they started at thirteen, fourteen. Theyd leave afterward, but the babies stayed and we played with them, too, though a lot of them hadsores all over from diseases youre not supposed to talk about, but not many of them lived. The first year we had eighty, seventy died. The room Jimmie and I played in was the deadhouse, where they kept the bodies till they could digKate (closes her eyes). Oh, my dearAnnie. the graves. (She is immune to KATES compassion.) No, it made me strong. But I dont think you need send Helen there. Shes strong enough. (She waits again; but when neither offers her a word, she simply concludes.) No, I have no conditions, Captain Keller.How does Annie's description of the asylum in "The Miracle Worker" affect the Captain and Mrs. Keller? If you were Helen's parent, how would it affect you?