1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
ivann1987 [24]
3 years ago
11

Question 54 (1 point)

Engineering
2 answers:
Rudiy273 years ago
6 0
The answer should be Oc 15
Sergeeva-Olga [200]3 years ago
6 0
Oa 8 should be the answer of the moisture of lumber frame for the house
You might be interested in
Dowry practice is considered to be a social problem . justify<br>​
Artemon [7]

Answer:

mark me brailinist

Explanation:

Dowry is a social evil in the society, that has caused unimaginable tortures and crimes towards women. The evil has taken lives of women from all stratas of society - be it poor, middle class or the rich. However it is the poor who succumb and fall prey to it, more due to their lack of awareness and education.

It is because of the dowry system, that daughters are not valued as much as the sons. In the society, many a times it has been seen that they are seen as a liability and are often subjected to subjugation and are given second hand treatment may it be in education or other amenities.

Today the government has come up with many laws and reforms, not only to eradicate the dowry system, but also to uplift the status of the girl child by bringing in many schemes.

It is now for the society at large to become aware and understand the situation. It up to all of us to take active steps in bringing about the necessary change and stop either giving or taking dowry. We must all know that we should start valuing our daughters first, so that others know their value once they grow up.

7 0
2 years ago
Python:
stira [4]

Answer:

# Python Program to Print  

# all subsets of given size of a set  

 

import itertools  

 

def findsubsets(s, n):  

   return list(itertools.combinations(s, n))  

 

# Driver Code  

s = {1, 2, 3}  

n = 2

 

print(findsubsets(s, n))

-----------------------------------------------

# Python Program to Print  

# all subsets of given size of a set  

 

import itertools  

# def findsubsets(s, n):  

def findsubsets(s, n):  

   return [set(i) for i in itertools.combinations(s, n)]  

     

# Driver Code  

s = {1, 2, 3, 4}  

n = 3

 

print(findsubsets(s, n))

-------------------------------------------------------------

# Python Program to Print  

# all subsets of given size of a set  

 

import itertools  

from itertools import combinations, chain  

 

def findsubsets(s, n):  

   return list(map(set, itertools.combinations(s, n)))  

     

# Driver Code  

s = {1, 2, 3}  

n = 2

 

print(findsubsets(s, n))

4 0
4 years ago
Ceramics has the weakness of resisting high compression force but low tensile force. a)-True b)-False
Nesterboy [21]

Answer: b) False

Explanation:Ceramic is brittle in nature therefore it has a tendency that it is strong during the compression and it tends to be weak during the high tensile forces. While the tensile forces are applied , ceramics are not able to yield the stress and cause breakage of the material due to high tension but does not face any fault during the compression.

7 0
4 years ago
1 // Lab 2 tryIt2A 2 #include 3 using namespace std; 4 5 int main() 6 { int x = 1, y = 3; 7 int X = 2, Y = 4; 8 9 cout &lt;&lt;
padilas [110]

Answer:

Here is the complete program:

#include <iostream>

 using namespace std;    

 int main()

 {  int x = 1, y = 3;  

 int X = 2, Y = 4;  

 cout << "tryIt 2A" <<endl;

   cout << x << y << endl;  

   cout << "x" << "y" << endl;  

   cout << X << " " << Y << endl;

   cout << 2 * x + y << endl;  

   cout << 2 * X + Y << endl;  

   //cout << x + 2*y << endl;  

   cout << "x = ";  

   cout << x;  

   cout << " y = ";  

   cout << y;        

   return 0;

   }

Explanation:

I will explain the code line by line in the comment with each line of code and the output of each cout statement.

  • int x = 1, y = 3;  

This statement assigns value 1 to integer variable x and 3 to int variable y

  • int X = 2, Y = 4;  

This statement assigns value 2 to integer variable X and 4 to int variable Y As C++ is a case sensitive language so variable x and y are different from variables X and Y.

  • cout << "tryIt 2A" <<endl;

This statement has cout which is used to display output on the screen. So the output displayed by this cout statement is:

tryIt2A

  • cout << x << y << endl;  

This statement will print the values stored in x and y variables. So output displayed by cout statement here is 1 and 3. As there is not space or next line specified in the statement so output displayed will look like this:

13

  • cout << "x" << "y" << endl;  

This statement will display x and y but these are not the variable x and y. They are enclosed in double quotation marks so they are treated as strings not variables so the output displayed is:

xy

  • cout << X << " " << Y << endl;

This statement will print the values stored in X and Y variables. So output displayed by cout statement here is 2 and 4. As there is  space " " specified in the statement so 2 and 4 are displayed with a space between them so the output displayed will look like this:

2 4

  • cout << 2 * x + y << endl;  

This statement has an arithmetic operation in which 2 is multiplied by the values stored in variable x and then the result is added by value of y. So  2*1 = 2 and 2 + 3 = 5. So the result produced by this cout statement is:

5

  • cout << 2 * X + Y << endl;  

This will work same as above cout statement but the only difference is that the values of capital X and Y variables are calculated here. So 2 * 2 = 4 and then 4 + 4 = 8. The result produced by this cout statement is:

8

  • //cout << x + 2*y << endl;  

This is a comment because before this statement // is written which is used for single line comment. So compiler ignores comments and will not compile this statement.

  •    cout << "x = ";  

This will display "x = " as it is not variable but it is treated as a line to be displayed on the screen. So cout statement displays:

x =

  • cout << x;

This will print the value stored in x variable as there are no double quotes around x so it is a variable which contains value 1. In the above statement there is no endl so the output of this cout statement is displayed with the output of previous cout statement. So the following line is displayed on screen:

x = 1

  • cout << " y = ";

This will display "y = " as it is not variable but it is treated as a line to be displayed on the screen. In the above statement there is no endl so the output of this cout statement is displayed with the output of previous cout statement. So the following line is displayed on screen

x = 1 y =

  • cout << y;    

This will print the value stored in y variable as there are no double quotes around y so it is a variable which contains value 3. In the above statement there is no endl so the output of this cout statement is displayed with the output of previous cout statement. So the following line is displayed on screen:

x = 1 y = 3

So the output of the entire program along with the program is attached as screenshot.

6 0
4 years ago
In the following code, determine the values of the symbols here and there. Write the object code in hexadecimal. (Do not predict
allsm [11]

Answer:

Answer explained below

Explanation:

The value of here is 9

The value of there is hexadecimal value of DECO here, d = 0x39 aaaa (aaaa is the memory address of here )

We have the object code :-

let's take there address is 0x0007

0x0005 BR there :- 0x120020

0x0007 here: .WORD 9

310003 there: DECO here,d - 0x390007

310005 STOP

.END

4 0
3 years ago
Other questions:
  • What is an isochoric process? b) Can heat be exchanged in an isochoric process? c) A 100L container holding an ideal gas at an i
    11·1 answer
  • Determine whether or not each of the following four transaction execution histories is serializable. If a history is serializabl
    7·1 answer
  • How to build a machine that can create anything
    10·1 answer
  • (This assignment could be done as a modification of the program in Programming Challenge 2.) Write a program char asks rhe user
    13·1 answer
  • Weight limit for a pallet
    15·2 answers
  • (30 pts) A simply supported beam with a span L=20 ft and cross sectional dimensions: b=14 in; h=20 in; d=17.5 in. is reinforced
    13·1 answer
  • 2.13 LAB: Expression for calories burned during workout
    5·1 answer
  • What kinds of problems or projects would a civil engineer work on?
    14·1 answer
  • Comparison of copper and aluminium conductors looking at their properties
    15·1 answer
  • What was a campaign belief in the 1980 presidential election? Carter called for a stronger national defense. Carter promised to
    7·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!