Robots for Biopsy and Surgery. The intersection of Medical and Engineering.

Robots for Biopsy and Surgery. The intersection of Medical and Engineering.
From Google search. I cannot say if the information on the URLs are reliable.

FDA Clears Intuitive Surgical’s Lung Cancer Biopsy Robot
https://www.mpo-mag.com/contents/view_breaking-news/2019-02-20/fda-clears-intuitive-surgicals-lung-cancer-biopsy-robot/

World’s smallest and most accurate 3-D-printed biopsy robot
https://phys.org/news/2017-07-world-smallest-accurate-d-printed-biopsy.html

Intuitive Surgical Releases Ion Robotic Lung Biopsy System
https://www.medgadget.com/2019/02/intuitive-surgical-releases-ion-robotic-lung-biopsy-system.html

Robot-assisted stereotactic brain biopsy: systematic review and bibliometric analysis
https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5996011/

A student-designed device may allow faster, more accurate lung biopsies.
https://www.technologyreview.com/s/404729/robotic-biopsy/

More precise.1 More flexible.1 For more answers.
https://www.intuitive.com/en-us/products-and-services/ion

Robots from Space Lead to One-stop Breast Cancer Diagnosis Treatment
https://www.nasa.gov/mission_pages/station/research/news/b4h-3rd/hh-space-robots-breast-cancer-diagnosis/

Evolution of Robot-assisted ultrasound-guided breast biopsy systems
https://www.sciencedirect.com/science/article/pii/S1687850717301632

Ion lung biopsy system from Intuitive Surgical wins FDA approval
https://www.therobotreport.com/ion-lung-biopsy-intuitive-surgical-fda/

Robotic Partial Nephrectomy: Robotic Surgery for Kidney Cancer and Benign Kidney Tumors
https://med.nyu.edu/robotic-surgery/physicians/procedures/z-procedures-guide/robotic-partial-nephrectomy

Robotic kidney transplantation allows safe access for transplant renal biopsy and percutaneous procedures.
https://www.ncbi.nlm.nih.gov/pubmed/31483897

Robotic assisted kidney transplantation
https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4120216/

Robotic & Image Guided Surgery
https://my.clevelandclinic.org/departments/urology-kidney/depts/robotic-laparoscopic-surgery

Laparoscopic and Robotic Partial Nephrectomy
https://urology.ufl.edu/patient-care/robotic-laparoscopic-urologic-surgery/procedures/laparoscopic-and-robotic-partial-nephrectomy/

Should I have surgery to remove part or all of my kidney for my kidney tumor?
A decision aid to discuss treatment options with your urologist
https://decisionaid.ohri.ca/docs/das/Surgery_for_Kidney_Cancer.pdf

Robotic kidney transplantation allows safe access for transplant renal biopsy and percutaneous procedures
https://onlinelibrary.wiley.com/doi/abs/10.1111/tri.13517

Ultrasound Imaging for Robotic Surgery
https://www.bkmedical.com/applications/robotic-assisted-surgery-ultrasound/

An MRI-Compatible Robotic System for Breast Biopsy
https://www.youtube.com/watch?v=TlLN9drqidU

Robotic biopsy tool could revolutionise cancer screening
https://www.reuters.com/video/2018/07/23/robotic-biopsy-tool-could-revolutionise?videoId=448136910

3D Printed MRI Biopsy Robot
https://www.youtube.com/watch?v=dF66T63jvhQ

—-

Sayed Ahmed

Linkedin: https://ca.linkedin.com/in/sayedjustetc

Blog: http://Bangla.SaLearningSchool.com, http://SitesTree.com
Online and Offline Training: http://Training.SitesTree.com

Affiliate Links:
Hottest Deals on Amazon USA: http://tiny.cc/38lddz

Hottest Deals on Amazon CA: http://tiny.cc/bgnddz

Hottest Deals on Amazon Europe: http://tiny.cc/w4nddz



Not that this site is doing any great work; However, if you want to contribute to the operation of this site (or charitable/non-profit work in the education sector), you can financially contribute to: safoundation at salearningschool.com using Paypal.

Graph Mining: K-Spanning Trees: Learn by finding answers to the following questions. Can you answer the questions?

Graph Mining: K-Spanning Trees: Learn by finding answers to the following questions. Can you answer the questions?

What is a Spanning Tree?

What is a Minimum Spanning Tree?

For the undirected Graph below, what is a Spanning Tree? First, draw the Graph, then Try to find the answer, and then check the answer below.
Edges with weights: {1, 2, 7} {1, 3, 2} {1, 4, 4} {2, 3, 3} {2, 4, 5} {3, 4, 2} {3, 5, 6} {4, 5, 4}

What is a minimum spanning tree?

What is the minimum spanning tree for the graph as provided above?

What is Prim’s Algorithm for Spanning Trees?

Describe the steps as used in Prim’s Algorithm?

Give the Algorithm i.e. Prim’s Algorithm?

Write pseudo-code for Prim’s Algorithm?

Implement Prim’s Algorithm in Python, R, Matlab, or in any other language of your choice?

What is the initialization step in Prim’s Algorithm?

Can you choose any node to start with Prim’s Algorithm?

True or False, Prim’s algorithm does not include all nodes in the output?

How an edge/path is selected in Prim’s Algorithm?

True or False, to proceed and when to select an edge, the edge does not need to belong to the already formed Minimum Spanning Tree (MST)?

True or False, to proceed and to select a new edge, the edge will need to have the highest weight outgoing from the MST or from the vertex under consideration)?

True or False, to proceed and to select a new edge, the edge will need to have the minimum weight outgoing from the MST (or from the vertex under consideration)?

True or False? The new edge selection steps are as follows.
Step 1. For the new edge, exactly one of its vertices/edge-points will need to be in the MST already
Step 2. The new edge has the minimum weight that satisfies step 1.

How long will you continue to add new edges to the MST? i.e. terminating condition for your algorithm.

Apply Prim’s algorithm to find the MST in Graph given above/below: See the answer after you give it a try
Edges with weights: {1, 2, 7} {1, 3, 2} {1, 4, 4} {2, 3, 3} {2, 4, 5} {3, 4, 2} {3, 5, 6} {4, 5, 4}

What is K-Spanning tree?

What are the steps in K-Spanning Tree?

Give the Algorithm for K-Spanning?

Write pseudo-code for K-Spanning?

Implement the K-Spanning tree algorithm in Python, R, Matlab, or in any other language of your choice?

What is K in the K-Spanning Tree algorithms?

How many edges do you remove to create k Clusters?

What is the first step in the K-Spanning tree?

When you remove edges from an MST – which edges do you remove? Edges represent distance. The ones with the highest weights or the lowest weights?

Some Answers:

What is a Spanning Tree?
Ans: A connected subgraph with all vertices and no cycles

For the undirected Graph below, what is a Spanning Tree?
Edges with weights: {1, 2, 7} {1, 3, 2} {3, 4, 2} {3, 5, 6}
Weight: 17

What is a minimum spanning tree?
Ans: Spanning trees with the minimum sum of edge weights where weights indicate distances.

What is the minimum spanning tree for the graph as provided above?
Ans: the same spanning tree with weight sum = 17
i.e. {1, 2, 7} {1, 3, 2} {3, 4, 2} {3, 5, 6}

What is Prim’s Algorithm for Spanning Trees?
Ans: Finds the minimum spanning tree

Apply Prim’s algorithm to find the MST in Graph given above/below: See the answer after you give it a try
Edges with weights: {1, 2, 7} {1, 3, 2} {1, 4, 4} {2, 3, 3} {2, 4, 5} {3, 4, 2} {3, 5, 6} {4, 5, 4}
Draw the graph that will make things easier

Ans: Select node 5
Select (5, 4, 4) from {3, 5, 6} {4, 5, 4}
Add (5, 4) to the MST
select edge {3, 4, 2} from {3, 5, 6} {2, 4, 5} {3, 4, 2} {1, 4, 4}
MST: {5, 4, 4} {3, 4, 2}
Similarly: select (3, 2, 3) {1, 3, 2}
Final Output: {5, 4, 4} {3, 4, 2} (3, 2, 3) {1, 3, 2}

What is the K-Spanning tree?
Ans: Community/Clustering Algorithm

When you remove edges from an MST – which edges do you remove? Edges represent distance. The ones with the highest weights or the lowest weights?
Ans: highest

By

Sayed Ahmed

Linkedin: https://ca.linkedin.com/in/sayedjustetc

Blog: http://Bangla.SaLearningSchool.com, http://SitesTree.com
Online and Offline Training: http://Training.SitesTree.com

Affiliate Links:
Hottest Deals on Amazon USA: http://tiny.cc/38lddz

Hottest Deals on Amazon CA: http://tiny.cc/bgnddz

Hottest Deals on Amazon Europe: http://tiny.cc/w4nddz



Not that this site is doing any great work; However, if you want to contribute to the operation of this site (or charitable/non-profit work in the education sector), you can financially contribute to: safoundation at salearningschool.com using Paypal.

Graph Mining: Betweenness Based Clustering: Learn by finding answers to the following questions. Can you answer the following?

Graph Mining: Betweenness Based Clustering: Learn by finding answers to the following questions. Can you answer the following?

What are the types of Betweenness?

What is Vertex Betweenness? i.e. the concept

What is Edge Betweenness? i.e. the concept

Describe Vertex Betweenness? maybe just giving an example

What does Vertex Betweenness clustering achieve? i.e. the output?

Give an Algorithm for Vertex Betweenness Clustering?

What is mu in the Algorithm for Vertex Betweenness Clustering?

Which vertex do you select at each step? i.e. the one with the highest betweenness or the lowest betweenness?

When you select a vertex at each step? Then what do you do (i.e. to create clusters)

Does the selected vertex go to all the clusters created around it?

What is the other name for Edge Betweenness?

Describe Edge Betweenness? maybe just giving an example

What does Edge Betweenness clustering achieve? i.e. the output?

Give an Algorithm for Edge Betweenness Clustering?

What is mu in the Algorithm for Edge Betweenness Clustering?

Which Edge do you select at each step? i.e. the one with the highest betweenness or the lowest betweenness?

When you select an Edge at each step? Then what do you do (i.e. to create clusters)

Does the selected Edge go to all the clusters created around it? or you just cut the graph at that edge and create clusters.

Answers:

Describe Vertex Betweenness? maybe just giving an example
Ans: The total number of shortest paths that pass through the vertex = the Vertex Betweenness for that Vertex. i.e. Among All vertices to all vertices shortest paths.

What is the other name for Edge Betweenness Clustering?
Ans: Girvan & Newman Clustering

What is Edge Betweenness? i.e. the concept
Ans: For a given edge, the number of shortest paths that pass through the edge. (All pairs/nodes to all pairs/nodes shortest paths)

By

Sayed Ahmed

Linkedin: https://ca.linkedin.com/in/sayedjustetc

Blog: http://Bangla.SaLearningSchool.com, http://SitesTree.com
Online and Offline Training: http://Training.SitesTree.com

Affiliate Links:
Hottest Deals on Amazon USA: http://tiny.cc/38lddz

Hottest Deals on Amazon CA: http://tiny.cc/bgnddz

Hottest Deals on Amazon Europe: http://tiny.cc/w4nddz





Not that this site is doing any great work; However, if you want to contribute to the operation of this site (or charitable/non-profit work in the education sector), you can financially contribute to: safoundation at salearningschool.com using Paypal.




Graph Mining: Shared Nearest Neighbors : Clustering : Community Detection

Graph Mining: Shared Nearest Neighbors : Clustering : Community Detection

Graph Mining: Shared Nearest Neighbors (SNN): Clustering : Community Detection: Learn by Finding Answers to the Following Questions.

Will use SNN sometimes.

What is one another name of the algorithm: Shared Nearest Neighbors?

What is the purpose of the Algorithm: Shared Nearest Neighbors?

Can you name other Algorithms that serve the same or similar purpose?

What is the Criteria that SNN uses?

Is SNN Hierarchical? What does Hierarchical mean in the context of Clustering/Community detection?

How does SNN work? i.e. what is the algorithm? i.e. how does SNN create clusters/communities?

Give and explain the steps in SNN with a small example.

What is threshold τ in the SNN algorithm? Is it numeric? What can be the maximum and the minimum values?

For the following Undirected and unweighted Graphs, show the steps and the final clusters.
Edges: {0, 1} {0, 2} {0, 3} {1, 2}, {1, 3} {2, 3} {2, 4} {3, 4}
You can draw the graph first. You can use τ = 2.

What is Node Similarity or Node Proximity between two nodes in SNN?

What is the output of SNN? i.e. on an undirected and unweighted Graph?

Will the output will have weights on the edges?

Give the pseudocode for SNN algorithm

Implement the SNN algorithm in Python or R or Matlab – whichever you prefer.

Can you apply SNN on weighted Graphs?

If you can apply SNN on weighted graphs, then how will you apply the Threshold, say theta?

What is the first step in applying theta – if that is doable?

What is the difference between tau (τ) and theta.

What is k in SNN algorithms (if Weighted)?

How do we know which tau(τ) or ”k” to choose?

What are some evaluation metrics for tau or k?

what is Conductance?

Conductance whose property is this? The input graph, the output graph or the possible communities (from where you select the final communities)

Is low value or high value of Conductance – that is used for the communities?

When comparing two k or tau values – which k or tau that you accept? Think in terms of Conductance.

So, what was the purpose behind choosing these K or Tau values? What do we want to achieve ultimately? Is it to achieve Stronger communities by checking all possible communities and then measuring the community strength using Conductance? If it is – do all the questions on Weighted Graphs make sense? Why, Why not? How?

Write a Pseudo-code for SNN on Undirected Weighted Graphs. Find the optimal value for K and tau.

Implement SNN on Undirected Weighted Graphs. Print the optimal value for K and tau.

Why are we detecting communities and clusters anyway? What are the practical applications of such algorithms?
Hint: Check notes on Introduction to Clustering/Community detection

Some Answers:
What is one another name of the algorithm: Shared Nearest Neighbors?
Ans: Jarvis-Patrick algorithm

Can you name other Algorithms that serve the same or similar purpose?
Ans: Maximal-Clique Enumeration, K- Spanning Tree, Shared Nearest Neighbor, Highly Connected Components, MinCut, Betweenness Based Algorithms, Louvain Modularity, CNM Algorithm

What is the Criteria that SNN uses?
Ans: Two nodes are similar if they share a lot of neighbors

Is SNN Hierarchical?
Ans: No

What is Node Similarity or Node Proximity between two nodes in SNN?
Ans: Count of the shared number of nodes/neighbors

What is k in SNN algorithms (if Weighted)?
retain its k neighbors

Resources:

Jarvis-Patrick Clustering
https://btluke.com/jpclust.html

Empirical Comparison of Algorithms for Network Community Detection
https://cs.stanford.edu/~jure/pubs/communities-www10.pdf

By

Sayed Ahmed

Linkedin: https://ca.linkedin.com/in/sayedjustetc

Blog: http://Bangla.SaLearningSchool.com, http://SitesTree.com
Online and Offline Training: http://Training.SitesTree.com

Not that this site is doing anything great work; However, if you want to contribute to the operation of this site (or charitable/non-profit work in education sector), you can donate to: safoundation using Paypal.

Affiliate Links:
Hottest Deals on Amazon USA: http://tiny.cc/38lddz

Hottest Deals on Amazon CA: http://tiny.cc/bgnddz

Hottest Deals on Amazon Europe: http://tiny.cc/w4nddz

Has your DNS got hijacked?

Tool: https://www.f-secure.com/en_GB/web/home_gb/router-checkerKnowledgebase: https://securitytrails.com/blog/dns-hijacking

By

Sayed Ahmed

Linkedin: https://ca.linkedin.com/in/sayedjustetc

Blog: http://Bangla.SaLearningSchool.com, http://SitesTree.com
Online and Offline Training: http://Training.SitesTree.com

Affiliate Links:
Hottest Deals on Amazon USA: http://tiny.cc/38lddz

Hottest Deals on Amazon CA: http://tiny.cc/bgnddz

Hottest Deals on Amazon Europe: http://tiny.cc/w4nddz

Graph Mining: Community Detection: Learn by finding answers to the following questions. Can you answer the following questions on Community Detection?

Graph Mining: Community Detection: Learn by finding answers to the following questions. Can you answer the following questions on Community Detection?

What is a community anyway? Describe from your real-world/social understanding of it?

Can you relate it to the Graphs concept in Computer Science?

In your daily life do you interact with a community in a real world? or in your communication with others using technologies?

What is Graph as defined in Computer Science Books/Practice? Can you formally represent a Graph? What are the components of a graph?

Is a whole Graph a Community? or Graphs can be subsets (Subgraph) as well?

What is a Sub-graph anyway?

Can you identify communities in real-world networks? i.e. real world networks that can be represented as graphs?

Give examples of real-world Graphs as well.

Can you detect a community in the tissues or the organs in the human body? Can you represent these as Graphs?

Can you detect a community in Friends on social media with similar interests? i.e. is it a community? Can you represent these/this as Graphs?

Can you detect/define a community for the Neighborhoods where a hurricane will likely pass? i.e. is it a community?

Is it a community: People that are likely to be affected by a contagious disease?

Will the properties of a community (subgraph) be the same like the whole graph (i.e. average properties of the whole graph)? or will it differ? When? How? Why? Examples?

How does the formation of communities affect? i.e. How does the existence or not of communities affect? You can provide generic answers or just explain with examples as well.

Do you think that you are a part/node of communities in online social networks such as Facebook, twitter? If so, how and when you are affected? If so, how and when you can affect others?

Can communities affect rumor spreading or disease spreading or epidemic spreading? Can you also identify how a rumor/disease will spread i.e. from the source i.e. which path will it take, how will it flow, who will get affected?

Is it that the spreading will only affect the nodes/parts of the communities? Do you see any limitations of this thought?

Who else can get affected? Can you predict that?

What is Link prediction? What are Link Prediction Algorithms?

Is it a possibility that current communities can be fine tuned? i.e. remove links/nodes and add new links/nodes? Why, why not? How? Is it the right thing to do? why, why not?

What is the difference between clustering and community detection?

What is thought to be of more real world entitities/geared? Community Detection or Clustering?

What is thought to be more geared towards structural Properties such as Min-Cut?

What is Min-Cut anyway?

For modeling, understanding and analysis purpose – can we consider them the same/similar? Community Detection or Clustering?
Ans: Yes

What is Cluster Analysis i.e. Community Detection process? i.e. what will be your process to identify clusters/communities?

Provide the names of some Community Detection Algorithms. Can you explain them as well? Can you formally define/represent and/or show pictorially what they do and how they work (steps as well)? Check the answer section, after you give it a try. You must have studied them in Computer Networks or related courses/concepts (Data Communication, CCNA, CCNP, Vehicle Routing)

How can you evaluate that the detected communities/clusters are good/great communities/clusters?

Answers:
What is a community?
a subset of nodes within the graph such that connections between the nodes (in the subset) are denser than connections with the rest of the network (i.e. from the subset to the outer nodes)

What is Cluster Analysis i.e. Community Detection process? i.e. what will be your process to identify clusters/communities?
"The process of dividing nodes of a graph into possibly overlapping, subsets, where nodes in each subset are considered related by some similarity measure"

Provide the names of some Community Detection Algorithms
Maximal-Clique Enumeration, K- Spanning Tree, Shared Nearest Neighbor, Highly Connected Components, MinCut, Betweenness Based Algorithms, Louvain Modularity, CNM Algorithm

Resources:
Defining and identifying communities in networks
https://www.pnas.org/content/101/9/2658

Community Structure:
https://en.wikipedia.org/wiki/Community_structure

Graph Clustering:
https://www.csc2.ncsu.edu/faculty/nfsamato/practical-graph-mining-with-R/slides/pdf/Graph_Cluster_Analysis.pdf

By

Sayed Ahmed

Linkedin: https://ca.linkedin.com/in/sayedjustetc

Blog: http://Bangla.SaLearningSchool.com, http://SitesTree.com
Online and Offline Training: http://Training.SitesTree.com

Affiliate Links:
Hottest Deals on Amazon USA: http://tiny.cc/38lddz

Hottest Deals on Amazon CA: http://tiny.cc/bgnddz

Hottest Deals on Amazon Europe: http://tiny.cc/w4nddz

Graph Mining: SMALL WORLD GRAPHS & RANDOM GRAPH GENERATORS: Learn by finding answers to the following questions.

Graph Mining – 002: SMALL WORLD GRAPHS & RANDOM GRAPH GENERATORS

Graph Mining: SMALL WORLD GRAPHS & RANDOM GRAPH GENERATORS: Learn by finding answers to the following questions.

Can you answer the following?

What is a Graph?

Can you define graph formally?

What are the components in a Graph?

What are edges and nodes or vertices in a Graph?

Can you provide examples of Graphs? in Areas such as Science, Engineering, Medical, Biology, Social Sciences, Internet Applications, Social Media?

Can you draw a simple graph?

What is a Random Graph?

What do you use to answer questions about the properties of typical graphs?

What is the purpose of a Random Graph?

What types of graphs you use to answer questions about the properties of typical graphs?

How can you generate a Random Graph?

What is known as Small World Properties for Graphs?

Give some examples of Real Graphs

What is the connection between Real Graphs and Small World Properties?

What are some properties of Small World Networks?

Can you give examples of Non Small World Networks?

For small World Graphs – what will be the average path lengths (count of vertices) – a large number of a small number?

Are small world graphs sparse or dense?

What is power law distribution? How does that related to Small World Graphs?

How can you relate Power Law Distribution to Github network?

What is power law in statistics?

Can you name some Random Graph Generators? What is the purpose? What will they do actually in general? Why will you use these generators.

When edges are created between vertices with probability p : what is this mode of generation called? Is it a Random Graph? Why?

What happens when p = probability is closer to 0? what when p is closer to 1?

What is weight in a random graph Generator for example in the above case?

When a Graph is generated using the probability approach – what is the order of the maximum size graph?

Can you represent the graph generated above as G(n, p)? n = number of vertices, p = probability

For the above case, what happens when np < 1 ?

For the above case, what happens when np = 1 ? Can np be > 1?

When a Graph G(n, p) is generated using the probability approach as mentioned above – and when np < 1, what is the order of the size of a connected component? is it O(n), or o(n), O(log(n)), O(Olog(n)). Check answer section

What is Erdos Renyi? Is it the name of a Random Graph Generator or the name of a small world property or a statistical law?

For Erdos Renyi, is the average path length short?

For Erdos Renyi, do they exhibit local clustering?

Is local clustering a property of small world graphs?

For Erdos Renyi, does it show Skewed degree distribution i.e. skewed power law distribution?

For Erdos Renyi, does it show poission distribution?

What is poission distribution? anyway?

Can you relate poission distribution to Banks or a Diagnostic Center?

What is Watts–Strogatz model for Random Graph Generation? How does it work?

Does Watts–Strogatz model create a directed graph or an undirected graph?

For Watts–Strogatz model, if the desired Node count is N, then what will be the output edge count? You can introduce and define a new parameter if required.

For Watts–Strogatz, is the average path length short?

For Watts–Strogatz, do they exhibit local clustering?

Is local clustering a propery of small world graphs?

For Watts–Strogatz, does it show Skewed degree distribution i.e. skeweed power law distribution?

For Watts–Strogatz, does it show poission distribution?

how does Watts–Strogatz relate to Dirac Delta Function?

what is Barabási–Albert (BA) model? Is it the name of a Random Graph Generator or the name of a small world property or a statistical law?

How does Barabási–Albert (BA) model work? i.e. the steps i.e. the methods

For Barabási–Albert (BA) model, how is a new node added?

For Barabási–Albert (BA) model, does it start with an empty graph or with an already connected graph?

For Barabási–Albert (BA) model, how a new node is connected to an existing node? What does it depend upon? How does a probability play a role?

For Barabási–Albert (BA) model, which nodes will accumulate more links quickly?

For Barabási–Albert (BA) model, which nodes will starve for new links?

For Barabási–Albert (BA) model, is the average path length short?

For Barabási–Albert (BA) model, do they exhibit local clustering?

For Barabási–Albert (BA) model, does it show Skewed degree distribution i.e. skeweed power law distribution?

Answers:

How can you generate a Random Graph?
Start with n isolated vertices, Add successive edges between them at random

Give some examples of Real Graphs
Food webs, Electric power grids, Metabolite processing networks, Networks of brain neurons, Voter networks, Social influence networks, Co-occurrence networks, Networks of connected proteins

What are some properties of Small World Networks?
"Properties of small-world networks
Small-world networks tend to contain cliques, and near-cliques, meaning sub-networks which have connections between almost any two nodes within them. This follows from the defining property of a high clustering coefficient. Secondly, most pairs of nodes will be connected by at least one short path. This follows from the defining property that the mean-shortest path length be small. Several other properties are often associated with small-world networks. Typically there is an over-abundance of hubs – nodes in the network with a high number of connections (known as high degree nodes). These hubs serve as the common connections mediating the short path lengths between other edges. By analogy, the small-world network of airline flights has a small mean-path length"
Reference: https://en.wikipedia.org/wiki/Small-world_network#Examples_of_small-world_networks

Can you give examples of Non Small World Networks?
Ans: Check: Reference: https://en.wikipedia.org/wiki/Small-world_network#Examples_of_small-world_networks

What is power law in statistics?
"In statistics, a power law is a functional relationship between two quantities, where a relative change in one quantity results in a proportional relative change in the other quantity, independent of the initial size of those quantities: "
https://en.wikipedia.org/wiki/Power_law#Power-law_probability_distributions

Can you name some Random Graph Generators?
Erdős–Rényi model, Watts–Strogatz model, Barabási–Albert (BA) model

When a Graph is generated using the probability approach – what is the order of the maximum size graph? Check answer
n to the power 2/3

For Watts–Strogatz model, if the desired Node count is N, then what will be the output edge count? Ans: NK/2

Watts–Strogatz model
K = mean degree = an even number
B = a special parameter
N >> K >> ln(K) >> 1

Check degree distribution for Watts–Strogatz model at: https://en.wikipedia.org/wiki/Watts%E2%80%93Strogatz_model
"The degree distribution in the case of the ring lattice is just a Dirac delta function centered at {\displaystyle K}K. The degree distribution for {\displaystyle 0<\beta <1}0<\beta <1 can be written as:

Resources:
Graph mining – lesson 1: Introduction to graphs and networks
http://www.nathalievialaneix.eu/teaching/m2se/M2SE-network_1.pdf

Erdős–Rényi model
https://en.wikipedia.org/wiki/Erd%C5%91s%E2%80%93R%C3%A9nyi_model

Random Graphs
https://en.wikipedia.org/wiki/Random_graph

Examples of small-world networks
https://en.wikipedia.org/wiki/Small-world_network#Examples_of_small-world_networks

Case Study: Small World Phenomenon
https://introcs.cs.princeton.edu/java/45graph/

Random Graphs: Model of Social Networks
http://www.pnas.org/content/99/suppl_1/2566

Power Law Distribution
https://en.wikipedia.org/wiki/Power_law#Power-law_probability_distributions

Poisson distribution
https://en.wikipedia.org/wiki/Poisson_distribution

Watts–Strogatz model
https://en.wikipedia.org/wiki/Watts%E2%80%93Strogatz_model

Dirac delta function
Everywhere it is zero except at zero
https://en.wikipedia.org/wiki/Dirac_delta_function

Barabási–Albert (BA):
https://en.wikipedia.org/wiki/Barab%C3%A1si%E2%80%93Albert_model#Degree_distribution

Random Graph Generators in Python Libraries
https://networkx.github.io/documentation/networkx-1.10/reference/generators.html

Random Graph Generators in R Libraries
https://rpubs.com/lgadar/generate-graphs

By
Sayed Ahmed

Linkedin: https://ca.linkedin.com/in/sayedjustetc

Blog: http://Bangla.SaLearningSchool.com, http://SitesTree.com
Online and Offline Training: http://Training.SitesTree.com

Affiliate Links:
Hottest Deals on Amazon USA: http://tiny.cc/38lddz

Hottest Deals on Amazon CA: http://tiny.cc/bgnddz

Hottest Deals on Amazon Europe: http://tiny.cc/w4nddz

Graph Mining: Link Prediction. Learn by finding answers to the following questions.

Graph Mining: Link Prediction. Learn by finding answers to the following questions.

What is Link Prediction in Graph Mining?

How can Link Prediction help? and where? can it help in social network, research co-authorship, or spread of disease

Give uses of Link Prediction in epidemiology or any medical/biology application?

Give uses of Link Prediction in Social Network?

Give uses of Link Prediction in co-authorship?

What are the steps in Link Prediction? i.e. define link prediction problem.

Define Link Prediction Problem formally i.e. with Notations i.e. with Graph notations i.e. Graph Representations.

How is node similarity related in Link Prediction?

What are possible Node Similarity algorithms that can be used for the purpose?

Which nodes are the most possible new links? think in terms of Node Similarity Index (Highest, Lowest)

What are the types of Node Similarity? Node proximity?

What is Node Similarity based upon? i.e. Network Topology

What is Local Structure for Node Similarity?

What is Global Structure for Node Similarity?

What are examples of Local Structure for Node Similarity?

What are examples of Global Structure for Node Similarity?

Define Node Neighborhoods. Is it local or global structure?

What is Preferential Attachment Index? Is it LocaL or global structure

What are the types of Node Neighborhoods?

If two nodes do not have any common node — what is the probable similarity (Node Neigh. aspect)?

What is Common Neighbors ? Is it local or global structure? is it Node Neighbor or Preferential Attachment? and why?

What is Jaccard Coefficient ? Is it local or global structure? is it Node Neighbor or Preferential Attachment? and why?

What is Adamic-Adar? Is it local or global structure? is it Node Neighbor or Preferential Attachment? and why?

What is the name of the Node Similarity approach where Sum of the inverse logarithmic degree centrality of the neighbors shared by the two nodes are counted?

What is the name of the Node Similarity approach where the ratio of seize of set intersection to the set union is counted?

What is the name of the Node Similarity approach where the count of common nodes are used?

If node similarity score is counted as multiplication of the number/count of outgoing edges for a node pair. And then the higher results are assumed to create new links. What is this approach called?

When similarity scores are calculated based on global link structure of graph – what is this called local structure or global structure?

What is an example of Global Structure?

What are the examples of Global Structure?

What is Kartz Index for Global Structure?

What is Simrank for Global Structure?

When Node Similarity is calculated as: Sum of count of all paths between node pairs – what is this approach called? Then how is the link prediction made?

When Node Similarity is calculated as: two nodes are similar if they are referred by similar nodes. What is the name?

How can you measure if your implemented link prediction algorithm is great or not?

Can you use train and test concept for the measurement? Can you define the steps/problems formally? with Graph Notations?

What are some measures to calculate in the train/test approach?

Answers:
What is the name of the Node Similarity approach where Sum of the inverse logarithmic degree centrality of the neighbors shared by the two nodes are counted?
Ans: Adamic-Adar

What is the name of the Node Similarity approach where the ratio of seize of set intersection to the set union is counted?
Ans: Jaccard Coefficient

What is the name of the Node Similarity approach where the count of common nodes are used?
Ans: Common Neighbors

If node similarity score is counted as multiplication of the number/count of outgoing edges for a node pair. And then the higher results are assumed to create new links. What is this approach called?
Ans: Preferential Attachment Index

What is an example of Global Structure?
Ans: Path Length > 2

What are the examples of Global Structure?
Shortest Paths – use inverse of distance as similarity, Kartz Index, SimRank

What are some measures to calculate in the train/test approach?
Accuracy, F1-score, Sensitivity, Most metrics that would work for classification

Resources
Link Prediction
https://paperswithcode.com/task/link-prediction

Similarity Index based Link. Prediction Algorithms in Social Networks: A Survey
https://pdfs.semanticscholar.org/8e72/fa77f3d788f3c67da1e1c6347c3aaf280723.pdf

Proximity-based Methods for Link Prediction
https://cran.r-project.org/web/packages/linkprediction/vignettes/proxfun.html

Evaluating Link Prediction Methods
https://arxiv.org/pdf/1505.04094.pdf

Link Prediction Algorithm
http://be.amazd.com/link-prediction/

Evaluating link prediction methods
https://www3.nd.edu/~dial/publications/yang2015evaluating.pdf

By

Sayed Ahmed

Linkedin: https://ca.linkedin.com/in/sayedjustetc

Blog: http://Bangla.SaLearningSchool.com, http://SitesTree.com
Online and Offline Training: http://Training.SitesTree.com

Affiliate Links:
Hottest Deals on Amazon USA: http://tiny.cc/38lddz

Hottest Deals on Amazon CA: http://tiny.cc/bgnddz

Hottest Deals on Amazon Europe: http://tiny.cc/w4nddz

Deep Learning (DL): can you answer these introductory questions on DL? Target: Starters in DL

Deep Learning – 001: Introduction to Deep Learning.

Deep Learning (DL): can you answer these introductory questions on DL? Target: Starters in DL

Can you define AI, ML, DL?
Can you draw a diagram to show the relations of AI, ML, DL?

What is Symbolic AI?

Is Symbolic AI good for Image Classification, Speech recognition, and Language Translation? and Why?

How are AI, ML, DL for Image Classification, Speech recognition, and Language Translation? and Why? Can you compare these among them?

What is the motivation behind inventing Machine Learning?

How does programming differ for ML than classical programming?

Which one uses data intensively? Classical Programming or ML?

Which one uses Rules intensively? Classical Programming or ML? and why?

When was ML invented i.e. the idea? When it flourished? and why?

Why did not ML flourish earlier?

How recent is Deep Learning (DL)? When did it start to flourish?

How prominent is DL in Kaggle contests?

What is more extensively use in DL? Math or Engineering? and why? Is it for good or for bad? Can you think of any limitations?

Among ML, and DL where math is more extensively used? and why? where in AI, ML< DL such Math focused study might not be the greatest option? and why?

How ML differ from Math and Statistics esp. Statistics and why?

Can you name some Prediction approaches in ML?

How are data represented in ML and DL?

What is important in ML? Deep understanding or Representation of the layers of the process and data?

What is important in Dl? Deep understanding or Representation of the layers of the process and data?

What is the link among Brain, DL, and NN (Neural Network?)

What are other possible names of Deep Learning?

Does deep learning identify digits (picture recognition, image classification) in one step or multiple steps?

What is Deep NN?

What are some parameters for NN and DL? or just name what you use when writing (representing) a DL solution.

What are Weights, Input, Layers, Predictions, loss function, objective function in DL?

Can you define/explain (not memorized) and give examples of Weights, Input, Layers, Predictions, loss function, objective function in DL?

What is the optimizer in DL?

What is a Back-propagation Algorithm in DL? Explain, Example, Draw, write code and show

What applications have used DL successfully?

Will you apply DL for all Learning, classification, prediction problems? Why or why not? When DL can do the best?

What are other alternate approaches than DL?

Why did not DL florished/used much in the past?

Is handwritten digit classification be an application where DL can be used? What companies might get benefit with such applications?


Misc.

What are Kernel methods? Give examples. How are they related to DL?

Is SVM a kernel method? What does SVM stand for?

How does SVM work?

Is SVM great for image classification?

What is Gini Index? What does it mean?

What is Information gain in decision trees? what is the name?

What is random forest?

What is Gradient Boosting?

What DL approach worked best for image classification?

What is CNN? What is RNN? What is RNN-LSTM? What is LSTM? What is gated RNN?

How does CNN work? Can CNN be used for Image Classification? What level of accuracy you can achieve with CNN? If used, how will CNN work to classify images?

Do you know what Gradient Boosting is?

What are XGBoost Library?

What is Keras library?

What are the libraries available for DL implementation? What are the languages that are best for DL? and why?

CNN got invented on 1989; LSTM on 1997. Why they got popularity or in use today? Any similarities why DL flourished now?

what kind of CPU is geared towards DL?

What is CUDA?

What are the contributions of NVIDIA for DL?

What is common in NN, and DL? Addition, multiplication, matrix, matrix-multiplication?

What are the potential future applications of DL?

What are the potential improvements potential or important for DL?

Can you do DL in Python Library, Theano, TensorFlow, Keras?

What is the most used for DL? Python Library, Theano, TensorFlow, Keras

What is Deep Mind? What does the project do?

What is RMSProp?

What is Adam?

What are some optimization approaches in DL?

What is the role of Weight in DL? and in DL code?

What is TPU? Who invented it?

Give examples of some Loss functions used in DL

Some Answers

What is Symbolic AI?

"Symbolic artificial intelligence is the term for the collection of all methods in artificial intelligence research that are based on high-level "symbolic" (human-readable) representations of problems, logic and search. Symbolic AI was the dominant paradigm of AI research from the mid-1950s until the late 1980s."
From: https://en.wikipedia.org/wiki/Symbolic_artificial_intelligence

Example: Prolog
I did teach a very introductory practical course on Prolog on around 2002 – 2003. For sure, I do not remember the content that I taught.

"Symbolic Reasoning. A reasoning is an operation of cognition that allows – following implicit links (rules, definitions, axioms, etc.) – to produce new knowledge from already existing knowledge. The reasoning is said to be automated when done by an algorithm.
Symbolic Reasoning – Sem Spirit"

From: www.semspirit.com › artificial-intelligence › symbolic-reasoning

What are other possible names of Deep Learning?
Ans: Layered representations learning?
Hierarchical representations learning?

What are some parameters for NN and DL?
Ans: Weights, Input, Layer, Predictions, loss function, objective function

What applications have used DL successfully?
Ans: Human level image classification, Speech recognition, Hand-writing, machine translation, text to speech, Digital Assistant Google Now, Amazon Alexa, Autonomous Cars, Ads Targeting, Natural Language Questions, superhuman go Playing

What are other alternate approaches than DL?
Ans: Statistics for data analysis, Naive Bayes Algorithm, logistic Regression, hello world algorithm.

Why did not DL flourished/used much in the past?
Ans: Missing efficient way of training large neural networks

What is XGBoost?
"XGBoost is an implementation of gradient boosted decision trees designed for speed and performance."
https://machinelearningmastery.com/gentle-introduction-xgboost-applied-machine-learning/

Give examples of some Loss functions used in DL
"This tutorial is divided into three parts; they are:
Regression Loss Functions. Mean Squared Error Loss. Mean Squared Logarithmic Error Loss. …
Binary Classification Loss Functions. Binary Cross-Entropy. Hinge Loss. …
Multi-Class Classification Loss Functions. Multi-Class Cross-Entropy Loss. Sparse Multiclass Cross-Entropy Loss."
https://machinelearningmastery.com/how-to-choose-loss-functions-when-training-deep-learning-neural-networks/

Sayed Ahmed

Linkedin: https://ca.linkedin.com/in/sayedjustetc

Blog: http://Bangla.SaLearningSchool.com, http://SitesTree.com
Online and Offline Training: http://Training.SitesTree.com

Affiliate Links:
Hottest Deals on Amazon USA: http://tiny.cc/38lddz

Hottest Deals on Amazon CA: http://tiny.cc/bgnddz

Hottest Deals on Amazon Europe: http://tiny.cc/w4nddz

Our Most Accessed Short Notes

Top Posts

Title Views
Home page / Archives More stats 131,199
উচ্চ মাধ্যমিক সিলেবাস অনুযায়ী একাদশ-দ্বাদশ শ্রেণীর বইসমূহের পাঠ্যক্রম (কারিকুলাম) More stats 20,177
এইচ টি এম এল কোর্স সমূহ । HTML Courses in Bangla More stats 11,088
Computer hardware bangla tutorial -24 (কম্পিউটার হার্ডওয়্যার বাংলা টিউটোরিয়াল) More stats 8,055
সি এস এস কোর্স সমূহ । CSS Courses in bangla More stats 7,141
CT scan or MRI scan treatment and cost in Bangladesh More stats 6,852
পি এইচ পি কোর্স সমূহ । PHP Courses in Bangla More stats 5,558
22 How to Learn SEO at home, Outsourcing Bangla Tutorial Lesson 22, Freelancing Bangla Tutorial More stats 5,167
#2430 (not found) More stats 5,123
PHP Bangla Tutorial (Part-1) পিএইচপি বাংলা টিউটোরিয়াল (পর্ব -১) More stats 4,837
Database Management System: ডাটাবেজ ম্যানেজমেন্ট সিস্টেম More stats 4,670
More stats 4,454
জাভা স্ক্রিপ্ট এবং জাভা স্ক্রিপ্ট ফ্রেম ওয়ার্কস । JavaScript and JavaScript FrameWorks in bangla More stats 4,041
সফটওয়্যার কি? এটি কিভাবে কাজ করে? More stats 3,714
Part – 1: নিজেই কিভাবে আইপিএস বানাবেন: How to build a Mini IPS on your own More stats 3,655
Easy Dimer Nasta recipe Bangla Video for Bangladeshi (ডিমের নাস্তার রেসিপি) More stats 3,414
HTML এর tag সমূহ : HTML Tags More stats 3,292
অ্যানগুলার জে এস কোর্স সমূহ । AngularJS Courses in Bangla More stats 3,263
ASP.NET টিউটোরিয়াল :[পর্বঃ১] : ব্যাসিক ধারণা : ASP.NET Web Forms – Tutorial More stats 3,230
নবম এবং দশম শ্রেনী (মাধ্যমিক), বাংলাদেশ এর পাঠ্যক্রম এর উপর ভিত্তি করে ইন্টারনেট-ভিত্তিক কম্পিউটার বিজ্ঞান/শিক্ষা কোর্স More stats 3,022
এস কিউ এল কোর্স সমূহ । SQL Courses in Bangla More stats 2,820
Logic Gates: লজিক গেট্‌স ঃ যুক্তিনির্ভর মৌলিক ডিজিটাল যন্ত্র (গেট্‌স)। More stats 2,786
ত থ দ ধ ন দিয়ে শব্দ More stats 2,783
এইচটিএমএল লিস্ট (HTML tag list) More stats 2,760
AngularJS টিউটোরিয়াল (AngularJS Tutorial in Bangla) More stats 2,694
Online Income Related Resources: ইন্টারনেট থেকে কিভাবে টাকা উপারজন করবেন। More stats 2,664
বুটস্ট্র্যাপ শেখা শুরু করা যাক (Bootstrap Get Started) More stats 2,568
সার্চ ইঞ্জিন অপটিমাইজেশন ( এস ই ও) কোর্স সমূহ । SEO Courses More stats 2,507
পাইথন প্রোগ্রামিং টিউটোরিয়াল : বেসিক (Python Tutorial in Bangla : Basic) More stats 2,468
সফটওয়ার ইঞ্জিনিয়ারিংঃ সারসংক্ষেপ (What is Software Engineering) More stats 2,451
WordPress Bangla Tutorial (Part-13) (ওয়ার্ডপ্রেস বাংলা টিউটোরিয়াল (পর্ব ১৩)) More stats 2,367
Bangladeshi Misti Recipe in Bangla (বাংলাদেশী মিষ্টি রেসিপি) More stats 2,273
Lecture – 03: variables (java tutorial in bangla) (লেকচার – ০৩: ভেরিয়েবল (বাংলা জাভা টিউটোরিয়াল)) More stats 2,241
Lecture – 01: JavaScript Bangla Tutorial (লেকচার – ০১: বাংলা জাভাস্ক্রিপ্ট টিউটোরিয়াল) More stats 2,223
অ্যান্ড্রয়েড এর জন্য মোবাইল এপ্লিকেশন ডেভেলপমেন্ট সাথে ফোনগেপ। Mobile Application Development for android with phonegap More stats 2,169
বুট স্ট্র্যাপ কোর্স সমূহ । Bootstrap Courses in Bangla More stats 2,125
Bangla Shorborno : বাংলা স্বরবর্ণ More stats 2,024
Illustrator Bangla Tutorial (Part-10) (ইলাসট্রেটর বাংলা টিউটোরিয়াল (পার্ট-১০)) More stats 1,814
সি – পয়েন্টার . C Pointers More stats 1,804
এইচটিএমএল টিউটোরিয়াল পরিচিতি (HTML tutorial Introduction) More stats 1,750
ASP.NET টিউটোরিয়াল :[পর্বঃ ২]:: Web Forms দিয়ে এইচটিএমএল পেজ তৈরী More stats 1,705
AngularJS পরিচিতি (AngularJS Introduction in Bangla) More stats 1,703
মডেম কি? More stats 1,700
05 CCNA IN BENGALI vlan configuration (ভিল্যান কনফিগারেশন) More stats 1,683
SQL কি? Introduction to SQL More stats 1,648
নোড.জেএস (Node. Js) টিউটোরিয়াল More stats 1,643
Bangla Bornomala full ঃ বাংলা বর্ণমালা More stats 1,620
উইন্ডোজ ৮.১ টিউটোরিয়াল: মাইক্রোসফট একাউন্ট (Microsoft Account) More stats 1,616
Algorithms and Flow Chart: প্রবাহ চিত্র ব্যবহার করে প্রোগ্রাম ডিজাইন More stats 1,607
সফটওয়ার ডেভলাপমেন্ট লাইফসাইকেল . Software Development Life Cycle More stats 1,598
Lecture – 01: Ajax Bangla Tutorial (লেকচার – ০১: এজ্যাক্স বাংলা টিউটোরিয়াল) More stats 1,572
এখন আপনিও পারবেন জাভা সফটওয়্যার এডিট করতে ও মাল্টিমিডিট বানাতে : Java and Multimedia More stats 1,542
গ্রাফিক্স ডিজাইন যেভাবে শিখবেন More stats 1,540
Twitter Bootstrap Bangla Tutorial (Part-1) (টুইটার বুটস্ট্র্যাপ বাংলা টিউটোরিয়াল (পর্ব -১)) More stats 1,514
পাইথন প্রোগ্রামিং : নাম্বার (Python Numbers in bangla) More stats 1,491
সফটওয়্যার ডেভালাপমেন্ট More stats 1,443
Encoders and Decoders: এনকোডার এবং ডিকোডার More stats 1,401
Twitter Bootstrap Bangla Tutorial (Part-3) (টুইটার বুটস্ট্র্যাপ বাংলা টিউটোরিয়াল (পর্ব -৩)) More stats 1,401
সিস্কো (সি সি এন এ, সি সি এন পি, সি সি আই এ, ভইস, সি সি এস প) কোর্স সমূহ । CISCO Courses More stats 1,359
Samai Jorda Eid Special Recipe (শেমাই জর্দা ঈদের স্পেশাল রেসিপি) More stats 1,327
Chotpoti Recipe in Bangla for Bangladeshi – Very Popular Snack in Bangladesh: (চটপটি রেসিপি) More stats 1,301
Gunoniok gunitok More stats 1,257
How to edit text in image using photoshop ( Bengali tutorial ) (ফটোশপ ব্যবহার করে কিভাবে চিত্রের লেখা সম্পাদন করবেন) (বাংলা টিউটোরিয়াল) More stats 1,250
Lecture – 04: Kirchhoff’s Voltage Law and Current Law (লেকচার – ০৪: কির্ছফ এর ভোল্টেজ সূত্র এবং বর্তমান সূত্র) More stats 1,222
oDesk Bangla Tutorial (Part-1) (ওডেস্ক বাংলা টিউটোরিয়াল (পর্ব ১)) More stats 1,219
এইচটিএমএল এর মৌলিক বিষয় (HTML Basic Example) More stats 1,193
Introduction to Cloud Computing: ক্লাউড কম্পিউটিং এর উপর প্রাথমিক ধারণা More stats 1,163
Our Services More stats 1,142
সি এস এস পরিচিতি (CSS Introduction) More stats 1,141
এএসপি.নেট এমভিসি – ভিউস . ASP.NET MVC – Views More stats 1,129
Hajj & Umrah – How to ? 1 of 8 [BANGLA] (হজ্ব ও ওমরাহ) More stats 1,128
জে কুয়েরি কোর্স সমূহ । jQuery Courses in Bangla More stats 1,117
শিক্ষক/ব্লগার হতে চান? More stats 1,079
HTML & CSS BANGLA TUTORIAL (PART-10)(Simple paragraph design) [HTML এবং CSS বাংলা টিউটোরিয়াল (পর্ব 10) (সিম্পল অনুচ্ছেদ ডিজাইন)] More stats 1,068
এইচটিএমএল এডিটর (HTML Editor) More stats 1,049
Photoshop bangla tutorial basic animation (ফটোশপ বাংলা টিউটোরিয়াল মৌলিক অ্যানিমেশন) More stats 1,031
অ্যালগরিদম কি? অ্যালগরিদম সম্পর্কে বিস্তারিত । What is an Algorithom? More stats 1,030
Shahi Haleem Recipe – Popular Iftar Item- Bangla Video for Bangladeshi (শাহী হালীম রেসিপি) More stats 953
এসকিউয়েল (SQL) কি? What is SQL? More stats 949
ka_kha_practice : ক খ অনুশীলন More stats 928
তেহেরি রান্না করবেন কীভাবে More stats 928
Earning money using internet Bangla Tutorial .flv (ইন্টারনেট বাংলা টিউটোরিয়াল ব্যবহার করে টাকা রোজগার) More stats 920
Computer hardware bangla tutorial -17(Data recovery) (কম্পিউটার হার্ডওয়্যার বাংলা টিউটোরিয়াল) More stats 884
Lecture – 01: Cover Letter (লেকচার – ০১: কভার লেটার) More stats 877
ASP.NET টিউটোরিয়াল :[পর্বঃ ৩]:: ASP.NET Web Forms দিয়ে সার্ভার কনট্রোল More stats 867
বাংলায় এজাইল পদ্ধতি টিউটোরিয়াল (Agile Methodology Tutorial in Bangla) More stats 837
Forex Money Management Bangla Video Tutorial (ফরেক্স অর্থ ব্যবস্থাপনা বাংলা ভিডিও টিউটোরিয়াল) More stats 835
Project bid a simple data entry project for money making tutorial (Bangla Video Tutorial) প্রজেক্ট: একটি সহজ ডাটা এন্ট্রি প্রজেক্ট এ বিড এর মাধমে টাকা উপার্জন এর টিউটোরিয়াল More stats 825
জাভাস্ক্রিপ্ট টিউটোরিয়াল JavaScript Tutorial More stats 808
Bangladeshi Sana Recipe in Bangla (বাংলাদেশী সানা রেসিপি) More stats 808
Recipe for Bangladeshi: Bangla Video (বাংলা ভাষায় রেসিপি) More stats 803
পিএইচপি ৫ টিউটোরিয়াল (PHP 5 Tutorial in Bangla) More stats 796
ডেটা কমিউনিকেশন ও কম্পিউটার নেটওয়ার্ক : নেটওয়ার্ক সুইচিং (DCN – Network Switching) More stats 795
Lecture – 02: OHM’s Law (লেকচার – ০২: ওহম সূত্র) More stats 792
মেশিন লার্নিং — Machine Learning More stats 785
সহ মৌলিক সংখ্যা More stats 766
বুটস্ট্র্যাপ গ্রিড – বড় ডিভাইস । Bootstrap Grid – Large Devices More stats 764
এইচটিএমএল এট্রিবিউট (HTML Attributes) More stats 753
অ্যাঙ্গুলার জেএস এক্সপ্রেশন (AngularJS Expressions in Bangla) More stats 751
বুটস্ট্র্যাপ গ্রিডস (Bootstrap Grids) More stats 745
Bangladeshi Pitha Style Recipe in Bangla (বাংলাদেশী পিঠা শৈলী রেসিপি) More stats 728
এসকিউএল টিউটোরিয়াল . SQL Tutorial More stats 724
Tonsil problem in winter season (টনসিল সম্যসা) More stats 722
পিএইচপিঃ ইন্টারভিউয়ের প্রশ্নাবলী এবং উত্তরসমূহ। PHP Interview Questions and Answers More stats 713
এইচটি এম এল এর উপাদান সমূহ (HTML Elements) More stats 707
About Us More stats 705
কি এই প্রোগ্রামিং ???? What is Programming? More stats 696
HTML5 Bangla Tutorial (Part-2) (এইচটিএমএল৫ এর বাংলা টিউটোরিয়াল (পর্ব -২)) More stats 695
কিভাবে আপনার কম্পিউটারকে শর্টকাট ভাইরাস মুক্ত করবেন More stats 687
Another Bangla Bornomala: বাংলা বর্ণমালা More stats 683
বায়োইনফরমেটিক্স পরিচিতি (Bioinformatics) More stats 674
. More stats 660
জাভাস্ক্রিপ্ট অবজেক্ট নটেশন টিউটোরিয়াল (JSON Tutorial) More stats 659
এসকিউয়েল দিয়ে ডেটাবেস তৈরী (SQL Database Creation Tutorial in Bangla) : More stats 654
Part – 2: নিজেই কিভাবে আইপিএস বানাবেন: How to build a Mini IPS on your own More stats 641
এইচটিএমএল এর টেক্সট ফরমেটিং (HTML Text Formatting Elements) More stats 635
Online Income for the People of Bangladesh (বাংলাদেশীদের জন্য অনলাইনে আয়) More stats 627
WordPress Bangla Tutorial (Part-1) (ওয়ার্ডপ্রেস বাংলা টিউটোরিয়াল (পর্ব ১)) More stats 625
Photoshop bangla tutorial-12 (Keyboard Shortcut) (ফটোশপ বাংলা টিউটোরিয়াল-১২ (কীবোর্ড শর্টকাট)) More stats 624
PSD to HTML Bangla Tutorial (Part-6) (পিএসডি থেকে এইচটিএমএল বাংলা টিউটোরিয়াল (পর্ব -৬)) More stats 623
SEO tips & tricks, seo tutorials, seo training (SEO blog Bangla Videos) More stats 621
ডেটা কমিউনিকেশন ও কম্পিউটার নেটওয়ার্ক : ট্রান্সমিশন মিডিয়া (DCN – Transmission Media) More stats 621
ডাটাবেজ ম্যানেজমেন্ট সিস্টেম More stats 619
জাভাস্ক্রিপ্ট পরিচিতি (JavaScript Introduction) More stats 616
HTML5 Bangla Tutorial (Part-1) (এইচটিএমএল৫ এর বাংলা টিউটোরিয়াল (পর্ব -১)) More stats 614
Windows 8 Tips (উইন্ডোজ ৮ টিপস) More stats 607
সিএসএস সিন্ট্যাক্স (CSS Syntax) More stats 606
লাল মিষ্টি বা কালোজাম মিষ্টি বানাবেন কীভাবে More stats 604
আপনার কম্পিউটার এর প্রয়োজনীয় কিছু সফটওয়্যার যা না হলেই নয়। Some important software for your PC More stats 596
PSD to HTML Bangla Tutorial (Part-3) (পিএসডি থেকে এইচটিএমএল বাংলা টিউটোরিয়াল (পর্ব -৩)) More stats 586
নড.জেএস এর পরিবেশ তৈরি করা (Node.js – Environment Setup) More stats 585
Recursive Function বিষয়ক কিছু কথা : On Recursive Function More stats 580
জাভা ভ্যারিয়েবল এবং কোডিং: Java Variables and Coding More stats 567
এইচটি এম এল ইমেজ (HTML Image) More stats 563
PHOTOSHOP: ডিজাইন মক আপের A-Z : A to Z of Design Mock-up in Photoshop More stats 563
পাইথন প্রোগ্রামিং টিউটোরিয়াল : ইন্সটলেশন (Python – Environment Setup in bangla) More stats 562
Java , OOP, Android Lecture 5(In Bengali)(বাংলা) More stats 556
Lecture – 03: Programming in Matlab (লেকচার – ০৩: ম্যাটল্যাব প্রোগ্রামিং) More stats 554
Digital Devices: Boolean Algebra: ডিজিটাল যন্ত্র ঃ বুলিয়ান অ্যালজেব্রা More stats 552
AngularJS ডিরেক্টিভ (AngularJS Directives in Bangla) More stats 551
একাদশ এবং দ্বাদশ শ্রেণীর তথ্য প্রযুক্তি কোর্স এর উপর লেকচার নোট্‌স এবং লেকচার ভিডিও। (DVD Available) More stats 548
সি এস এস লিস্ট (CSS Lists) More stats 536
ক্লাস রুমে ট্রেইনিং More stats 532
গেম খেলুন More stats 531
রেসিপি: কিভাবে মাওয়া প্রস্তুত করবেন More stats 526
5. How to Create Job Account for Outsourcing, Odesk Bangla Tutorial Lesson 5 More stats 521
শিশুর জ্বর হলে করনীয় More stats 519
ASP.NET টিউটোরিয়াল :[পর্বঃ ৪]:: ASP.NET Web Forms দিয়ে ইভেন্ট হ্যান্ডেল More stats 513
ডেটা কমিউনিকেশন ও কম্পিউটার নেটওয়ার্ক : ডিজিটাল ট্রান্সমিশন : (DCN – Digital Transmission) More stats 512
বুটস্ট্র্যাপ ৩ টিউটোরিয়াল (Bootstrap 3 Tutorial) More stats 508
এইচটিএমএল টেবিল (HTML Table) More stats 508
টাইপোগ্রাফি কি এবং কেন? More stats 503
[In Bengali] Speech and Language Disorders, Stammering Treatment Bangla Health Tips More stats 498
CSS3 Bangla Tutorial (Part-9) (সিএসএস৩ এর বাংলা টিউটোরিয়াল (পার্ট-৯)) More stats 497
স্ক্রাম সফটওয়্যার ব্যবস্থাপনা পদ্ধতি । Scrum Software Management More stats 484
বাংলাদেশ কারিগরি শিক্ষা বোর্ডের অধিনে HSC BM এবং HSC VOC প্রোগ্রামে ভর্তির অনলাইন আবেদন More stats 482
বুটস্ট্র্যাপ ট্যাক্সট / টাইপোগ্রাফি (Bootstrap Text/Typography) More stats 480
Bangladeshi Patis Recipe – Bangla Video for Bangladeshi (বাংলাদেশী পেটিস রেসিপি) More stats 479
এইচটিএমএল শিরোনাম (HTML Headings) More stats 476
এইচটিএমএল এর স্টাইল (HTML Styles) More stats 476
ডেটা কমিউনিকেশন ও কম্পিউটার নেটওয়ার্ক : কম্পিউটার নেটওয়ার্ক টাইপ (DCN – Computer Network Types) More stats 474
Training in English More stats 468
পাইথন প্রোগ্রামিং : বেসিক সিনট্যাক্স (Python Basic Syntax in bangla) More stats 464
ডেটা কমিউনিকেশন ও কম্পিউটার নেটওয়ার্ক : কম্পিউটার নেটওয়ার্ক মডেল (DCN – Computer Network Models) More stats 464
জাভাস্ক্রিপ্ট কোথায় কিভাবে লিখবেন (JavaScript Where To) More stats 449
মোবাইল এপ্লিকেশন তৈরির জন্য আপনার প্রযুক্তি কোনটা হবে? Mobile Development Technologies More stats 448
আমরা এ অধ্যায়ে HTML Attribute সম্পর্কে আলোচনা করব। HTML Attributes More stats 448
Upcoming Courses। ভবিষ্যৎ কোর্স সমূহ । More stats 448
ইংরেজীতে শিক্ষা More stats 446
এইচটিএমএল ফরম উপাদানসমূহ (HTML Form Elements) More stats 443
asp.net bangla tutorial part 39 More stats 441
How to create a passport size photo in Photoshop Bangla voiceBy Nahid (একটি পাসপোর্ট আকারের ফটো কিভাবে তৈরি করবেন) (ফটোশপ টিউটোরিয়াল) More stats 435
CSS3 Bangla Tutorial (Part-1) (সিএসএস৩ এর বাংলা টিউটোরিয়াল (পার্ট-১)) More stats 426
সি এস এস সিলেক্টর (CSS Selectors) More stats 424
এইচটিএমএল(5) স্টাইল গাইড এবং কোডিং কনভেনশন HTML(5) Style Guide and Coding Conventions More stats 422
Is Paralysis due to diabetes? More stats 419
SQL সূচনা: Introduction to SQL More stats 418
Bangladeshi Doi Recipe in Bangla (বাংলাদেশী দই রেসিপি) More stats 416
computer hardware bangla -Component (কম্পিউটার হার্ডওয়্যার – উপাদান) More stats 411
হার্ডওয়্যার ইঞ্জিনিয়ার হওয়ার জন্য কি জানা দরকারঃ Skills for a Computer HW Engineer More stats 409
মোবাইল এপ্লিকেশন ডেভেলপমেন্ট: ডেভেলপমেন্ট পরিবেশ সেট আপ: একটি ফাঁকা অ্যাপ্লিকেশন নির্মাণ। Mobile Application Development: Setting up the Development Environment: Creating an Empty Application More stats 408
সার্চ ইঞ্জিন অপটিমাইজেশন কি? What is SEO? More stats 408
গুগল ম্যাপস এপিআই টিউটোরিয়াল (Google Maps API Tutorial) More stats 404
জাভা – আন্ড্রয়েড প্রোগ্রামিং এর ভাষা। Java and Android Programming. More stats 403
SQL SELECT Statement (এসকিউএল বিবৃতি নির্বাচন): More stats 402
ইলাস্ট্রেটরে তৈরি করুন টাইপোগ্রাফিক লোগো More stats 402
CCNA_Networking_Basics_in_Bangla (নেটওয়ার্কিং মূলতত্ব) More stats 401
নিয়ে নিন একটি পাইওনিয়ার মাষ্টার কার্ড More stats 400
এইচটিএমএল এর সিএসএস (HTML Style – CSS) More stats 400
Freelancing Bangla Video Tutorial (ফ্রিল্যান্সিং) More stats 398
HTML & CSS BANGLA TUTORIAL PART-2(DIV and CLASS SELECTOR) (HTML এবং CSS বাংলা টিউটোরিয়াল পার্ট – 2 (DIV এবং ক্লাস নির্বাচক)) More stats 385
ইমেইল মার্কেটিং More stats 385
এইচটিএমএল লেআউট (HTML Layout) More stats 384
ডট নেট এর প্রধান টেকনোলজি সমূহ । .NET basic technologies overview More stats 383
পিএইচপি ৫ গ্লোবাল ভেরিয়েবলস (PHP 5 Global Variables – Superglobals) More stats 383
HTML to WordPress Bangla Tutorial (Part-1) (এইচটিএমএল থেকে ওয়ার্ডপ্রেস বাংলা টিউটোরিয়াল (পর্ব -১)) More stats 381
#9546 (loading title) More stats 376
জাভাস্ক্রিপ্ট ফাংশন (JavaScript Functions) More stats 376
04 CCNA IN BENGALI VLAN Concept -1 ( (ভিল্যান ধারনা -১) More stats 375
Computer hardware bangla tutorial -20 (কম্পিউটার হার্ডওয়্যার বাংলা টিউটোরিয়াল) More stats 375
পিএইচপি ৫ ভূমিকা (PHP 5 Introduction) More stats 372
Introduction to Computer Networks: কম্পিউটার নেটওয়ার্ক এর উপর প্রাথমিক ধারণা (Bangla/Bengali) More stats 372
Affiliate Marketing Bangla Tutorial Part-2 (বাংলায় অ্যাফিলিয়েট মার্কেটিং) More stats 369
Career More stats 365
ঢাকা বিশ্ববিদ্যালয় থেকে স্নাতকোত্তর করতে চাইলে…If you want to study Hons in the Dhaka University More stats 364
PHP এর ব্যাসিক ধারনা । Basic Concepts on PHP Programming Language More stats 360
9 Bid in Data entry: ডাটা এন্ট্রি এ বিড করার নিয়ম More stats 359
Lecture – 01: installing IDE & creating java project (java tutorial in bangla) (লেকচার – ০১: আইডিই ইনস্টল ও জাভা প্রজেক্ট তৈরি (বাংলা জাভা টিউটোরিয়াল)) More stats 356
এইচটিএমএল লিঙ্ক (HTML Link) More stats 355
পি এইচ পি ৫ সিন্ট্যাক্স (PHP 5 Syntax) More stats 353
Garam Cha Recipe for Bangladeshi in Bangla (গরম চা রিসিপি) More stats 352
সিএসএস ব্যাকগ্রাউন্ড (CSS Background) More stats 351
সিএসএস কিভাবে… (CSS How To…) More stats 349
Lecture – 15: concept of array (java tutorial in bangla) (লেকচার – ১৫: অ্যারের ধারণা (জাভা বাংলা টিউটোরিয়াল)) More stats 349
এইচটিএমএল কম্পিউটার কোডের উপাদান (HTML Computer Code Elements) More stats 347
SEO Bangla Tutorial (Part-1) এসইও বাংলা টিউটোরিয়াল (পর্ব ১) More stats 347
25. important info about outsourcing, Outsourcing Bangla Tutorial Lesson 25, Freelancing Bangla More stats 346
Bangladeshi Chinese Restaurant Favorite Soup Recipe in Bangla (বাংলাদেশী চাইনিজ রেষ্টুরেন্ট প্রিয় স্যুপ রেসিপি) More stats 344
Job Dashboard More stats 344
ASP.NET টিউটোরিয়াল :[পর্বঃ ৫]:: ASP.NET Web Forms দিয়ে এইচটিএমএল ফর্ম ট্যাগের ব্যবহার More stats 343
Mojar Bangladeshi Recipe – Bangla Video (সন্দেশ রেসিপি) More stats 342
ফটোশপে বাংলা লিখুন অভ্র দিয়ে More stats 341
Java , OOP, Android Lecture 14 (Android Game Development-4(Last)) (In Bengali)(বাংলা) More stats 339
PSD to HTML Bangla Tutorial (Part-1) (পিএসডি থেকে এইচটিএমএল বাংলা টিউটোরিয়াল (পর্ব -১)) More stats 338
ধারাবাহিক BCS প্রস্ততি ও সাধারণ আলোচনা – ১৩ (বইপত্র ) । BCS Written Exam Guide – 13 (General Knowledge: Books) More stats 334
এইচটিএমএল প্রতিক্রিয়াশীল ওয়েব ডিজাইন (HTML Responsive Web Design) More stats 334
HTML & CSS bangla tutorial #12 (Table) (HTML এবং CSS বাংলা টিউটোরিয়াল – টেবিল) More stats 334
পাইথন গ্রাফিক্যাল ইউজার ইন্টারফেস প্রোগ্রামিং (Tkinter) (Python GUI Programming (Tkinter)) More stats 334
ফ্রি অনলাইন ভিত্তিক সফটওয়্যার এবং ওয়েব ডেভেলপমেন্ট প্রশিক্ষন More stats 333
photoshop bangla tutorial-03 Clean photo (ফটোশপ বাংলা টিউটোরিয়াল -০৩ ক্লিন ফটো) More stats 333
এইচটিএমএল এর কোটেশন (HTML Quotation and Citation Elements) More stats 331
লেকচার-০৭: সিএসই-১০০: সি প্রোগ্রামিং পরিচিতি – সি এ লুপ (For loop in C) More stats 331
জাবাস্ক্রিপ্ট আউটপুট (JavaScript Output) More stats 331
ইউনিক্সঃ সেল কি? (Unix – What is Shells?) More stats 329
ডেটা কমিউনিকেশন ও কম্পিউটার নেটওয়ার্ক : কম্পিউটার নেটওয়ার্ক সিকিউরিটি (DCN – Computer Network Security) More stats 328
আয় করুণ ইন্টারনেটে: Internet Income More stats 327
Breast lifting and Breast up tips women More stats 327
visual basic bangla tutorial 2 More stats 327
এইচটিএমএল ব্লক (HTML Block and Inline Elements) More stats 327
পিএইচপি ৫ ভেরিয়েবল (PHP 5 Variables) More stats 323
উইন্ডোজ 10 পর্যালোচনা (Windows 10 review) More stats 323
Generations of Programing Languages: Program Design: প্রোগ্রামিং ভাষার বিবর্তন, প্রোগ্রাম ডিজাইন More stats 322
R প্রোগ্রাম পরিচিতি: R Programming More stats 322
SQL (এসকিউএল) Syntax : SQL Syntax More stats 321
Lecture – 02: first java program (java tutorial in bangla) (লেকচার – ০২: প্রথম জাভা প্রোগ্রাম (বাংলা জাভা টিউটোরিয়াল)) More stats 316
jQuery ভূমিকা (jQuery Introduction) More stats 315
মিষ্টি বানাবেন কিভাবে More stats 315
পিএইচপি ৫ সেশন্স (PHP 5 Sessions) More stats 314
এইচটিএমএল এর অণুচ্ছেদ (HTML Paragraphs) More stats 313
বুটস্ট্র্যাপ টেবিল (Bootstrap Tables) More stats 311
CSS পরিচিতি : CSS Overview More stats 309
বুটস্ট্র্যাপ ইমেজেস (Bootstrap Images) More stats 308
Web site backup from c-panel: Bangla cpanel tutorial (সি-প্যানেল থেকে ওয়েব সাইট ব্যাকআপ: বাংলা সি-প্যানেল টিউটোরিয়াল) More stats 306
জাভাস্ক্রিপ্ট অবজেক্ট (JavaScript Objects) More stats 304
ভিজিটর কিনুন More stats 304
সিএসএস পজিশনিং (CSS Positioning) More stats 300
পিএইচপি ৫ ফর্ম হ্যান্ডলিং (PHP 5 Form Handling) More stats 298
How to Make Piaju – Bangla Video for Bangladeshi (পাঞ্জু কিভাবে বানাবেন) More stats 297
বিসিএস মৌখিক পরীক্ষা প্রস্ততিঃ ০১ । Part-1: Preparation Guide for BCS (Govt. Job) Interview in Bangladesh More stats 297
24. Sub Contract Job with us, Outsourcing Bangla Tutorial Lesson 24, Freelancing Bangla Tutorial More stats 297
BCS মৌখিক পরীক্ষা প্রস্ততি (২) : Part -2: BCS (Govt. Job) Exam Interview Preparation More stats 295
Lecture – 02: Ajax Bangla Tutorial (লেকচার – ০২: এজ্যাক্স বাংলা টিউটোরিয়াল) More stats 294
AngularJS Filters More stats 293
আজ আমরা মাইক্রোসফট ওয়ার্ড ২০০৭ এ কিভাবে পেজ নাম্বার দিতে হয় তা শিখবো। How to insert page numbers in MS-Word 2007 More stats 292
Data Science Bangla Tutorial for beginners More stats 291
জেনে নিন প্রয়োজনীয় কিছু বিশেষ এইচটিএমএল কোড More stats 291
প্রোজেক্ট ম্যানেজমেন্টঃ সংক্ষিপ্ত পরিচিতি More stats 287
Bangla:Introduction to Number Systems used by Computers (কম্পিউটার এর নাম্বার সিস্টেম এর উপর প্রাথমিক ধারণা) More stats 286
এইচটিএমএল কুইজ । HTML Quiz More stats 286
Excel 2013 Tips,Tricks and Shortcuts (Bengali) – 51. Advanced Data validation in Excel (এক্সেল ২০১৩ টিপস, ট্রিকস এবং শর্টকাট (বাংলা) – ৫১: এক্সেল এ অ্যাডভান্সড ডেটা যাচাই) More stats 284
ASP.NET টিউটোরিয়াল :[পর্বঃ ৬]:: ASP.NET Web Forms দিয়ে একসাথে ফর্মের অনেক কোডের নিয়ন্ত্রণ More stats 282
ডেটা কমিউনিকেশন ও কম্পিউটার নেটওয়ার্ক : মাল্টিপ্লেক্সিং (DCN – Multiplexing) More stats 282
বুটস্ট্র্যাপ গ্রিড সিস্টেম (Bootstrap Grid System) More stats 282
SEO বা সার্চ ইঞ্জিন অপ্টিমাইজেশান এর সহজ কৌশল More stats 279
অ্যাঙ্গুলার জেএস (AngularJS) টেবিল (Tables) More stats 279
কানাডিয়ান প্রকল্প সুযোগ। জয় করতে চেষ্টা করুন More stats 277
এজাইলঃ পুনরাবৃত্তিক ধাপের পরিকল্পনা (Iteration Planning) More stats 275
আমরা Program বাদে web-site তৈরি করব কিভাবে? How to create web-sites without programming More stats 274
Lecture – 12: do-while loop (java tutorial in bangla) (লেকচার – ১২: ডু-হুয়াইল লুপ (বাংলা জাভা টিউটোরিয়াল)) More stats 272
oDesk Bangla Tutorial (Part-6) (ওডেস্ক বাংলা টিউটোরিয়াল (পর্ব ৬)) More stats 270
Chinese Recipe for Bangladeshi: Bangla Youtube video: (চিংড়ি মন্থন) More stats 269
সি এস এস বক্স মডেল (CSS Box Model) More stats 269
ডোমেইন/হোস্টিং কিনুন More stats 269
সফটওয়ার প্রকৌশলঃ সফটওয়ার বিশ্লেষণ ও ডিজাইন টুলস (Software Analysis & Design Tools) More stats 268
পিএইচপি ৫ ডাটা টাইপ (PHP 5 Data Types) More stats 268
জাভাস্ক্রিপ্ট ডেটা টাইপ (JavaScript Data Types) More stats 268
Using Blade Template Engine with Laravel Framework More stats 267
Odesk e কাজ শুরু করার আগের কিছু কথা More stats 266
সিএসএস ৩ রেস্পনসিভ ওয়েব ডিজাইন (CSS Responsive Web Design) More stats 266
বুটস্ট্র্যাপ গ্রিড – স্ট্যাকড-টু-হরাইজন্টাল (Bootstrap Grid – Stacked-to-horizontal) More stats 266
Memory Device in PLC Master-k (পিএলসি মাস্টার-কে মেমরি ডিভাইস) More stats 263
ডেটা কমিউনিকেশন ও কম্পিউটার নেটওয়ার্ক : কম্পিউটার নেটওয়ার্ক টোপোলজি (DCN – Computer Network Toplogies) More stats 261
জাভাস্ক্রিপ্ট সিনট্যাক্স (JavaScript Syntax) More stats 261
এস এ পি (SAP) ওয়ার্কারদের বেতন, প্রণোদনা, লিঙ্গ ও ভিসা সংক্রান্ত তথ্যঃ Here’s the data on pay, perks, gender and visas of SAP workers More stats 261
এইচটিএমএল কমেন্ট (HTML Comment) More stats 259
সার্চ ইঞ্জিন অপ্টিমাইজেশান (এসইও) এবং গুগল ওয়েবমাস্টার সরঞ্জাম দিয়ে ফলাফল পাওয়ার পদ্ধতি (Getting results with Search Engine Optimization (SEO) and Google Webmaster Tools) More stats 259
এইচটিএমএল ও এক্সএইচটিএমএল (HTML and XHTML) More stats 258
WordPress Bangla Tutorial (Part-15) (ওয়ার্ডপ্রেস বাংলা টিউটোরিয়াল (পর্ব ১৫)) More stats 258
পিএইচপি অপারেটর (PHP Operators) More stats 258
3d studio max matarial-2 (থ্রীডি স্টুডিও ম্যাক্স উপাদান-২) More stats 256
Twitter Bootstrap Bangla Tutorial (Part-2) (টুইটার বুটস্ট্র্যাপ বাংলা টিউটোরিয়াল (পর্ব -২)) More stats 255
Illustrator Bangla Tutorial (Part-1) (ইলাসট্রেটর বাংলা টিউটোরিয়াল (পার্ট-১)) More stats 252
PHP, PHP Frameworks, and Database (MySQL, MS SQL Server, Oracle, DB2) Operations: পিএইচপি তে ডাটাবেজ অপারেশন্স এর সুবিধা এবং উপায় More stats 251
সিএসএস৩ বর্ডার ইমেজ (CSS3 Border Images in Bangla) More stats 250
PHP Bangla Tutorial (Part-2) (পিএইচপি বাংলা টিউটোরিয়াল (পর্ব -২)) More stats 250
06 CCNA IN BENGALI VTP CONCEPT (বাংলা ভিটিপি ধারণা) More stats 248
Acne Treatment by Laser Treat (Health tips Bangla) More stats 248
ইউনিক্স, লিনাক্স কমান্ড তালিকা (List of Unix, Linux Commands) More stats 246
জাভা Interface এবং Implement তৈরি করা: More stats 245
পি এইচ পি ৫ ইন্সটলেশন (PHP 5 Installation) More stats 244
এএসপি ডট নেট এমভিসি-স্টাইলস অ্যান্ড লেআউট (ASP.NET MVC – Styles and Layout) More stats 244
AutoCAD 2013 Advanced Training (Bangla) – 41. Use multi viewport to visualize drawing in AutoCAD (অটোক্যাডে ২০১৩ অগ্রণী প্রশিক্ষণ (বাংলা) – ৪১. অটোক্যাডে অঙ্কন মনশ্চক্ষুতে মাল্টি ভিউপোর্ট এর ব্যবহার) More stats 244
লেকচার 01: রুপরেখা: কোর্স: কেমিক্যাল ইঞ্জিনিয়ারিং পরিচিতি (Introduction to Chemical Engineering) More stats 242
সফটওয়ার রিকোয়ারমেন্ট . Software Requirements More stats 242
এইচটিএমএল কি? HTML Document Example More stats 241
ASP.NET টিউটোরিয়াল :[পর্বঃ ১৫]:: ASP.NET Web Forms দিয়ে ডাটা লিস্ট কনট্রোল More stats 241
পিএইচপি ৫ ফর্ম ভেলিডেশন (PHP 5 Form Validation) More stats 241
এইচটিএমএল ফরম (HTML Forms) More stats 241
How to be a Database Professional: ডাটাবেজ ভিত্তিক দক্ষ ইঞ্জিনিয়ার হওয়ার জন্য কি কি দক্ষতা থাকা দরকার More stats 239
পাইথন প্রোগ্রামিং : ভেরিয়েবল টাইপ (Python Variable Types in bangla) More stats 239
01ccna in bengali basic router configuration (মৌলিক রাউটারের কনফিগারেশন) More stats 239
পি এইচ পি ৫ ইকো এবং প্রিন্ট স্ট্যাটমেন্ট (PHP 5 echo and print Statements) More stats 239
এইচটিএমএল ইনপুট বৈশিষ্ট্যাবলী (HTML Input Attributes) More stats 237
বুটস্ট্র্যাপ জাম্বট্রন এবং পেজ হেডার (Bootstrap Jumbotron and Page Header) More stats 236
অ্যাংগুলার-জেএস অ্যাপ্লিকেশন . AngularJS Application More stats 233
Java , OOP, Android Lecture 11 (Android Game Development-1) (In Bengali)(বাংলা) More stats 232
মাইক্রোসফট ওয়ার্ড: আজ আমরা শিখবো কিভাবে ওয়াটারমার্ক (Watermark) ব্যবহার করতে হয়। More stats 232
CSS এর ব্যাসিক ধারনা । Introduction to CSS More stats 231
What is Big Data? – হতে পারে নতুন সম্ভাবনার দুয়ার Explained In Bangla More stats 231
নোড . জে এস । Node.js – ইউটিলিটি মডিউল (Utility Modules) More stats 231
সি এস এস টেবিল (CSS Tables) More stats 230
Java , OOP, Android Lecture-1(In Bengali)(বাংলা)(introduction) More stats 228
Membership Signup More stats 227
Overview of Angular.js More stats 225
এইচটিএমএল প্রতিক (HTML Symbols) More stats 223
২০১৫ সালে যে পাঁচটি এসএইও ট্রেন্ডকে বিবেচনায় রাখা উচিত . 5 SEO Trends You Need to Consider for 2015 More stats 222
Lecture – 06: user input & calculator (java tutorial in bangla) (লেকচার – ০৬: ব্যবহারকারীর ইনপুট এবং ক্যালকুলেটর (বাংলা জাভা টিউটোরিয়াল)) More stats 222
ASP.NET টিউটোরিয়াল :[পর্বঃ ৮]:: ASP.NET Web Forms দিয়ে পুশ বাটন বানানো More stats 221
PHP, MySQL, Java মূলত এক ধরনের প্রোগ্রামিং ভাষা/Tool More stats 221
মাইএসকিউএল এ পিএইচপি সংযোগ (PHP Connect to MySQL) More stats 221
জাভাস্ক্রিপ্ট অবজেক্ট নটেশন ভূমিকা (JSON – Introduction) More stats 221
কি লগার কি? কি লগার হচ্ছে সবচেয়ে নিম্নস্তরের হ্যাকিং More stats 220
Best Tips for Dental care More stats 220
অ্যাপ এম এল এর ইতিহাস (AppML History) More stats 220
সি এস এস ট্যাক্সট (CSS Text) More stats 219
ASP.NET টিউটোরিয়াল :[পর্বঃ ৯]:: ASP.NET Web Forms দিয়ে ডাটা বাইন্ডিং করা More stats 218
AutoCAD 2013 Advanced Training Bangla 24 Dimensioning angle more than 180 degree in AutoCad (AutoCad মধ্যে অটোক্যাড ২০১৩ বাংলা অগ্রণী প্রশিক্ষণ ১৮০ ডিগ্রীর অধিক 24 Dimensioning কোণ) More stats 218
সফটওয়ার ডিজাইনের বেসিক More stats 217
এএসপি ডট নেট এমভিসি ASP.NET MVC কন্ট্রোলার More stats 217
কৌণিক বা Angular জাভা স্ক্রিপ্ট SQL More stats 216
HTML & CSS BANGLA TUTORIAL (PART -1) (INTRODUCTION) (HTML এবং CSS বাংলা টিউটোরিয়াল (পর্ব -1) (সূচনা)) More stats 216
এইচটিএমএল রঙ (HTML Color codes chart) More stats 216
পিএইচপি মাইএসকিউএল ডাটাবেজ (PHP MySQL Database) More stats 215
মংগোডিবি – কুয়েরি ডোকুমেন্ট (MongoDB – Query Document) More stats 214
ASP.NET টিউটোরিয়াল :[পর্বঃ ৭]:: ASP.NET Web Forms দিয়ে TextBox বানানো More stats 213
SQL (এসকিউএল) CREATE TABLE স্টেটমেন্ট . More stats 213
HTML5 এর শব্দার্থিক উপাদানসমূহ (HTML5 Semantic Elements) More stats 212
পিএইচপি ৫ কন্সট্যান্ট (PHP 5 Constants) More stats 212
Computer Hardware bangla-33 (কম্পিউটার হার্ডওয়্যার) More stats 212
জাভাস্ক্রিপ্ট কোড ডিবাগ (Debug JavaScript Code) More stats 211
সি প্রোগ্রামিং এ মেমোরি ব্যবস্থাপনাঃ Memory Management in C Programming More stats 210
C – Operators . সি অপারেটর গুলো More stats 210
সিএসএস লেআউট – width এবং max-width (বাংলায়) (CSS Layout – width and max-width in Bangla) More stats 209
Lecture – 04: mathematical operators (java tutorial in bangla) (লেকচার – ০৪: গাণিতিক অপারেটর (বাংলা জাভা টিউটোরিয়াল)) More stats 209
Lecture-04: Introduction of PLC, Wiring Diagram, Basic ladder diagram. (লেকচার-০৪: পিএলসি, তারের নকশা, বেসিক মই ডায়াগ্রাম এর পরিচিতি) More stats 208
ডেটা কমিউনিকেশন ও কম্পিউটার নেটওয়ার্ক : এনালগ ট্রান্সমিশন : (DCN – Analog Transmission) More stats 208
Lecture – 14: averaging calculator using for loop (java tutorial in bangla) (লেকচার – ১৪: লুপের জন্য গণককে সাজানো (জাভা বাংলা টিউটোরিয়াল)) More stats 208
এজাইলের বৈশিষ্ট্য (Features of Agile) More stats 207
গুগল ম্যাপ কন্ট্রোল (Google Maps Controls) More stats 205
কম্পিউটারের যত্ন More stats 205
লেকচার-০৪: সিএসই-১০০: সি প্রোগ্রামিং পরিচিতি – ইনপুট, অ্যারে, বুলিয়ান এক্সপ্রেশন; আপনার প্রথম প্রোগ্রাম (Input, Array, Boolean Expression; your first program) More stats 204
এইচটিএমএল ক্লাসেস (HTML Classes) More stats 204
সি এস এস লিঙ্ক (CSS Links) More stats 203
Illustrator Bangla Tutorial (Part-23) (ইলাসট্রেটর বাংলা টিউটোরিয়াল (পার্ট-২৩)) More stats 203
এজাইল – পণ্য ব্যাকলগ (Agile Product Backlog) More stats 203
সি স্টোরেজ ক্লাস (C – Storage Classes) More stats 202
মোবাইলে পড়ুন PDF ফাইল: How to read PDF files in Mobile Devices. More stats 202
পিএইচপি ৫ if…else…elseif স্ট্যাটমেন্ট (PHP 5 if…else…elseif Statements) More stats 202
Excel 2013 Tips,Tricks and Shortcuts (Bengali) – 56. Conclusion (এক্সেল ২০১৩ টিপস, ট্রিকস এবং শর্টকাট (বাংলা)- 56: উপসংহার) More stats 202
SEO বা Search Engine Optimization। SEO সম্পর্কে বিস্তারিত আলোচনা More stats 201
Restaurant Recipe for Bangladeshi (বাংলাদেশীদের জন্য রেস্তোরাঁ রেসিপি) More stats 201
পিএইচপি : একটি মাইএসকিউএল ডাটাবেজ তৈরি করা (PHP Create a MySQL Database) More stats 200
পিসিকে ব্যবহার করুন সাউন্ড সিস্টেম হিসেবে More stats 200
বুটস্ট্র্যাপ বাটন (Bootstrap Buttons) More stats 199
HTML Iframe (এইচটিএমএল আইফ্রেম) More stats 199
S.S.C. Bangla 2nd paper কারক Part 2 CTV Digital Content (Cambrian School and College) More stats 199
ল্যাপটপ ব্যবহারকারীদের জন্য কিছু পরামর্শ : How to take care of your laptops.. More stats 197
C হেডার ফাইল More stats 197
সফটওয়ার ডিজাইন পরিকল্পনা More stats 197
computer hardware bangla -xp (কম্পিউটার হার্ডওয়্যার – এক্সপি) More stats 197
সিএসএস লেআউট – ইনলাইন-ব্লক (বাংলায়) (CSS Layout – inline-block in bangla) More stats 197
Some Questions and Answers on Razor View Engine More stats 196
বুটস্ট্র্যাপ ফর্মস (Bootstrap Forms) More stats 196
সিএসএস ছদ্ম-এলিমেন্ট বাংলায় (CSS Pseudo-elements in Bangla) More stats 195
প্রজেক্ট ম্যানেজারের পেশাগত দায়িত্ব More stats 195
এইচটিএমএল স্ক্রিপ্ট (HTML Scripts) More stats 193
সফটওয়্যার প্রজেক্ট ম্যানেজমেন্ট (Software Project Management) More stats 191
ডেটা কমিউনিকেশন ও কম্পিউটার নেটওয়ার্ক : নেটওয়ার্ক রাউটিং (DCN – Network Layer Routing) More stats 189
সিএসএস ফ্লোট (CSS Float) More stats 189
Lecture – 05: Voltage Divider, Current Divider, Ameter, and Voltmeter (লেকচার – ০৫: ভোল্টেজ ডিভাইডার, কারেন্ট ডিভাইডার, অ্যামিটার, এবং ভোল্টমিটার) More stats 188
Bootstrap Case: নেভিগেশান বার যোগ করা (Adding a Navigation Bar) More stats 188
পিএইচপি ৫ বহুমাত্রিক অ্যারে (PHP 5 Multidimensional Arrays) More stats 188
IP এড্রেস হ্যাকিং More stats 187
মানসিক চাপ নিয়ন্ত্রণ ও ব্যবস্থাপনাঃ Stress Management for Professionals More stats 187
HTML & CSS BANGLA TUTORIAL (PART-11)(SIMPLE LOGIN BOX) [HTML এবং CSS বাংলা টিউটোরিয়াল (পর্ব 11) (সিম্পল লগিন বক্স)] More stats 187
বুটস্ট্র্যাপ গ্লাইফাইকন এবং ব্যাজ বা লেবেল (Bootstrap Glyphicons and Badges/Level) More stats 186
এসইও কৌশল ও কার্যপদ্ধতি । SEO – Tactics & Methods More stats 186
তেহরি রেসিপি More stats 185
Computer hardware bangla tutorial -23 (কম্পিউটার হার্ডওয়্যার বাংলা টিউটোরিয়াল) More stats 185
লেকচার-০১: সিএসই-১০০: সি প্রোগ্রামিং পরিচিতি – কম্পিউটার প্রোগ্রামিং এবং ডেটার প্রকারভেদ, (Computer Programming and Data Types) More stats 183
সি –রিকারসিং (C – Recursion) More stats 183
Output Merge63 More stats 183
পিএইচপি ৫ অ্যারে (PHP 5 Arrays) More stats 183
সিএসএস ন্যাভিগেশন বার (CSS Navigation Bar) More stats 183
চিফ মার্কেটিং কর্মকর্তা হিসেবে যে আটটি এসইও ট্রেন্ড সম্পর্কে আপনাকে জানতেই হবে . 8 SEO Trends Your CMO Needs to Know for 2015 More stats 182
WordPress Bangla Tutorial (Part-14) (ওয়ার্ডপ্রেস বাংলা টিউটোরিয়াল (পর্ব ১৪)) More stats 182
পিএইচপি ৫ ফরম – ই-মেইল এবং URL সন্নিবেশ করা (PHP 5 Forms – Validate E-mail and URL) More stats 182
Lecture – 13: for loop (java tutorial in bangla) (লেকচার – ১৩: লুপ (বাংলা জাভা টিউটোরিয়াল)) More stats 181
26 Lesson 24 to 64, Outsourcing Bangla Tutorial Lesson 26, Freelancing Bangla Tutorial More stats 181
বুটস্ট্র্যাপ প্রগ্রেস বার (Bootstrap Progress Bars) More stats 181
সিএসএস ডিসপ্লে এন্ড ভিজিবিলিটি (CSS Display and Visibility) More stats 181
গ্রাফিক্স টেমপ্লেট বিক্রির আদ্যোপ্রান্ত : How to sell Graphics Templates More stats 181
জাভাস্ক্রিপ্ট স্কোপ (JavaScript Scope) More stats 181
বুটস্ট্র্যাপ ফরম ইনপুট (Bootstrap Form Inputs) More stats 180
ফিল্যান্সিং হচ্ছে ঘরে বসে ইন্টারনেটি কোন টাকা বিনিয়োগ না করে কোন দেশী বা বিদেশী ব্যক্তি বা কোম্পানীকে স্বাধীনভাবে কাজ করে দেয়াকে বুঝায় More stats 179
জাভাস্ক্রিপ্ট ভেরিয়েবল (JavaScript Variables) More stats 178
Lecture – 03: Capacitors and Inductors (লেকচার – ০৩: ক্যাপাসিটারগুলিকে এবং ইন্ডাক্টর) More stats 178
Hajj Training Programme Part 1 (হজ্ব প্রশিক্ষণ কর্মসূচি পার্ট ১) More stats 178
জাভাস্ক্রিপ্ট অবজেক্ট নটেশন কর্মপ্রণালীঃ JSON How To More stats 178
পিএইচপি ৫ স্ট্রিংস (PHP 5 Strings) More stats 178
জাভা Object এর পরিচয় ও বর্ণনা: More stats 177
HTML5 এ রূপান্তর (HTML5 Migration) More stats 177
জাভাস্ক্রিপ্ট স্ট্রিক্ট (JavaScript Use Strict) More stats 176
ডাইরিয়াঃ Diarrheal Disease and Treatment Bangla Health Tips More stats 176
পাইথন প্রোগ্রামিং : স্ট্রিং (Python Strings in Bangla) More stats 176
পিএইচপি ৫ ফাইল আপ্লোড (PHP 5 File Upload) More stats 176
বুটস্ট্রাপ ক্যারোজেল প্লাগিন (Bootstrap Carousel Plugin) More stats 175
পিএইচপি ৫ ফাংশন (PHP 5 Functions) More stats 175
SQL Select Distinct Statement . SQL SELECT DISTINCT Statement More stats 174
SQL (এসকিউএল) FOREIGN KEY কনস্ট্রেইন্টস্. SQL Foreign Key Constraint More stats 174
Java Thread এর ব্যাবহার এবং তার প্রয়োগ:Java Thread এর ব্যাবহার এবং তার প্রয়োগ: More stats 174
সি এস এস মার্জিন (CSS Margin) More stats 174
6. How to create Basic Profile, Odesk Bangla Tutorial Lesson 6, Freelancing Bangla More stats 173
17 CCNA VIDEO IN BENGALI route summarization (রুট সামারাইযেশন) More stats 173
পিএইচপি ৫ ফর্ম রিকোয়ার্ড ফিল্ডস (PHP 5 Forms – Required Fields) More stats 173
02 CCNA IN BENGALI static routing (স্ট্যাটিক রাউটিং) More stats 173
সি এস এস ফন্ট (CSS Font) More stats 171
এস.ই.ও এর পূর্ণ রুপ হচ্ছে সার্চ ইঞ্জিন অপটিমাইজেশন : SEO More stats 171
গাণিতিক জাভাস্ক্রিপ্ট (JavaScript Arithmetic) More stats 171
Lecture – 01: How to use Dreamweaver 8 (লেকচার – ১: কিভাবে ড্রিমউইভার ৮ ব্যবহার করবেন) More stats 170
বুটস্ট্র্যাপ ইনপুট সাইজিং (Bootstrap Input Sizing) More stats 170
HTML5 এর নতুন উপাদান (HTML5 New Elements) More stats 170
HTML Head (এইচটিএমএল হেড) More stats 170
AutoCAD 2013 Advanced Training (Bangla) – 02. Mode Setting in AutoCAD (অটোকাড ২০১৩ উন্নত প্রশিক্ষণ (বাংলা) – ০২. অটোকাড এ মোড সেটিং) More stats 169
AngularJS HTML DOM More stats 169
12 CCNA IN BENGALI routing protocol concept (রাউটিং প্রোটোকল ধারণা) More stats 169
ইংরেজীতে ব্লগ More stats 168
অ্যাঙ্গুলার জেএস (AngularJS) এবং টুইটার বুটস্ট্র্যাপ More stats 168
মজার ডাল রেসিপি – বাংলাদেশী ও পশ্চিম বাংলার জন্য বাংলা ভিডিও More stats 167
এজাইল মেনিফেস্টো (Agile – Manifesto) More stats 166
ডেটা কমিউনিকেশন ও কম্পিউটার নেটওয়ার্ক : ইউজার ডায়াগ্রাম প্রটোকল (DCN – User Datagram Protocol) More stats 166
এএসপি.নেট এমভিসি – ইন্টারনেট অ্যাপ্লিকেশন . ASP.NET MVC – Internet Application More stats 166
বিজ্ঞাপন দিন More stats 165
jQuery শুরু করা More stats 164
ASP.NET টিউটোরিয়াল :[পর্বঃ ১১]:: ASP.NET Web Forms এর পোল লিস্টে Hashtable Object এর ব্যবহার More stats 164
এইচটিএমএল ইনপুট ধরন (HTML Input Types) More stats 163
এএসপি.নেট এমভিসি – মডেল . ASP.NET MVC – Models More stats 163
PHP ক্যারিয়ার গঠন More stats 163
Bangladeshi Recipe – Bangla Video (বাংলাদেশী রেসিপি) More stats 162
অ্যাঙ্গুলার জাভাস্ক্রিপ্ট মডিউল (AngularJS Modules in Bangla More stats 162
এএসপি.নেট এমভিসি – এসকিউএল ডাটাবেজ . ASP.NET MVC – SQL Database More stats 162
একটি স্ক্র্যাপ পিসি তৈরি করুন More stats 162
visual basic bangla tutorial 49 More stats 162
ssc us of dighat somikoron 1 More stats 161
এইচটিএমএল কালার সেড (HTML Color Shades ) More stats 161
Lecture – 02: JavaScript Bangla Tutorial (লেকচার – ০২: বাংলা জাভাস্ক্রিপ্ট টিউটোরিয়াল) More stats 161
HTML5 Bangla Tutorial (Part-6) (এইচটিএমএল৫ এর বাংলা টিউটোরিয়াল (পর্ব -৬)) More stats 161
jQuery নির্বাচক (Selectors) More stats 161
নোড.জেএস – প্রথম এপ্লিকেশন (Node.js – First Application) More stats 160
Lecture – 01: Introduction of Industrial automation, Automation basic concept (switch, relay, circuit breaker, magnetic contactor etc) (লেকচার – 01: শিল্পকৌশল অটোমেশন, অটোমেশন মৌলিক ধারণা (সুইচ, রিলে, বর্তনী – ছেদক, চুম্বকীয় কন্টাক্টর ইত্যাদি) পরিচিতি) More stats 159
Freelancing Bangla Video Tutorial: (ফ্রিল্যান্সিং বাংলা ভিডিও টিউটোরিয়াল) More stats 159
আইটি ও আইসিটি এর উপর প্রাথমিক ধারণা। Information and Communications Technology: Introductory Concepts. (IT and ICT er upor prathomic darona) More stats 159
সি এস এস ডায়মেনশন (CSS Dimension) More stats 159
Flower Design with Tomota Bangla Video for Bangladeshi (টমাটোর সঙ্গে ফুল ডিজাইন) More stats 159
asp.net bangla tutorial part 1 More stats 159
লেকচার ০১: কেমিক্যাল ইঞ্জিনিয়ারিং পরিচিতি – কেমিক্যাল ইঞ্জিনিয়ারিং কি? (What is Chemical Engineering?) More stats 158
Program Design and Flow Charts: প্রবাহ চিত্র ব্যবহার করে প্রোগ্রাম ডিজাইন More stats 158
অ্যাজাক্স পরিচিতি (AJAX Introduction) More stats 158
ASP.NET টিউটোরিয়াল :[পর্বঃ ১২]:: ASP.NET Web Forms এর পোল লিস্টে SortedList Object এর ব্যবহার More stats 158
বুটস্ট্র্যাপ ইনপুট ফরম (আরো জানুন) Bootstrap Form Inputs (more) More stats 158
Lecture – 04: Neuro Transmitter (লেকচার – ০৪: নিউরো ট্রান্সমিটার) More stats 157
HTML5 Bangla Tutorial (Part-5) (এইচটিএমএল৫ এর বাংলা টিউটোরিয়াল (পর্ব -৫)) More stats 157
HTML এর প্রথমিক কিছু বিষয় More stats 157
অ্যাঙ্গুলার জেএস (AngularJS) ফরম (Forms) More stats 156
ডেটা কমিউনিকেশন ও কম্পিউটার নেটওয়ার্ক : নেটওয়ার্ক লেয়ার প্রটোকল (DCN – Network Layer Protocols) More stats 156
AutoCAD 2013 Advanced Training (Bangla) – 56. Incorporating drawings into PowerPoint presentation (অটোক্যাড ২০১৩ অগ্রণী প্রশিক্ষণ (বাংলা) – ৫৬. পাওয়ার পয়েন্ট প্রেজেনট্রেশন এর মধ্যে অঙ্কন) More stats 156
পিএইচপি প্রিপেয়ার্ড স্ট্যাটমেন্ট (PHP Prepared Statements in Bangla) More stats 155
জাভাস্ক্রিপ্ট অবজেক্ট নটেশন সিনট্যাক্স (JSON Syntax) More stats 155
ডাল পুরী বানাতে হয় কীভাবে More stats 155

Sayed Ahmed

Linkedin: https://ca.linkedin.com/in/sayedjustetc

Blog: http://Bangla.SaLearningSchool.com, http://SitesTree.com
Online and Offline Training: http://Training.SitesTree.com

Affiliate Links:
Hottest Deals on Amazon USA: http://tiny.cc/38lddz

Hottest Deals on Amazon CA: http://tiny.cc/bgnddz

Hottest Deals on Amazon Europe: http://tiny.cc/w4nddz