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
andrew-mc [135]
3 years ago
9

Which of the following headlines about the French Revolution is not true?

Engineering
1 answer:
Sever21 [200]3 years ago
3 0

Answer:

d) "Napoleon Declares Himself Holy Roman Emperor"

Explanation:

The French Revolution is defined as a period of the major social upheaval which began in the year 1787 and lasted till year 1799. This revolution completely redefined the the very nature of the political power in France. and also the relationship between the rulers of France and the people they governed.

The 1789 Estates-General was the 1st meeting since year 1614 of the French Estates-General. It is a general assembly which represents the French estates of  realm.

During the French revolution was at peak, the National Assembly issued the Declaration of the rights of the man to the public.

Maximilien Robespierre was considered to be one of the most influential figure and most important statesman during the French Revolution.

Thus all the options (a),(b) and (c) are headlines about the French Revolution, except option (d).

You might be interested in
python Write a program that asks a user to type in two strings and that prints •the characters that occur in both strings. •the
Yuliya22 [10]

Answer:

see explanation

Explanation:

#we first get the elements as inputs

x = input("enter string A :")

y = input("enter string B :")

#then we make independent sets with each

x = set(x)

y = set(y)

#then the intersection of the two sets

intersection = set.intersection(x,y)

#another set for the alphabet

#we use set.difference to get the elements present in x and not in y, and

#viceversa, finally we get the difference between the alphabet and the #intersection of the elements in our strings

z = set('abcdefghijklmnopqrstuvwxyz')

print('\nrepeated :\n',intersection)

print('differences :\n',' Items in A and not B\n',

set.difference(x,y),'\nItems in B and not A\n',

set.difference(y,x))

print('\nItems in neither :\n',set.difference(z,intersection))

8 0
3 years ago
The process _______ boosted the production of fertilizers and strengthened the agriculture industry.
ANTONII [103]

Answer:

Process of Green Revolution

Explanation:

Green Revolution is a process which started its initiatives between the 1950s and 1960s, a technological research process, that increase agricultural productions through various systematic approach, which are different from the traditional methods. These technological approach includes:

1.  Utilization of new varieties with a high yield potential, in addition with adequate water  supply, pesticides and fertilizers.

2.  New methods of cultivation and mechanization

Hence, the process of Green Revolution boosted production of fertilizers and strengthen the agriculture industry as a whole.

6 0
3 years ago
An automotive fuel has a molar composition of 85% ethanol (C2H5OH) and 15% octane (C8H18). For complete combustion in air, deter
slava [35]

Answer:

a) 1

b) 1813.96 MJ/kmol

c) 32.43 MJ/kg ,  1980.39 MJ/Kmol

Explanation:

molar mass of  ethanol (C2H5OH) = 46 g/mol

molar mass of   octane (C8H18) = 114 g/mol

therefore the moles of ethanol and octane

ethanol =  0.85 / 46

octane = 0.15 / 114

a) determine the molar air-fuel ratio and air-fuel ratio by mass

attached below

mass of air / mass of fuel = 12.17 / 1 = 12.17

b ) Determine the lower heating value

LHV  of  ( C2H5OH) = 26.8 * 46 = 1232.8 MJ/kmol

LHV  of (C8H18). = 44.8 mj/kg * 114 kg/kmol = 5107.2 MJ/Kmol

LHV ( MJ/kmol)  for fuel mixture = 0.85 * 1232.8 + 0.15 * 5107.2 = 1813.96 MJ/kmol

c) Determine higher heating value  ( HHV )

HHV of (C2H5OH) = 29.7 * 46 = 1366.2 MJ/kmol

HHV of C8H18 = 47.9 MJ/kg * 114 = 5460.6 MJ/kmol

HHV  in MJ/kg  = 0.85 * 29.7 + 0.15 * 47.9  = 32.43 MJ/kg

HHV in  MJ /kmol  =  0.85 * 1366.2 + 0.15 * 5460.8 = 1980.39 MJ/Kmol

4 0
2 years ago
In the circuit below I 1=20mA V1=10 R1=400 R2=2000 R3=1000. Use node analysis to find R2
Hatshy [7]

Answer:0.2A

Explanation:

First, write KCL

i1-i2-i3=0

Then, replace currents with viltages and resistors.

V2-10v/100-v2/200-v2/400=0

V2-40=0

V2=40v

I hope it was helpful

6 0
3 years ago
For this problem, you may not look at any other code or pseudo-code (even if it is on the internet), other than what is on our w
sergiy2304 [10]

Answer:

(a)

(i) pseudo code :-

current = i

// assuming parent of root is -1

while A[parent] < A[current] && parent != -1 do,

if A[parent] < A[current] // if current element is bigger than parent then shift it up

swap(A[current],A[parent])

current = parent

(ii) In heap we create a complete binary tree which has height of log(n). In shift up we will take maximum steps equal to the height of tree so number of comparison will be in term of O(log(n))

(b)

(i) There are two cases while comparing with grandparent. If grandparent is less than current node then surely parent node also will be less than current node so swap current node with parent and then swap parent node with grandparent.

If above condition is not true then we will check for parent node and if it is less than current node then swap these.

pseudo code :-

current = i

// assuming parent of root is -1

parent is parent node of current node

while A[parent] < A[current] && parent != -1 do,

if A[grandparent] < A[current] // if current element is bigger than parent then shift it up

swap(A[current],A[parent])

swap(A[grandparent],A[parent])

current = grandparent

else if A[parent] < A[current]

swap(A[parent],A[current])

current = parent

(ii) Here we are skipping the one level so max we can make our comparison half from last approach, that would be (height/2)

so order would be log(n)/2

(iii) C++ code :-

#include<bits/stdc++.h>

using namespace std;

// function to return index of parent node

int parent(int i)

{

if(i == 0)

return -1;

return (i-1)/2;

}

// function to return index of grandparent node

int grandparent(int i)

{

int p = parent(i);

if(p == -1)

return -1;

else

return parent(p);

}

void shift_up(int A[], int n, int ind)

{

int curr = ind-1; // because array is 0-indexed

while(parent(curr) != -1 && A[parent(curr)] < A[curr])

{

int g = grandparent(curr);

int p = parent(curr);

if(g != -1 && A[g] < A[curr])

{

swap(A[curr],A[p]);

swap(A[p],A[g]);

curr = g;

}

else if(A[p] < A[curr])

{

swap(A[p],A[curr]);

curr = p;

}

}

}

int main()

{

int n;

cout<<"enter the number of elements :-\n";

cin>>n;

int A[n];

cout<<"enter the elements of array :-\n";

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

cin>>A[i];

int ind;

cout<<"enter the index value :- \n";

cin>>ind;

shift_up(A,n,ind);

cout<<"array after shift up :-\n";

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

cout<<A[i]<<" ";

cout<<endl;

}

Explanation:

8 0
3 years ago
Other questions:
  • The popularity of orange juice, especially as a breakfast drink, makes it an important factor in the economy of orange-growing r
    14·1 answer
  • Given the following data, plot the stress-strain curves for the two unknown materials on the same set of stress-strain axes. Den
    9·1 answer
  • The lab technician you recently hired tells you the following: Boss, an undisturbed sample of saturated clayey soil was brought
    6·1 answer
  • The price of a single item within a group of items is
    8·1 answer
  • Ma puteti ajuta cu un argument de 2 pagini despre inlocuirea garniturii de etansare de pe pistonul etrierului de franare la un a
    10·1 answer
  • Given below are the measured streamflows in cfs from a storm of 6-hour duration on a stream having a drainage area of 185 mi^2.
    11·1 answer
  • Help me asap I rely need help u will be my fav​
    8·2 answers
  • The complexity of bfs and dfs
    11·1 answer
  • Were women treated as equals to men in early aviation history?
    14·2 answers
  • Which type of artificial intelligence (ai) can repeatedly perform tasks of limited scope?
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!