DOT NET CORE INTERVIEW Question and Answer.pdf
    773.3 KB
  DOT NET CORE INTERVIEW
QUESTIONS AND ANSWERS
  QUESTIONS AND ANSWERS
New Postπ« please follow me and help me reach 1Kπ
https://www.instagram.com/p/Cq-r5IEBvj9/?utm_source=ig_web_copy_link
  https://www.instagram.com/p/Cq-r5IEBvj9/?utm_source=ig_web_copy_link
Online Real Estate Website Project in asp.net C# with source code
https://coderbaba.gumroad.com/l/anjxe
  
  https://coderbaba.gumroad.com/l/anjxe
Gumroad
  
  Online Real Estate Website Project with source code
  Online Real Estate Website Project in asp .net C#,SQL Server with source code
  Hey Guys 
Please subscribe new channel
πππ
https://www.youtube.com/@thekrkv
for more tech and career oriented videos
please support
thanks
  Please subscribe new channel
πππ
https://www.youtube.com/@thekrkv
for more tech and career oriented videos
please support
thanks
Hi everyone please Subscribe
https://youtu.be/1r7aWBmvHB0
  
  https://youtu.be/1r7aWBmvHB0
YouTube
  
  laravel pennant feature flag package Part 1
  #laravel  #Pennant #ubuntu #package #laravelproject #laravelpackage #pennant #laravelpennant #library #tutorial #programming #coding #php #learnlaravel #tutorial #laraveltutorial 
laravel, Pennant, ubuntu, package, laravelproject, laravelpackage, pennantβ¦
  laravel, Pennant, ubuntu, package, laravelproject, laravelpackage, pennantβ¦
What is a Database?
We will not get into more detailed explanation about the database but just a breif for undertsanding.
Database is a collection of data stored in a computer disc space or server space. In simple words it is a space where your data is been stored.
In a single database we can create any number of data tables. It's like a school with many classrooms and each classroom will have different school students.
In a single data table we create any number of columns For eg. studentID, studentName, studentAddress and in a single data table we can store data for specific topic.
Like to store student's records you can have students data table, For school accounts you can have accounts data table, For school results you can have results data table.
There are commonly used databases in our IT Zone
SQL - Microsoft SQL Server
Oracle - Oracle RDBMS or simply as Oracle
MYSQL - Open Source Freeware
MSACESS - Microsoft Access
PostgreSQL - ORDBMS
SAP - To manage customer relationship and other business operations
FoxPro - Database
IBM DB2 - IBM Database by IBM
Now in further we will try to understand about data manipulation statements i.e. (Insert, Select, Update and Delete).
About Data Manipulation Statements
Select Statement
Select statement let you to retrieve the data from the database table.
For ex : In simple words if you want to pick up single student record, multiple student records or all students records from the table database you just need to use "Select" statement.
Example
 
Select * from 'students'
"*" - Means All
  We will not get into more detailed explanation about the database but just a breif for undertsanding.
Database is a collection of data stored in a computer disc space or server space. In simple words it is a space where your data is been stored.
In a single database we can create any number of data tables. It's like a school with many classrooms and each classroom will have different school students.
In a single data table we create any number of columns For eg. studentID, studentName, studentAddress and in a single data table we can store data for specific topic.
Like to store student's records you can have students data table, For school accounts you can have accounts data table, For school results you can have results data table.
There are commonly used databases in our IT Zone
SQL - Microsoft SQL Server
Oracle - Oracle RDBMS or simply as Oracle
MYSQL - Open Source Freeware
MSACESS - Microsoft Access
PostgreSQL - ORDBMS
SAP - To manage customer relationship and other business operations
FoxPro - Database
IBM DB2 - IBM Database by IBM
Now in further we will try to understand about data manipulation statements i.e. (Insert, Select, Update and Delete).
About Data Manipulation Statements
Select Statement
Select statement let you to retrieve the data from the database table.
For ex : In simple words if you want to pick up single student record, multiple student records or all students records from the table database you just need to use "Select" statement.
Example
Select * from 'students'
"*" - Means All
