Posts

Resume is your first impression.| First impression is the last impression.

What a resume should contain.? Before answering this question, let me explain what is a resume? What do recruiters expect from a resume? Resume: A resume is a document used by a person to present their qualifications, skills, and experiences. Resumes can be used for a variety of reasons, but most often they are used to secure new employment . Recruiters or employers expect all the relevant details in the resume. Such as your relevant skills, qualifications, and experiences. So, a perfect resume must contain only the relevant information in it. There are several articles available on this topic, but I’m writing this to help the people in writing their resume effectively in a precise manner. So, let me start with some key points, a good resume should contain. 1.        Keep in mind that, your resume is your first impression. And you know that the First impression is the last impression. It should be very perfect. 2.        Write all the relevant informatio

Sample Resume Format

Mr. Name Surname Contact: +91 9968741235 | example@gmail.com   CAREER OBJECTIVE Seeking a Dot Net Professional position in the esteemed organization to utilize the skills I have developed during my professional career, with an eventual goal of assuming responsibilities and proving myself as a valuable asset to the organization.   PROFESSIONAL SUMMARY Having 2.11+ years of relevant technical experience in analysis, design, implementation /development and maintenance of applications using .Net Technologies. Good experience in .Net 2.0/3.5/4.0, C#.Net, ASP.Net, ADO.Net, SQL Server, JQuery,CSS, HTML5. Knowledge of Database like writing Stored Procedures , Functions , Views , etc. Very quick in adopting new technologies. Quick learner and excellent team player. Ability to meet tight deadlines and work under pressure. Good Communication, Inte

Structures in dotnet and Struct v/s class in dotnet (using C#.net)

CONTENTS C# Structure Structure v/s Class Structure It is also a user-defined type like a class or interface. A C# structure is as same as a class because in C# a structure can contain each and every member what a class can contain like variables method constructors etc. If you need a small data structure that can hold a data that you won't modify later, structs are the best. In C#, a structure is a value type. It helps you to make a single variable to hold related data of various data types. The struct keyword is used for creating a structure. Structures are used to represent a record. Suppose you want to keep track of your books in a library. You might want to track the following attributes about each book:  The Title, Author, Subject, and Book ID Defining a Structure To define a structure, you must use the struct keyword. The struct keyword defines a new data type, with more than one member for your program. For example, here is the way you can declare the Book s