Coder Baba
2.42K subscribers
1.01K photos
23 videos
722 files
723 links
Everything about programming for beginners.
1 and only official telegram channel of CODERBABA India.

Content:
.NET Developer,
Programming (ASP. NET, VB. NET, C#, SQL Server),
& Projects
follow me https://linktr.ee/coderbaba
*Programming
*Coding
*Note
Download Telegram
1655183344172.pdf
333.8 KB
Algorithmic concepts for anyone who is taking Data Structure and Algorithms, or interested in algorithmic trading
git-cheat-sheet-education.pdf
97.8 KB
Git commands cheatsheets for anyone working on personal projects on GitHub!
Mutable and Immutable

Mutable object :
An object whose internal state can be changed is mutable.
Immutable object: Immutable doesn't allow any change in the object once it has been created.

Let's check mutability of List and tuple

L1=["c","o","d","e","n","g"]
L1[3]="i"
print(L1)

Output: ["c","o","d","i","n","g"]
πŸ‘‰ List is mutable

T1=("c","o","d","e","n","g")
T1(3)="i"
print(T1)

⭕️ TypeError: 'tuple' object does not support item assignment
πŸ‘‰ Tuple is immutable

Did you get what is really mean by the word "mutable" and "immutable"?

😎 Hope you guys liked it

Subscribe toπŸ‘‰πŸ» "CODER BABA" YouTube channel ✨ for coding, programming, software related content πŸ’―πŸ’―
Create tables for Customer and Employee
β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”-
---Customer Table---

Create table Customers
(
CustomerId int identity(1,1) primary key,
ContactName nvarchar(50),
City nvarchar(50),
Country nvarchar(50),
Phone nvarchar(20),
)

Insert into Customers values('Karan','Kanpur','India','9988775520')
Insert into Customers values('Rohit','Patna','India','9988771121')
Insert into Customers values('Jiwan','Hyderabad','India','9738771222')
Insert into Customers values('Sunita','Lalganj','India','9988771323')


---Employees Table---
Create table Employees
(
EmployeeId int identity(1,1) primary key,
FirstName nvarchar(50),
LastName nvarchar(50),
BirthDate datetime,
HireDate datetime
)

Insert into Employees values('Kumar','Pandey',Getdate(),Getdate())
Insert into Employees values('Geeta','Kumar',Getdate(),Getdate())
Insert into Employees values('Sandeep','Tiwari',Getdate(),Getdate())
Insert into Employees values('Ajay','Yadav',Getdate(),Getdate())

Select CustomerId, ContactName, City, Country, Phone From Customers

Select EmployeeId,FirstName, LastName, BirthDate, HireDate From Employees
Hi EveryoneπŸ‘‹ post of Java programming language FeatureπŸš€
If you have any queries meet me in the comment boxπŸ’¬
===========
@CoderBaba
@coderbaba
Hi EveryoneπŸ‘‹ post of Java programming language FeatureπŸš€
If you have any queries meet me in the comment boxπŸ’¬
===========
@CoderBaba
@coderbaba
@coderbaba
==========
Upcoming Java Programming Videos

Java Hello World Program | Java Tutorial in Hindi Part-24
https://youtu.be/Mig8Tq5Nrjg

Comments in Java | Java Tutorial in Hindi Part-25
https://youtu.be/P8nztKcV_wg

Java Character Set |Java Tutorial in Hindi Part-26
https://youtu.be/t8mWSgM9vaI


Java Keywords | Java Tutorial in Hindi Part-27
https://youtu.be/iUKZxe4wXx0

Identifiers in java programming| Java Tutorial in Hindi part-28
https://youtu.be/fpeZtmNvwYs


Constants in Java Programming | Java Tutorial in Hindi part-29
https://youtu.be/UUCrSnx-Nqo
oops in python.pdf
4 MB
πŸ‘†πŸ‘†πŸ‘†πŸ‘†πŸŒŽ
Java Notes
❀1