Posts

Showing posts with the label DotnetTraininginSingapore

Stylesheet

Image
import * as React from 'react'; import styles from './Employeespotlight.module.scss'; import { IEmployeespotlightProps } from './IEmployeespotlightProps'; import { escape } from '@microsoft/sp-lodash-subset'; import * as $ from 'jquery'; import { WebPartContext } from '@microsoft/sp-webpart-base'; import { SPHttpClient, SPHttpClientResponse } from '@microsoft/sp-http'; import { SliderHelper } from './Helper'; export interface SpotlightDetails { userDisplayName: string; userEmail: string; userProfilePic: string; description: string; designation?: string; } export interface IStateEmployeeSlider { value:SpotlightDetails[]; } var result=[]; export interface ResponceDetails { title: string; id: string; } export default class Employeespotlight extends React.Component { private defaultProfileImageUrl: string = "/_layouts/15/userphoto.aspx?size=L"; private helper: SliderHelper = new SliderHe...

VISUAL STUDIO 2019 INSTALLATION SETUP

Image
      Posted by Ganesan - +919042710472    VISUAL STUDIO 2019 INSTALLATION SETUP Microsoft provides a free version of Visual studio and it can be downloaded from, https://visualstudio.microsoft.com/downloads/ .   Step 1: Once downloading completed, click on the install button and it will start the installation process.                                    Step 2: Once installation is completes, you will see the main window of visual studio. Step 3: Let’s create a Create a new project, and then you will see the following window,   Visual studio IDE tools. Step 4:   Create a new web application, and given the project name, Step 5: Choose the web forms, Step 6: After that you will see the main window and solution explorer,   Step 7:   Projects and solutions, The web content files (.aspx), source files (.cs files),  and then Run the solution and ge...

SQL Interview questions and answers for freshers

Posted by Ganesan - +919042710472  1. What is SQL?   SQL-Structured Query Language   It is a microsoft database which can be used for manipulation of datas.  2. What are the subsets of SQL?   DDL – Data Definition Language –It allows you to perform various operations on the database such as CREATE, ALTER and DELETE objects.   DML – Data Manipulation Language – It allows you to access and manipulate data. It helps you to INSERT, UPDATE, DELETE and RETRIVE data from the database.    DCL – Data Control Language – It allows you to control access to the database .example Grant, Revoke access permissions.   TCL – Transaction Control Language – Used to manage transactions in the database. Example COMMIT, ROLLBACK and SAVEPOINT. 3. How to create a table and add data   Syntax : CREATE TABLE table_name(                  Column1 datatype,                 ...

How to grab your first job as Dotnet developer

Posted by Ganesan - +919042710472 Engineers after completing their degree in Computers, they have to learn technologies to get into Job market. Upskilling and learning technologies is a continuous process and it will not end up.  In my point of view Engineering does not makes to land you in your first dream job. It just acts as a mere degree or a qualification expected in Software industry. Every engineer will be in a dream to pursue their first job in top MNC 's like CTS, Infosys, HCL, Wipro or any other bigger MNC. Only 10 -20 % of the engineers will get their jobs in On Campus that too in Urban areas. It’s a bitter fact that students from Rural areas are not even able to crack the MNC interviews in first shot. You will realise that grabbing a job in top mnc's as a fresher is not possible without any technical skill. The first thing that comes on to the mind after completing the studies is to pursue a job. Everyone will be in a curiosity to start earning money after completin...

OOPS - OBJECT ORIENTED PROGRAMMING SYSTEM

Posted by Ganesan - +919042710472 Object oriented programming uses a different set of programming languages than old procedural programming languages. Everything in OOP is grouped as self sustainable "objects".  Main concepts of OOPs are  Class, Object, Abstraction, encapsulation, inheritance and polymorphism. CLASS: Class is a collection of objects. Class is composed of three things, a name, attributes, and operations. To create a class, you simply use the keyword "Class" followed by the Class name,            Class ClassName             {               } OBJECT:   An object can be considered a "thing" that can perform a set of related activities. The set of activities that the object performs defines the object's behaviour. For example the hand (object) can grip something. Can give their name or address. an Object is an instance of a class.           ...