Answer: Geographical divisions
Explanation:
The global IT is one of the example of the geographical division structure in an organization. It is basically divided on the basis of the operational location according to the services, product and the requirement.
The main benefits of this geographical division is that it bring all the employees together to perform specific functions and task in an organization. The geographical organization is one of the organisation where hierarchy of an organization are basically divided into geographical location.
First you go to the 3 dots neer the x you pres it thin you go to downloads and it shod be ther i hop i help if so make me the branliy
Answer:
See Explaination
Explanation:
class MagicSquare():
def __init__(self,side):
self.side=side
self.two_dimension=[]
for row in range(1,side+1):
row_line=[]
for col in range(1,side+1):
row_line.append(0)
self.two_dimension.append(row_line)
def display(self):
row=0
col=int((self.side-1)/2)
for i in range(1,self.side**2+1):
self.two_dimension[row][col]=i
row-=1
col+=1
if row==-1:
row=self.side-1
if col==self.side:
col=0
if self.two_dimension[row][col]==0:
continue
else:
row+=1
if row==self.side:
row==0
for line in self.two_dimension:
for num in line:
print("{0:>3}".format(num),end=" ")
print()
def main():
for i in range(1,14,2):
square=MagicSquare(i)
square.display()
print("----------------------------------------------------")
if __name__ == '__main__':
main()
Answer:
Achievement; date Person Achievement
1944 Aiken, Howard Conceived and codesigned the Harvard Mark I
1966 Böhm, Corrado Theorized of the concept of structured programming
1947 Booth, Kathleen Invented the first assembly language
Explanation:
Answer:
The answer is "Option 3".
Explanation:
In the given question the code (ii) is correct because in the class definition class "Student" defines a constructor that does not use any return type. and code (i) class definition the class "Student" defines a constructor that uses return type void which is not allowed in the constructor. and other options are not correct that can be described as follows:
- In option 1, only code (ii) is correct.
- In option 2, code (ii) is correct that's why it is not correct.
- In option 4, it is not correct, because it uses void return type.