IF 2+2=4 AND 5+5 IS 10 __________

Answers

Answer 1

Answer:

8+8=16?

Explanation:

Answer 2

Answer:

Then 11+11 IS 22

Explanation:


Related Questions

A cookie recipe calls for the following ingredients: • 1.5 cups of sugar • 1 cup of butter • 2.75 cups of flour The recipe produces 48 cookies with this amount of ingredients. Write a program that asks the user how many cookies they want to make and then displays the number of cups of each ingredient needed for the specified number of cookies in the following format: You need 5 cups of sugar, 3 cups of butter, and 7 cups of flour. Note: Don’t worry about formatting the numbers in the output.

Answers

Answer:

This program is written using c++ programming language

Comments are used to explain difficult lines

See attachment for .cpp source files

Program starts here

#include<iostream>

using namespace std;

int main()

{

// Calculate number of ingredient that makes up 48 cookies

float num_sugar = 1.5/48;

float num_butter =1.0/48;

float num_flour = 2.75/48;

//Declare integer variable to get number of cookies from user

int n;

// Prompt user for number of cookies needed

cout<<"Enter number of cookies: ";

cin>>n;

// Calculate equivalent amount of ingredient

num_sugar *= n;

num_butter *= n;

num_flour *= n;

// Display Result

cout<<"You need "<<num_sugar<<" cups of sugar, "<<num_butter<<" cups of butter, and "<<num_flour<<" cups of flour.";

return 0;

}

//End of Program

Create a text file named employee.dat containing the following data: b. Write a C++ program to read the employee.dat file created in Exercise 5a and produce a duplicate copy of the file named employee.bak.

Answers

Answer:

1000 500 250 125 the output

Explanation:

write a program using integers userNum and x as input,  userNum divided by

x four times.  EX : If  the input is 2000 2 the output is 1000 500 250 125

Suppose we have a JDBC Connection object c to a database, and this database has a relation R (name, address, phone) Columns name and address are of string type, while phone is an integer. The following objects are also declare: Statement s-null; q = "SELECT address, phone FROM R" + "WHERE name = 'Bill Gates' ". ng Resultset r null; There are many methods that could be applied to the given variables. Whena method is applied to r, assume that it holds the result of query q. Then, identify a correct use of a method from the list below. oa) r s.executeQuery (q)i b) r-executeQuery(q) O) c) string a = r.ge t String (0); d) String x - r.getInt(1);

Answers

Answer:

The correct answer is option A r s.executeQuery (q) ;

Explanation:

Solution

The execute Query()  method is a method or technique derived from Statement class object. this type of method or techniques implements or executes  the SQL query and returns the table in the way of Result Set object.

The Option B, C, and the D in this case is not correct.

You are currently working in a mid-tier accounting firm. In an engagement meeting with a client, the management of your client is concerned that the audit tests that you perform will disrupt operations. Your client has recently implemented a data warehouse and the management suggests that you draw the data for analytical reviews and substantive testing from the data warehouse instead of the operational database. The management points out that operational data are copied weekly into the data warehouse and all data you need are contained there. Outline your response to the management’s proposal and mention any concerns you might have. (maximum 300 words)

Answers

Answer:

The answer "Only when an auditor is free to perform his responsibilities should the audit contract be accepted. There should be no stress on an investigator but no independence".

Explanation:

In the essence of the data store, huge storage of the information, that is used to collect from either a variety of sources within the same company. The DTC  is often used as an analytics capability (OLAP frameworks) because a transfer can be focussed on the data structure. It's also currently easier for organizations to end things or assessment and determine the best information with full of data from one destination.

Create a complete warehouse:  It is unlikely, however, that each one of your getting your information at that same single place seems to be the greatest flexibility for providing a database server.  

Below are various benefits of providing data storage:  

Saving time:  In the company's ease of accessing data from different sources at the data center, that ensures no time to obtain information from other sources is lost. Higher trust: Its data is automatically moved into your data center in an ordered structure, rather than being replaced by human activity, as you'll be more sure that your information is nice and clean, complete and accurate.  Growing knowledge: In the data, the warehouse designs the information so that it can be easily analyzed.  Increasing quality: it would be far easier to manage individuals who reach your data whenever an association position is integrated. Data warehouse allows security fully flexible, allowing users to access all the systems and lock all of them.  

Following are its specific approach to creating a data center, which will you need to develop the core architecture in three sections:  

The stocking(storage) algorithm,  Software and working  HR.

Storage: it's the foundation of the structure and your warehouse lives there. The inner server is the client's office 's internal device as well as the cloud is an electronic storage solution that relies on external servers.

Software: It is a valuable method of private cloud architectural design. For two classes, centralization and visual imagery are commonly isolated.  

Human resources: It is the part of data warehouse operations which is extremely important for a workable example. To keep your warehouse running, you must use new circumstances in your company.

why ‘illegal contract’ is a contradiction in terms?

Answers

Answer:

An Illegal contract or agreement is a contraction in terms when a contract is a legal obligation, illegal contract is viewed as a contradiction in terms.

Explanation:

Solution

An Illegal contract is called a contradiction for the following reasons listed below:

When a contract has a term that is obligatory, it is called a legal contract.

According to the rules of terms, when a contract is not done legally, it is considered an illegal contract.

On the common law of a contract or agreement, when a court does not apply or impose in any case or otherwise for a contract, it is seen as illegal.

Bell LaPadula (BLP) is a security model
a) that can ensure the confidentiality of the classified data as well as its integrity
b) that can ensure the confidentiality of the classified data but not its integrity
c) that can ensure neither the confidentiality of the classified data nor its integrity
d) that can't ensure the confidentiality of the classified data but can its integrity

Answers

Answer:

Option (b) is the correct answer to this question.

Explanation:

BLP model can ensure classified data confidentiality, but it is not integrity. The Bell-LaPadula model is about secrecy. As just that, having read information would jeopardize privacy and security at a greater position than what has been permitted. The Bell – LaPadula Model (BLP) is a finite state model being used for political and police installations to implement authentication.

Other options are incorrect because they are not related to the given scenario.  

Write a program that reads the lengths of the sides of a triangle from the user. Compute the area of the triangle using Heron's formula (below), in which s represents half of the perimeter of the triangle and a, b, and c represent the lengths of the three sides. Print rhe area to three decimal places.

Area= √ s(s-a)(s-b)(s-c)

Answers

Answer:

The java program is as follows.

import java.util.Scanner;

import java.lang.*;

public class Area

{

   //variables to hold the values

   static double a, b, c;

   static double s;

   static double area;

public static void main(String[] args) {

    //scanner class object created

    Scanner sc = new Scanner(System.in);

 System.out.print("Enter the first side: ");

 a=sc.nextInt();

 System.out.print("Enter the second side: ");

 b=sc.nextInt();

 System.out.print("Enter the third side: ");

 c=sc.nextInt();

 s=(a+b+c)/2;

 //function of Math class used

 area = Math.sqrt( s*(s-a)*(s-b)*(s-c) );

 //result displayed with 3 decimal places

 System.out.printf("The area of the triangle is %.3f", area);  

}

}

OUTPUT

Enter the first side: 1

Enter the second side: 1

Enter the third side: 1

The area of the triangle is 0.433

Explanation:

1. The variables to declare the three sides of the triangle, the semi-perimeter and the area of the triangle are declared with double datatype. All the variables are declared at class level and hence, declared with keyword, static.  

2. Inside main(), an object of the Scanner class is created.

Scanner sc = new Scanner(System.in);

3. Using the Scanner class object, user input is taken for all the three sides of the triangle.

4. Following this, the semi-perimeter is computed as shown.

s=(a+b+c)/2;

5. The area of the triangle is computed using the given formula which is implemented as shown.

area = Math.sqrt( s*(s-a)*(s-b)*(s-c) );

6. The sqrt() method of the Math class is used while computing the area of the triangle.

7. The area is displayed with three decimals. This is done using the printf() method as shown.

System.out.printf("The area of the triangle is %.3f", area);

8. The program is saved with the same name as the name of the class having the main() method.

9. The class having the main() method is always public.

The data files from a computer-assisted questionnaire software program can be downloaded at the researcher's discretion; however, different formatting options, including SPSS-readable files, may not be available. Group of answer choices True False

Answers

Answer:

False.

Explanation:

When data files are sourced from a computer-assisted questionnaire software program. The data files can be downloaded at the researcher's discretion, different formatting options can be used on the data files, and SPSS (Statistical Product and Service Solutions)-readable files are also available.

For instance, the CAPI (Computer-Assisted Personal Interview), CAWI (Computer-Assisted Web Interview)  and CASI (Computer-Assisted Self Interview) software program collects data from potential targeted population in a survey. These data can be downloaded by the originator of the survey with its SPSS (Statistical Product and Service Solutions)-readable files.

Also, if the researcher wishes to edit or format the data, it is very possible to achieve.

Other Questions
Its raining today, so unless you wanna get drenched, youre gonna need your umbrella. Answers? can someone help me please Apple, Inc. reported research and development expense of $10,045 million on its 2016 income statement. This expense included many types of costs. Which of the following types of costs would not be included in the $10,045 million? Group of answer choices Salaries and wages for R&D personnel Costs of applying for FDA approval Depreciation on equipment used in experiments Supplies and inventory related to R&D activities and new-product sales None of the above Was the Mexican American War a justifiable war?GIVE 2 EXAMPLE FROM YOUR KNOWLEDGE Transcendent Technologies is deciding between developing a complicated thought-activated software, or a simple voice-activated software. Since the thought-activated software is complicated, it only has a 30% chance of actually going through to a successful launch, but would generate revenues of $50 million if launched. The voice-activated software is simple and hence has a 80% chance of being launched but only generates a revenue of $10 million. If the complicated technology costs $10 million to develop while the simple technology costs $2 million to develop, which technology is more profitable to develop? Explain briefly.a. The simple voice-activated softwareb. The complicated thought-activated softwarec. Neither of the softwared. Need more information What is the value of 3/10 to the third power Fill in the mission blank:PLS ASAP I HAVE TO DO THIS IN 10 MINS In the book holes, what led to Stanley's arrest? How do you know? How do I see my questions again? The one I made... Is this statement true or false?Only the small countries can bring a suit against larger countries during the dispute settlement process of key trade organizations. You need to use the scientific method and ______ in order to work as an environmental scientist. El mundo tiene tanta gente viviendo en el lo que significa que desperdiciamos mucho y esto causa grandes problemas en todo el mundo. que podemos hacer para ayudar a resolver este problema? Round 3.44570830811 to the nearest hundred-thousandth, Damaged dna cause the.ell to grow how ? What are some of the things that make Macbeth a terrible king? Why do you think some people are still loyal to him and have stayed with him to fight? Mango Company applies overhead based on direct labor costs. For the current year, Mango Company estimated total overhead costs to be $600,000, and direct labor costs to be $300,000. Actual overhead costs for the year totaled $615,000, and actual direct labor costs totaled $335,000. At year-end, the balance in the Factory Overhead account is a: Mineral-rich Zambia is one of the world's most important sources of uranium. It also is a source of copper, tin, diamonds (mainly industrial), gold, cobalt and zinc. Agricultural products include palm oil and kernels, cottonseed, rubber, cotton lint, coffee, peanuts, sweet potatoes, yams, and cassava. How many cotton products does Zambia produce?A. Two B. One C. Three D. Six. Assume that the probability of a driver getting into an accident 5.3% and the average cost of an accident is $16,806.25 and the overhead cost for an insurance company per insured driver is $110 what should be the driver's insurance premium? A. $1,042.79 B. $1,242.93 C. $1,166.91 D.$1,000.73 If x=6 is the ority x-intercept of the graph of a quadratic equation, which statement best describes the direciminant of theequation?The discriminant is 0.The discriminant is 6The discriminant is positive.The discriminant is negative PLEASE HELP ASAP MATH