| H ydrabad | |
| Eligibility: | BE/ME/BTech/MTech – CSE/IT www.freshersworld.com |
| Details: |
Microsoft Global Services India (MGSI), Hydrabad Junior Consultants/2007 pass outs/BE/ME/BTech/MTech – CS/IT/Experience: 6 to 12 Months. Microsoft Global Services India (MGSI) is looking for highly energetic individuals with passion for technology and customers. You should possess good skills in general programming, algorithms and data structures. You should have good analytical/problem-solving skills and very good communication skills to interact with internal and external customers while developing/testing Enterprise Solutions. You are expected to understand the customer’s documented business requirements and develop high quality code in line with best practices, patterns and guidelines. On the job, you will · Understand customer environment and define business requirements · Unit test to assure requirements coverage, including integration test as needed Skills in one or more of the following areas will be considered a definite plus: · .NET languages (C#, VB.NET), .NET Framework, ASP.NET, SQL Server, TFS. Eligibility:
To Apply: · Eligible candidates may send your resume to microsoft@freshersworld.com with your Qualification / Branch / % marks / Location (For eg. B.Tech/CSE / 73% / Bangalore) in the subject line. |
PROGRAMS FROM 26 -36 26. Write a function called draw_point that takes a Canvas and a Point as arguments and draws a representation of the Point on the Canvas . class Canvas: def __init__(self, width, height): self.width = width self.height = height def draw(self, shape, color): # Function to draw shape on the canvas with given color print(f"Drawing {shape} with color {color}") class Point: def __init__(self, x, y): self.x = x self.y = y def draw_point(canvas, point): """ Draw a point on the canvas. Args: ...
Comments