The cultivation in mountain areas, with their scattered plots of usable land at various altitudes with different climates, landscapes and little margin for mechanization, are managed by family farms in the most efficient and effective way.

Answers

Answer 1

Answer:

Mountain farming

Explanation:

Mountain farming is done in hilly areas of the mountains. It is mainly family farming. The mountain farming is mainly done in the mountains where the paddy fields are scattered and the limited use of the usable lands are available.

It is cultivated in different types of climatic conditions or landscapes with limited use of mechanization or machines. The mountain farming is maintained by the family farms in an effective way.


Related Questions

Which scenario would most benefit from a self-join query?
a. a query connecting customers and products
b. a query connecting supervisors and customers
c. a query connecting employees and their orders
d. a query connecting employees and their supervisors

Answers

Answer:

answer is D

Explanation:

Just did it on edge

In cell K2 enter a formula using the IF and OR functions, as well as structured references, to determine if Adam Moriarty can be a group leader. a. The IF function should first determine if the staff member’s Service Years is greater than 3 OR if the staff member’s college graduate status is "Yes". Remember to use a structured reference to the Service Years and the College Graduate columns.

Answers

Solution :

The value of the K2 cell is filled by IF and OR functions with structured references as :

[tex]K2=IF(OR([CBF\ \text{Staff[ Service years]} > 3, \text{CBF Staff[College graduate]}="Yes"),"Yes","No")[/tex]

Now if the syntax of the formula is not provided, then we can use :

[tex]$K2=IF(OR([[\text{Service Years}]]>3,[[\text{College Graduate}]]="Yes"),"Yes","No")$[/tex]

The staff member are required to satisfy one of the two or both the conditions so as to become a group leader. The conditions are :

---   staff member should served for more than 3 years

--- staff members should be college graduate

If an if- else statement is true, it will include which kinds of results?

Answers

In an if...else statement, if the code in the parenthesis of the if statement is true, the code inside its brackets is executed. But if the statement inside the parenthesis is false, all the code within the else statement's brackets is executed instead.

Of course, the example above isn't very useful in this case because true always evaluates to true. Here's another that's a bit more practical:

#include <stdio.h>

int main(void) {

int n = 2;

if(n == 3) { // comparing n with 3 printf("Statement is True!\n");

}

else { // if the first condition is not true, come to this block of code

printf("Statement is False!\n"); } return 0;

}

Output:

Statement is False!

can you plz answer me from the photo​

Answers

A. True
B. False
C. True

essay on personal assistants

Answers

Answer:

Explanation:

Personal assistants are hired to work very closely and directly to an individual such as a manager or top ranking persons who are usually very busy and have lots of several different tasks to attend to. The personal assistant would be seen as a person who posses the right multitasking skill, good communication skill and good interpersonal relationship skills can p handle administrative duties, respond to calls and visitors who may need to see the boss, give savvy response to cliemts and visitors and a good fre of mind to ensure that all scheduled lettings, appointments, travels are clearly noted to avoid missing important schedules. Depending on the preference of the manager or boss, they may be need to make specific gender representation of the personal assistant required. Also, some have designated some jobs to suit a certain gender more than the other as the favouured gender gets considered ahead of the other during the application process for jobs of such nature.

A car manufacturer uses'simulation software during the design process for a new car. Which of the
following are reasons to use simulation software in this context?
1. Using simulation software can save the company money by helping to compare designs early in
the process, before prototype cars are built.
II. Using simulation software can help to identify safety issues by providing data about how different
mechanical components will interact in a wide variety of situations.
III. The manufacturer can present simulation software to customers to demonstrate different design
possibilities
А
I and II only
B
I and III only
С
II and III only
D
I, II, and III

Answers

D I,II and III is the answer i think

The reasons to use simulation software in this context are I, II, and III. The correct option is D.

What is simulation software?

The process of simulating a genuine phenomenon with a set of mathematical formulas is the foundation of simulation software. It is essentially a program that allows the user to simulate an operation and view it without really conducting it.

Simulation is a decision-making and decision-support tool. You can use simulation software to assess, compare, and optimize different designs, programs, and policies. As such, it can be used to explain and defend decisions to multiple stakeholders.

By allowing the corporation to evaluate concepts early in the process before prototype automobiles are constructed, simulation software can save the company money.

Therefore, the correct option is D, I, II, and III.

To learn more about simulation software, refer to the link:

https://brainly.com/question/16192324

#SPJ2

Write a pseudocode to calculate the factorial of a number

Answers

Answer:

Answer CODE from C# Sharp  Language

Explanation:

using System;

namespace test

{

   class Program

   {

       public void silnia()

       {

           decimal liczba;

           decimal silnia = 1;

           Console.WriteLine("Obliczanie Silni ");

           Console.WriteLine("Podaj liczbę: ");

           liczba = Convert.ToInt32(System.Console.ReadLine());

           //liczba = int.Parse(Console.ReadLine());

           for (int i = 1; i <= liczba; i++)

               silnia *= i;

           Console.WriteLine("Wynik Silni Wynosi :  " +silnia +" \n ");

       }

       static Program ćwiczeniaA;

       static void Main(string[] args)

       {

           ćwiczeniaA = new Program();

           ćwiczeniaA.silnia();

       

           Console.WriteLine("Koniec Programu");

           System.Console.ReadLine();

       }                                

   }

}

What is the Full form of DC?

Answers

Answer:

Deputy Commissioner.

Answer:

the full form of DC is deputy commissioner

>What is the output of the following code:

list1 = [ 'cyber', 786 , 2.23, 'square', 70.2 ]
print (list1[1] )

Answers

Answer:

Given code output is "786".

Explanation:

Code:

list1 = [ 'cyber', 786 , 2.23, 'square', 70.2 ]#defining a list list1 that holds value in parameter

print (list1[1] )#use a print method that prints list index value

In the given code a list "list1" is declared that holds value in it and in the next step a print method is declared that prints the first index value of the list.

Select the correct answer.
Frankle is trying to create an app. He creates a new ViewController and removes the default one. What should he keep in mind when building
the app?
OA
connect all the ViewControllers to the old ones
OB.
assigning the first ViewController as initial
Oc. creating a SplitViewController
OD. adding a segue from the last ViewController

Answers

od. adding a segue fro. the last viewcontroller

help me pls i beg whoever types first ill mark them brainliest

Answers

Answer:

The answer is "Line 1,4,and 9".

Explanation:

Following are the complete code to the given question:

print ("What is your favourite football team? ")#print message

team = input()#define variable that use input method to input value

#this is the IF statement, If they enter Manchester City

if team == "Manchester City":#use if to check string value

#respond like this

   print ("Manchester City is a great team! ")#print message

#alternatively, respond like this

else: #defining else block

   print("I don't mind "+ team +", but Manchester City is better !")#print message

   #don't forget concatenation!

output:

Please find the code with the output in the attached file.

Please find attached file that will explains errors.

Your company resides in an area with rapid growth in both the corporate and residential areas surrounding your office. As such, your company has been experiencing several brownouts due to power grid problems (too much demand and not enough electricity). Fearing that your computers (especially the servers) could be damaged by these brownouts, your manager has asked you to find a solution to this problem.
Which of the following would be the BEST device to recommend to your manager for computer protection?
A. Surge suppressor
B. Power strips
C. UPS
D. Wall Outlet

Answers

Answer:

The correct answer is option C (UPS).

Explanation:

Since brownouts are reduced voltages that might not be good enough for the required electricity capacity for your company, fearing that your computers (especially the servers) could be damaged, it is best to use UPS for your computer protection.

A UPS also called (Uninterruptable Power Supply) can function as a Surge suppressor when the voltages entering your company might be higher than normal, it can also function too in protecting your computers (especially the servers) in the case of a brownout when voltage required by your computers dropped below the required level. In the case of a brownout, the  UPS supplies energy stored in its batteries to make the computers keep working without going off from lack of electricity.

why is computer system maintenance important​

Answers

Answer:

Because it helps your computer to have better performance and last longer

Explanation:

Assume there are two variables, k and m, each already associated with a positive integer value and further assume that k's value is smaller than m's. Write the code necessary to compute the number of perfect squares between k and m. (A perfect square is an integer like 9, 16, 25, 36 that is equal to the square of another integer (in this case 3*3, 4*4, 5*5, 6*6 respectively).) Associate the number you compute with the variable q. For example, if k and m had the values 10 and 40 respectively, you would assign 3 to q because between 10 and 40 there are these perfect squares: 16, 25, and 36,.

PYTHON CODING

Answers

Answer:

import math  

def isPerfectSquare(n):

 s = int(math.sqrt(n))

 return n == s*s

def countPerfectSquares(k,m):

 q = 0

 for i in range(k,m):

   if isPerfectSquare(i):

     q=q+1

 return q

print(countPerfectSquares(10,40))

Explanation:

Note that this is including the k, but excluding m. If you want to include m, write m+1 in the range expression.

what are the tyoe of typical application of mainframe computer

Answers

Explanation:

customer order processingfinancial transactions production and inventory control payroll

hope it is helpful to you

Write a loop that displays your name 10 times. 2. Write a loop that displays all the odd numbers from 1 through 49. 3. Write a loop that displays every fifth number from 0 through 100. 4. Write a code sample that uses a loop to write the numbers from 1 through 10 to a file. 5. Assume that a file named People.txt contains a list of names. Write a code sample that uses a while loop to

Answers

Answer:

The program in Python is as follows:

#1

for i in range(10):

   print("MrRoyal",end=" ")

print()    

#2

for i in range(1,50,2):

   print(i,end=" ")

print()

#3

for i in range(0,101,5):

   print(i,end=" ")

print()

#4

i = 1

while i <=10:

   print(i,end =" ")

   i+=1

#5

myfile = open("People.txt", "r")

eachLine = myfile.readline()

while eachLine:

   print(eachLine)

   eachLine = myfile.readline()

myfile.close()

Explanation:

The program in Python is as follows:

Program #1

This iterates from 1 to 10

for i in range(10):

This prints the name for each iteration [modify to your name]

   print("MrRoyal",end=" ")

This prints a new line

print()    

Program #2

This iterates from 1 to 49 with an increment of 2

for i in range(1,50,2):

This prints the odd numbers in the above range

   print(i,end=" ")

This prints a new line

print()

Program #3

This iterates from 0 to 100 with a step of 5

for i in range(0,101,5):

This prints every 5th number

   print(i,end=" ")

Print a new line

print()

Program #4

This initializes the number to 1

i = 1

This opens the file in an append mode

f = open("myfile.txt", "a")

This loop is repeated from 1 to 10

while i <=10:

This writes each number to the file

   f.write(str(i))

Increment the number by 1

   i+=1

Close the file

f.close()

Program #5

This opens the file in a read mode

myfile = open("People.txt", "r")

This reads each line

eachLine = myfile.readline()

This loop is repeated for every line

while eachLine:

Print the content on the line

   print(eachLine)

Read another line

   eachLine = myfile.readline()

Close the file

myfile.close()

Can someone please type a code that makes a house in python and turtle graphics i need help

Answers

Answer:

import turtle  

turtle.speed(2)

#shape

turtle.forward(100)

turtle.left(90)

turtle.forward(100)

turtle.left(45)

turtle.forward(100)

turtle.left(90)

turtle.forward(100)

turtle.left(45)

turtle.forward(100)

turtle.left(90)

turtle.forward(100)

#door

turtle.left(90)

turtle.forward(50)

turtle.left(90)

turtle.forward(25)

turtle.left(90)

turtle.forward(50)

#windows

turtle.penup()

turtle.right(90)

turtle.forward(20)

turtle.right(90)

turtle.forward(20)

turtle.pendown()

turtle.forward(25)

turtle.left(90)

turtle.forward(40)

turtle.left(90)

turtle.forward(25)

turtle.left(90)

turtle.forward(40)

Explanation:

here :)

For what purpose do the hackers create the zombies army?

A. DDoS Attacks
B. DoS Attacks
C. Warm Attacks

Answers

Answer:

A. DDoS Attacks

Explanation:

A zombie, in computer terminology, is a hacker, computer worm, trojan horse, or virus compromised internet connected computer, which can be remotely directed to perform malicious tasks

E-mail spams and denial-of-service, DoS attacks are spread and launched by botnets of zombie computers

Botnets which are also known as "zombie army", are used by hackers mainly for spam and distributed-denial-of-service, DDoS, attacks

While a DoS attack involves one machine, while a DDoS attack consist of multiple computing devices and machines

A botherder is the originator of a botnet and common botnets include Mr Black. Pushdo, and cyclone

Select the correct answer.

Susan is a programmer and uses the hexadecimal number system to represent instructions. Which letters of the alphabet do you think Susan uses to represent the numbers 10 to 15 in this number system?

A. A to F

B. A to H

C. A to M

D. A to J

Answers

Answer is  Hexadecimal  :     A.   A to F

Describe how serial data access finds data

Answers

Answer:

Serial data access will go through all the data by order until the target data is reached

Explanation:

This is opposite of direct data access which immediately finds the desired

data

Answer:

Serial access works by accessing the data at the beginning and then working through it bit-by-bit until the end.

...

Examples of storage medium that use serial access are:

Video cassettes.

Music cassettes.

Backup tape cartridges(hold lots of tape for backing up large amounts of data)

this bar is located at the top of your computer school in.Its functions allow you to navigate the web​

Answers

Answer:

idu

Explanation:

The answer is Address bar

help please asap please l​

Answers

Answers:

(a) Processor type

(b) Processor speed

(c) Display size

(d) Resolution

(e) Drive size

(f) Memory size

(g) Memory type

(h) Available interfaces

(i) Operating system

(j) Utilities

♛ Mark me as Brainliest if I’m right

what is the difference between coding with html and coding with python

Answers

Answer:

Python is an object-oriented programming language that is designed to be accessible and simple for all users, HTML is a web language and is used globally to define the structure of web pages by using various tags. HTML is not a programming language it's a markup language which is used to formatting web pages. Python is a general purpose scripting language which can be used to develop a wide range of programs.

it is used to hold screws, jumpers, fasteners, and other small parts and prevent them from getting mixed together​

Answers

Answer:

Cable ties

Explanation:

Used to bundle cables neatly inside and outside of a computer. It is used to hold screws, jumpers, fasteners, and other small parts and prevent them from getting mixed together.

>3

[tex]\boxed{Parts\: organizer}[/tex] is used to hold screws, jumpers, fasteners, and other small parts and prevent them from getting mixed together.

[tex]\bold{ \green{ \star{ \orange{Mystique35}}}}⋆[/tex]

State two pieces of information that need to be labeled on the idea development sketch. 1 .________________________________________________. 2 .___________________________________________.​

Answers

Answer:

Design drawings should show details on layout, measurements, plan, cross-sectional and vertical profiles. This information is prepared as scale drawings of the works to be constructed. they are legible  they include all information from previous revisions and updates.

Explanation:

A sum of money is shared between 2 friends in the ratio 2 : 3. If the larger

share is $450. What is the total sum shared?

Answers

300! Is the answer for this problem. 450 is the bigger sum, and that’s the 3 part of the ratio. So when we divide 450 by 3 it gives us 150. 150 is what one point on the ratio stands for. We’re looking for what 2 points on the ratio is, so 150*2 which gives us 300 … hope this helps


1.can you identify the materials needed in making simple doorbell ???

2.what is the use of each material or tool needed in making simple doorbell?????

pakianswer po ng maayos​

Answers

Answer:

1. rotary tool, spray paint, light, drill,

Explanation:

I need help in raft survival ocean nomad I was traveling and now I can't enter the island or go back home (raft). Please help me

Answers

Answer:

Raft Survival : Ocean Nomad is a survival game

Explanation:

The raft survival ocean nomad is a survival video game that is developed by a Swedish developer,  Redbeet Interactive. This game is published by Axolot Games.

In the game the player is moving in a raft in the middle of an ocean searching for his family. It is a survival and strategy game. The player needs to survive in the deserted ocean by whatever he finds and collect from the ocean and also protect himself from the attacks of the sharks.

The player moves by a small island which he can explore to eat something or collect other items to developed his raft.

In the context, if you can not enter the island or go back to the raft, then save the game at that point and press the escape button to start from the first.

In this way, you can refresh the game and start he game again to enter the island.

Use the drop-down menus to complete statements about options for inserting video files.
V is a point of interest in a video clip that can trigger animations or provide a location that a user
can jump to quickly.
The Embed Code command will link an online video to a presentation and requires
to work.
Recording mouse actions and audio is done by using the
command.

Answers

Answer:

1 book mark

2 internet connection

3 inset screen

Explanation:

because

complete the sentence: hexadecimal numbers use base ____

Answers

Hexadecimal numbers use base-16

Being a Base-16 system, the hexadecimal numbering system therefore uses 16 (sixteen) different digits with a combination of numbers from 0 through to 15. In other words, there are 16 possible digit symbols.
Other Questions
What was the outcome when the Treaty of Ghent was signed and the War of 1812 ended?O The United States got the rights to the Mississippi River and all of its tributariesO Both the British and the Americans lost territory, and the French gained territory while they were fightingO The British got a large part of the Louisiana Purchase despite losing New OrleansO Neither side gained nor lost territory, and both sides reverted to their positions before the war Valerie needs to make a decision about which college she wants to attend in the fall. She applied and got accepted to two schoolsher dream university out of state, and a smaller college in her hometown, which is offering her a full academic scholarship. Valerie accepts the scholarship from the small school in her hometown.Valerie's decision is based on emotion logic What is biotechnology, and what are some examples from the ocean? What is the output of y=23x4 when the input is 18?Enter your answer as a number, like this: 42 El verbo tiene dos partes , la terminacin y la raiz. Cul verbo no est divido correctamente ? A. prefier-oB. ten-go C. trabajar- onGracias For any geometric figures A and B , if A B, then B A. Sodium is a highly reactive metal andchlorine is a toxic gas, but when theycome together the resulting material,sodium chloride, is essential for life.Which of the following is true whensodium and chlorine are brought intocontact with one another? Unit 5 1. Which of the following choices does not describe a career?A. a compilation of tasks that an employee agrees to complete for an employer.B. the work that a person will do over several years.C. a goal that someone wants to accomplish.D. what a person does after attending college.________________________2. A person might choose a career for humanitarian reasons because she:A. wants to own her own business.B. wants to improve the lives of others.C. places a lot of value on earning a lot of money,hopes to become famous. D. Hope to becomes famous ________________________3. Which of the following types of skills do architects and designers especially need?A. science skillsB. English skillsC. artistic and creative skillsD. communication skills ________________________4. Which of the following choices is not an example of an occupation that is projected to lose jobs?A. farm workersB. sewing machine workersC. private household childcare workersD. computer support specialists________________________5. Which of the following choices is a reason for replacement needs?A. an employee retiredB. an employee returned to schoolC. an employee left the occupationD. All of these choices are correct.________________________6. A two-year private college is called:A. a junior collegeB. a universityC. a community collegeD. Ga technical college ________________________7. Which of the following types of schools offers bachelors and graduate degrees?A. a technical CollegeB. a universityC. a four-year collegeD. a junior college________________________8. Law and medical degrees are examples of:A. bachelor of Science degrees.B. bachelor of arts degrees.C. graduate degrees.D. associate's degrees.________________________9. A benefit of taking an AP course is that it:A. helps students prepare for college level work while they are still in high school.B. helps students prepare for the academic challenges presented in college.C. may offer students who score a grade of 3 or higher on an AP exam the opportunity for credit in college.D. All of these choices are correct ________________________10. Which of the following types of schools typically has the highest tuition?A. state collegesB. public collegesC. private collegesD. None of these choices are correct.________________________11. A grant or a scholarship is financial aid that:A. does not have to be repaid.B. must be repaid with interestC. includes a student working for credit towards tuitionD. All of these choices are correct.________________________12. To apply for Federal Student Financial Aid, a student must:A. talk to a bankB. complete the Free Application for Federal Student Aid.C. ask his parents to help him pay for collegeD. find a lender________________________13. Students who attend school at one of the Military Academies receive:A. free tuitionB. a bachelors degree.C. a commission in the military upon graduationD. All of these choices are correct.________________________14. Which of the following choices is not one of the benefits of having a budget?A. People are less likely to buy things on impulse.B. People have a plan for spending money.C. People are more likely to buy something on an impulse.D. People know how much money can be spent.________________________15. An example of a long-term financial goal is:A. wanting to have enough money to go out to eat.B. saving money for a new pair of shoesC. saving money for a down payment on a house.D. saving money to go to the movies ________________________16. Which of the following choices is not one of the benefits of amending college?A. more debeB. more job opportunitiesC. greater potentialD. greater knowledge________________________17. Which of the following choices is not one of the characteristics of a tech prep or 2-2 program?A. They span the last two years of high school and the first two years of college.B. Students in these programs spend time in a real work settingC. They emphasize applied learningD. They emphasize abstract critical thinking________________________18. Which of the following statements about private college instintosis false?A. Tuition for both state and out of state students is the same.B. Tuition is more expensive for out of state students.C. They are sometimes called independent institutions B. Tuition ends to be higher man public institutions. ________________________19. A student loan is:A. financial aid that does not have to be repaid.B. given to someone who works and receives credit for tuition.C. is given to someone who does an internship during college.D. financial aid that is paid back with interest.________________________20. Which of the following choices is a limited resource?A. timeB. energyC. moneyD. All of these choices are correct. What are O Dubinushka and Tortured and Enslaved?signs on the front gates of shopsRussian folk and revolutionary songsterms to describe cold, icy rainsRussian picketers in the garment district It's urgent i need help someone help me! Write the following equation in the general form Ax + By + C = 0.y - x - 1 = 02x - 3y + 6 = 02x - 3y - 6 = 0-2x + 3y - 6 = 0 PLZZZ HELP NO LINKS What graph represents the piecewise-defined function? A deck of cards is made up of 4 suits: clubs, diamonds, hearts, and spades.Each suit has 13 cards with this range: 2, 3, 4, 5, 6, 7, 8, 9, 10, J, Q, K, and A.If you are trying to calculate the probability of getting an even number whenpicking one card from a normal deck, what is the size of the sample space?O A. 52B. 5C. 13D. 26 A U.S. firm must make a payment of 1 million yen to a Japanese firm that has sold the U.S. firm sets of Japanese baseball-player trading cards. The U.S. firm begins with a dollar checking account. Explain in detail how this payment would be made, including the use of the spot foreign exchange market and banks in both countries. What is the value of the 9 in the number 0.09432 At the start of discussion students should: A 15 cm length of wire is moving perpendicularlythrough a magnetic field of strength 1.4 T at the rateof 0.12 m/s. What is the EMF induced in the wire?A. OVC. 0.025 vB. 0.018 VD. 2.5 V On December 1, a six-month liability insurance policy was purchased for $900. Analyze the required adjustment as of December 31 using T accounts, and then formally enter this adjustment in the general journal. What is the slope of the line that passes through the points (-6, -2) and (2, -2)? Name the angle relationship between a and b