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
Nikolay [14]
3 years ago
10

A 4 stroke over-square single cylinder engine with an over square ratio of 1.1,the displacement volume of the engine is 245cc .T

he clearance volume is 27.2cc the bore of this engine is ?
Engineering
1 answer:
julia-pushkina [17]3 years ago
6 0

Answer:

10.007

Explanation:

Assuming we have to find out the compression ratio of the engine

Given information

Cubic capacity of the engine, V = 245 cc

Clearance volume, V_c = 27.2 cc

over square-ratio = 1.1

thus,

D/L = 1.1

where,

D is the bore

L is the stroke

Now,

Volume of the engine V =\frac{\pi}{4} D^2L

plugging values we get

245 = \frac{\pi}{4} D^3/1.1

Solving we get D =7 cm

therefore,  L= 7/1.1 =6.36 cm

Now,

the compression ratio is given as:

r =(V+V_c)/V_c

on substituting the values, we get

r = (245+27.2)/27.2 =10.007

Hence, Compression ratio = 10.007

You might be interested in
What kind of robot should i make
schepotkina [342]

Answer:

It really depends on what you want it to do. I would make one that does chores around the house so I don't have to.

Explanation:

4 0
2 years ago
Which statement describes the wave pattern of a high pitch
olga55 [171]

Answer:

I hope this helps the tops of the waves are close together

8 0
3 years ago
Some designers suggest that speech recognition should be used in a telephone menu system. This would allow users to interact wit
Ghella [55]

The designers suggest that speech recognition allows for spoken interaction or conversation and spoken prompts or commands.

Explanation:

The speech recognition is used when the user has physical impairments and hands are busy, eyes are occupied and the user cannot read.

We can save time with the usage of speech recognition system. The users are knowledgeable based on the actions available.

The problems faced in speech recognition system are in the noisy environment it has bad microphones and the commands should be learned and remembered.

The other obstacle is error correction is time consuming. the speech production has slow space to speech output provides privacy in public spaces. The disadvantage is it contains large amount of information.

5 0
4 years ago
Write the following statements as Prolog clauses, in the order given: If it is raining or snowing, then there is precipitation.
Anika [276]

Answer:

a. See Explanation Below

b. No

Explanation:

a.

Interpreting the statements line by line.

First, the prolog clauses need to be initialised, as follows:

:- dynamic freezing/0, precipitation/0, snowing/0, raining/0.

If it is raining or snowing, then there is precipitation.

The statement is splited in two.

1st, if it is raining then there is precipitation

Or

2nd, if it is raining, then there is precipitation.

So, both statements are given as:

precipitation :- raining.

precipitation :- snowing.

If it is freezing and there is precipitation, then it is snowing.

This is a conditional statement that checks if it is freezing AND there's is precipitation.

If true, then it is snowing.

The above statement is given as:

snowing :- freezing, precipitation.

If it is not freezing and there is precipitation, then it is raining.

This is a conditional statement that checks if it is not freezing AND there's is precipitation.

If true, then it is raining.

The not clause is represented as \+

The above statement is the given as:

raining :- \+ freezing, precipitation.

It is snowing.

This is represented as follows

snowing.

So, the full prolog clause is as follows

:- dynamic freezing/0, precipitation/0, snowing/0, raining/0.

precipitation :- raining.

precipitation :- snowing.

snowing :- freezing, precipitation.

raining :- \+ freezing, precipitation.

snowing.

b. What answer does Prolog give to the following queries:

Is it freezing

No

Reason;

All of the conditions above point to raining or snowing; none points to freezing.

Hence, it is no.

8 0
3 years ago
For this assignment, you will write a program to determine the time and date corresponding to an elapsed number of seconds since
Karolina [17]

A Python program should be written to produce output that corresponds to the given hour, minute, second, day of the month, month's name, year, and day of the week's name.

present_year=2016

present_month="January"

present_date="1"

present_day="Friday"

present_hour=0

present_minute=0

present_second=0

input<-from user(seconds)//taking imput from the user using Python program

   total_seconds=input

   //checking with seconds

   if(total_seconds<60)

       present_second+=total_seconds

   else

       total_minutes=total_seconds/60

       remaining_seconds=total_seconds-total_minutes*60

       present_second+=remaining_seconds

   //checking with minutes

   if(total_minutes<60)

       present_minute+=total_minutes

   else

       total_hours=total_minutes/60

       remaining_minutes=total_minutes-total_hours*60

       present_minute+=remaining_minutes

   //checklng with hours

   if(total_hours<24)

       present_hour+=total_hours

   else

       total_days=total_hours/24

       remaining_hours=total_hours-total_days*24

       present_hour+=remaining_hours

   //checking with days

   total_weeks=total_days/7

   remaining_day=total_days-total_weeks*7

   switch(remaining_day)

       case 1:

           present_day="Friday"

       case 2:

           present_day="Saturday"

       case 3:

           present_day="Sundayday"

       case 4:

           present_day="Monday"

       case 5:

           present_day="Tuesday"

       case 6:

           present_day="Wedday"

       case 7:

           present_day="Thursday"

   //checking with years    

   if(total_days>366)

       while(total_days)

           if(present_year%4==0)

               total_days-=366

               present_year+=1

           if(present_year%4!=4)

               total_days-=365

               present_year+=1

           if(present_year%4!=0&&total_days<365)

               break;

           if(present_year%4==0&&total_days<366)

               break;

   //checking with months and date

   if(total_days<=366)

       while(total_days)

           if(present_month="January")

               present_date++

               total_days--

               if(present_date==31)

                   present_month="February"

                   present_date=0

           if(present_month="February")

               present_date++

               total_days--

               if(present_date==28&&present_year%4!=0)

                   present_month="March"

                   present_date=0

               if(present_date==29&&present_year%4==0)

                   present_month="March"

                   present_date=0

           if(present_month="March")

               present_date++

               total_days--

               if(present_date==31)

                   present_month="April"

                   present_date=0        

           if(present_month="April")

               present_date++

               total_days--

               if(present_date==30)

                   present_month="May"

                   present_date=0        

           if(present_month="May")

               present_date++

               total_days--

               if(present_date==31)

                   present_month="June"

                   present_date=0        

           if(present_month="June")

               present_date++

               total_days--

               if(present_date==30)

                   present_month="July"

                   present_date=0    

           if(present_month="July")

               present_date++

               total_days--

               if(present_date==31)

                   present_month="August"

                   present_date=0    

           if(present_month="August")

               present_date++

               total_days--

               if(present_date==31)

                   present_month="September"

                   present_date=0        

           if(present_month="September")

               present_date++

               total_days--

               if(present_date==30)

                   present_month="October"

                   present_date=0    

           if(present_month="October")

               present_date++

               total_days--

               if(present_date==31)

                   present_month="November"

                   present_date=0    

           if(present_month="November")

               present_date++

               total_days--

               if(present_date==30)

                   present_month="December"

                   present_date=0

           if(present_month="December")

               present_date++

               total_days--

               if(present_date==31)

                   present_month="January"

                   present_date=0

//printing present time

print present_hour:present_minute:present_second present_date present_month present_year present_day          

Learn more about Python program here:

brainly.com/question/28691290

#SPJ4          

3 0
1 year ago
Other questions:
  • In a steady-flow industrial process, m kg/s of an ideal gas flows through a heater at a constant mass flow rate. It is your job
    7·1 answer
  • By conducting a survey, Sarah and Jesse determine that an “open space” is home to over fifty different species of plant life.
    7·2 answers
  • A spherical balloon with a diameter of 9 m is filled with helium at 20°C and 200 kPa. Determine the mole number and the mass of
    12·1 answer
  • Write an ALP to separate odd and even numbers from an array of N numbers; arrange odd
    13·1 answer
  • The longest_word function is used to compare 3 words. It should return the word with the most number of characters (and the firs
    8·1 answer
  • Fill in the blank to output the quotient of dividing 100 by 42. print (100______42)​
    8·1 answer
  • “ROUGH
    11·1 answer
  • During shielded metal arc welding, a welder can receive a burn comparable to sunburn if proper protective clothing is not worn.
    8·1 answer
  • 1. a major reason for the projected shortage of trained craft professionals is
    15·1 answer
  • Which step in the engineering design process does not come before building a<br> prototype?
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!