Plzz help will mark brainliest

Plzz Help Will Mark Brainliest

Answers

Answer 1

Answer:

11. 3 dimensions

12. ( i believe its number 3)

13. 2 option

14. Natural Light

15. Development

Explanation:


Related Questions

In Python what are the values passed into functions as input called?

Answers

formal parameter or actual parameter i think

Popular periodicals might include newspapers

True or false?

Answers

Answer:

False

Explanation:

Because there is no way that would be correct!

Answer:

True

Explanation:

It makes sense

~Plz tap the crown ~

~Thank you~


Landing pages in a foreign language should never be rated fully meets?

Answers

Answer:

if the landing page provides all kind information of information as to that site people usually like it or will most likely enjoy it

BRAINLIEST?????

Explanation:

Write a program second.cpp that takes in a sequence of integers, and prints the second largest number and the second smallest number. Note that in the case of repeated numbers, we really mean the second largest and smallest out of the distinct numbers (as seen in the examples below). You may only use the headers: and . Please have the output formatted exactly like the following examples: (the red is user input)

Answers

Answer:

The program in C++ is as follows:

#include <iostream>

#include <vector>

using namespace std;

int main(){

   int n;

   cout<<"Elements: ";

   cin>>n;

   vector <int>num;

   int input;

   for (int i = 1; i <= n; i++){        cin>>input;        num.push_back(input);    }

   int large, seclarge;

   large = num.at(0);      seclarge = num.at(1);

  if(num.at(0)<num.at(1)){     large = num.at(1);  seclarge = num.at(0);   }

  for (int i = 2; i< n ; i ++) {

     if (num.at(i) > large) {

        seclarge = large;;

        large = num.at(i);

     }

     else if (num.at(i) > seclarge && num.at(i) != large) {

        seclarge = num.at(i);

     }

  }

  cout<<"Second Largest: "<<seclarge<<endl;

  int small, secsmall;

  small = num.at(1);       secsmall = num.at(0);

  if(num.at(0)<num.at(1)){ small = num.at(0);  secsmall = num.at(1);   }

  for(int i=0; i<n; i++) {

     if(small>num.at(i)) {  

        secsmall = small;

        small = num.at(i);

     }

     else if(num.at(i) < secsmall){

        secsmall = num.at(i);

     }

  }

  cout<<"Second Smallest: "<<secsmall;

  return 0;

}

Explanation:

See attachment for explanation

Given positive integer n, write a for loop that outputs the even numbers from n down to 0. If n is odd, start with the next lower even number.

Answers

Answer:

if(n % 2 == 0){

   for(int i = n; i >= 0; i-=2){

        System.out.println(i);

    }

}

else{

     for(int i = n - 1; i >= 0; i-=2){

        System.out.println(i);

     }

}

Sample output

Output when n = 12

12

10

8

6

4

2

0

Output when n = 21

20

18

16

14

12

10

8

6

4

2

0

Explanation:

The above code is written in Java.

The if block checks if n is even by finding the modulus/remainder of n with 2.  If the remainder is 0, then n is even. If n is even, then the for loop starts at i = n. At each cycle of the loop, the value of i is reduced by 2 and the value is outputted to the console.

If n is odd, then the else block is executed. In this case, the for loop starts at i = n - 1 which is the next lower even number. At each cycle of the loop, the value of i is reduced by 2 and the value is outputted to the console.

Sample outputs for given values of n have been provided above.

How to use the RANK Function in Microsoft Excel

Answers

Answer:

=RANK (number, ref, [order])

See Explanation

Explanation:

Literally, the rank function is used to rank values (i.e. cells) in a particular order (either ascending or descending).

Take the following instances:

A column used for total sales can use rank function to rank its cells from top sales to least.

A cell used for time can also use the rank function to rank its cells from the fastest time to slowest.

The syntax of the rank function is:

=RANK (number, ref, [order])

Which means:

[tex]number \to[/tex] The rank number

[tex]ref \to[/tex] The range of cells to rank

[tex]order \to[/tex] The order of ranking i.e. ascending or descending. This is optional.

njvekbhjbehjrbgvkheb

Answers

Answer:

shvajskzhzjsbssjjsusisj

Write functions to compute a subset, find member, union, and intersection of sets. Follow the steps below:

1. Read two integers from the user.
2. Suppose one of the integers is 2311062158. The binary equivalent of this integer stored in a register will be 1000 1001 1100 0000 0000 0010 1000 1110. This data should be regarded as bit strings representing subsets of the set {1, 2, … 32}. If the bit string has a 1 in position i, then element i is included in the subset. Therefore, the string: 1000 1001 1100 0000 0000 0010 1000 1110 corresponds to the set: {2, 3, 4, 8, 10, 23, 24, 25, 28, 32}.
3. Print out members of the set from smaller to larger. You can do a loop from 1 to 32. Load a masking bit pattern that corresponded to the position number of the loop counter (0x00000001 for 1). Isolate the bit in the operand by using the AND operation. If the result of the AND is not 0 then the loop counter is in the set and should be displayed. Increment the counter and shift the masking bit pattern to the left.
4. Read a number from the user. Determine if that element is a member of the given sets.
5. Determine the union of two sets.
6. Determine the intersection of two sets.
7. Implement a loop back to the main function. See the prompts below: "Enter the first number:" "Enter the second number:" "Members of Set 1:" "Members of Set 2:" "Enter an element to find:" "It is a member/ not a member of set 1" "It is a member/ not a member of set 2" "Union of the sets:" "Intersection of the sets:" "Do you want to compute set functions again?"
8. Test the program using the following data:

Enter the first number: 99999
Enter the second number: 111445
Members of set 1: 1 2 3 4 5 8 10 11 16 17
Members of set 2: 1 3 5 7 9 10 13 14 16 17
Enter an element to find: 7
It is not a member of set 1
It is a member of set 2
Union of the sets: 1 2 3 4 5 7 8 9 10 11 13 14 16 17
Intersection of the sets: 1 3 5 10 16 17

Answers

Explanation:

Suppose one of the integers is 2311062158. The binary equivalent of this integer stored in a register will be 1000 1001 1100 0000 0000 0010 1000 1110. This data should be regarded as bit strings representing subsets of the set {1, 2, … 32}. If the bit string has a 1 in position i, then element i is included in the subset. Therefore, the string: 1000 1001 1100 0000 0000 0010 1000 1110 corresponds to the set: {2, 3, 4, 8, 10, 23, 24, 25, 28, 32}.

Which of the following describes a characteristic of organic light-emitting diodes (OLEDs) used in clothing?

uniform

flexible

transparent

sizeable

Answers

Flexible

Hopes this helps!

Answer:

Yes the answer is flexible.

Explanation:

I took the test and got it right.

Other Questions
The price of a stock, which pays no dividends, is $30 and the strike price of a one year European call option on the stock is $25. The risk-free rate is 4% (continuously compounded). Which of the following is a lower bound for the option such that there are arbitrage opportunities if the price is below the lower bound and no arbitrage opportunities if it is above the lower bound? A. $5.00 B. $5.98 C. $4.98 D. $3.98 E. $5.34 Make the expression below a perfect square by adding in a constant value: x^2+14x+_ can someone write me a short story about why you shouldn't bully people Can somebody recommend me some horror, psychological, yandere, and/or thriller anime?Anything besides these would be appreciated: 1. Angels of Death2. Shiki3. Re:Zero4. Corpse Party5. Magical Girl Site6. Happy Sugar Life7. SCHOOL-LIVE!8. Talentless Nana9. Higurashi10. Wonder Egg Priority11. Shadows House12. Blood C13. To Your Eternity14. Puella Magi Madoka Magica15. Another16. The Lost Village17. Serial Experiments Lain18. Chaos;Head what does standard devitation mean? Plz answer fast ASAP.... no links or files question: What makes a short story a "really good short story" (2-3 complete sentences) spanish speakers needed What are the structures of the pulmonary circuit, and in what order does blood run through them? right atrium and ventricle of the heart pulmonary veins lungs pulmonary arteryO left atrium and ventricle of the heart pulmonary artery lungs pulmonary veinsright atrium and ventricle of the heart pulmonary artery lungs pulmonary veinsO left atrium and ventricle of the heart pulmonary veins lungs pulmonary artery (the Godfather) What does Sonny do to Carlo, and how does Carlo obtain his revenge? The Spanish-American War:gave Cuba independence from Francewas declared when Spain seized American ships and sailorsgave the United States Guam, Puerto Rico, and the Philippinesall of the above A minute hand of a clock is 16cm long find the distance traveled by the tip of the minute hand in one hour. plsssssssssssss helppppppppppppppp What is the percent of increase from 4,000 to 10,000? Create one complete sentence for each of the following verbs using the tense given in parentheses. Use a different subject pronoun for each sentence. Example: tener (preterite)Yo tuve un examen ayer. 1. conocer (preterite)2. querer (imperfect)3. saber (preterite)4. poder (imperfect)5. ver (imperfect) part 3 what pic yall like how many grams of copper do you have if you have 2.00 moles of copper hey! please help ill give brainliest Ramundus spends 3/7 of his salary on games and 4/9 of his salary on expenses for a car. Does Ramundus spend more of his salary on games or on expenses for a car? Giving brainliest awnser if you help me with this Learn with an exampleIsaac earns $16 for each hour of babysitting. How many hours in all will it take Isaac toearn a total of $32? find the slope for (3,-6)(-1,4)show the steps