Complete Full Stack Developer Roadmap 💻
Don't copy content make me @stranger_0_0 admin in your channel
Don't copy content make me @stranger_0_0 admin in your channel
👍2❤1
Friends please subscribe new channel i deleted old channel because of some reasons "Zedsecworld" on YouTube
https://youtube.com/@Zedsecworld2
And help me to unlock YouTube algorithm
@bca_programmer
https://youtube.com/@Zedsecworld2
And help me to unlock YouTube algorithm
@bca_programmer
❤1
Preparation guide to learn SQL 👇👇
👉 Start from the scratch: Learn about the structure of databases and the basic syntax of SQL, including data types, tables, and operations like SELECT, FROM, WHERE, etc.
👉 Get hands-on experience: Try writing simple SQL queries on your own and practice working with real data. You can find sample databases from websites like https://mode.com/sql-tutorial/introduction-to-sql
👉 Study relational databases: SQL is most commonly used to work with relational databases, so learn about the theory and principles of relational databases, such as primary keys, foreign keys, normalization, etc.
👉 FREE LEARNING RESOURCES
You can learn about SQL for free in interesting way from here https://t.me/bca_programmer/129
👉 Practice, practice, practice: The more you practice, the better you will become at using SQL. Try to work on projects that interest you and challenge yourself to solve more complex problems.
👉 Try different database management systems: There are many different database management systems that use SQL, such as MySQL, Oracle, Microsoft SQL Server, etc. Try working with a few different systems to get a feel for the similarities and differences between them.
👉 Learn SQL commands: Familiarize yourself with the different SQL commands and how they are used, including SELECT, INSERT, UPDATE, DELETE, etc.
👉 Use SQL in real-world projects: Try to find ways to use SQL in real-world projects, such as building a database for a small business or analyzing data for a research project.
👉 Collaborate with others: Find a study group or collaborate with others who are also learning SQL. Working together on projects and discussing your learning experiences can help you stay motivated and deepen your understanding of the language.
@bca_programmer
👉 Start from the scratch: Learn about the structure of databases and the basic syntax of SQL, including data types, tables, and operations like SELECT, FROM, WHERE, etc.
👉 Get hands-on experience: Try writing simple SQL queries on your own and practice working with real data. You can find sample databases from websites like https://mode.com/sql-tutorial/introduction-to-sql
👉 Study relational databases: SQL is most commonly used to work with relational databases, so learn about the theory and principles of relational databases, such as primary keys, foreign keys, normalization, etc.
👉 FREE LEARNING RESOURCES
You can learn about SQL for free in interesting way from here https://t.me/bca_programmer/129
👉 Practice, practice, practice: The more you practice, the better you will become at using SQL. Try to work on projects that interest you and challenge yourself to solve more complex problems.
👉 Try different database management systems: There are many different database management systems that use SQL, such as MySQL, Oracle, Microsoft SQL Server, etc. Try working with a few different systems to get a feel for the similarities and differences between them.
👉 Learn SQL commands: Familiarize yourself with the different SQL commands and how they are used, including SELECT, INSERT, UPDATE, DELETE, etc.
👉 Use SQL in real-world projects: Try to find ways to use SQL in real-world projects, such as building a database for a small business or analyzing data for a research project.
👉 Collaborate with others: Find a study group or collaborate with others who are also learning SQL. Working together on projects and discussing your learning experiences can help you stay motivated and deepen your understanding of the language.
@bca_programmer
C program using #structure
#include <stdio.h>
#include <string.h>
struct student{
int roll_no;
char name[200];
float marks;
};
int main(){
struct student s1;
s1.roll_no = 23452231;
strcpy(s1.name, "Priyanshi");
s1.marks = 135;
printf("roll no = %d\n", s1.roll_no);
printf("student name = %s\n", s1.name);
printf("marks = %f\n", s1.marks);
return 0;
}
@bca_programmer
#include <stdio.h>
#include <string.h>
struct student{
int roll_no;
char name[200];
float marks;
};
int main(){
struct student s1;
s1.roll_no = 23452231;
strcpy(s1.name, "Priyanshi");
s1.marks = 135;
printf("roll no = %d\n", s1.roll_no);
printf("student name = %s\n", s1.name);
printf("marks = %f\n", s1.marks);
return 0;
}
@bca_programmer
👍6🥰1😁1
# PASSWORD GENERATOR IN PYTHON
# @bca_programmer
import random
import string
LETTERS = string.ascii_letters
NUMS '0123456789'
SPE='+*%&$!_!
SYMBOLS LETTERS + NUMS + SPE
len = int(input("ENTER PASS. LENGTH:"))
password = ".join(random.sample(
SYMBOLS, len))
print(password)# @bca_programmer
❤1
░ LEARN FOR FREE.
▨ CSS
➪ web.dev
▨ JS
➪ javascript.info
▨ Git
➪ learngitbranching.js.org
▨ API
➪ rapidapi.com
▨ DS/Algo
➪ Visualgo.net
▨ SQL
➪ SQLbolt.com
@bca_programmer
▨ CSS
➪ web.dev
▨ JS
➪ javascript.info
▨ Git
➪ learngitbranching.js.org
▨ API
➪ rapidapi.com
▨ DS/Algo
➪ Visualgo.net
▨ SQL
➪ SQLbolt.com
@bca_programmer