Cybertech ICT Center

  • Home
  • Cybertech ICT Center

Cybertech ICT Center Welcome to Cybertech ICT Center

C programming for beginners
03/06/2024

C programming for beginners

10/05/2024
Welcome to Cybertech ICT CenterWe provide high-quality ICT training to students of all levels, from beginners to profess...
11/01/2024

Welcome to Cybertech ICT Center

We provide high-quality ICT training to students of all levels, from beginners to professionals.

Our SSC and HSC ICT courses are designed to help students master the essential skills they need to succeed in their exams. Our courses cover a wide range of topics, including:

1 =>Computer Fundamentals
2 => C Programming with practical class
3 => HTML 5 (with practical class)
4 => Database Management System

5 => Networking
6 => Python programming (class 8 and ssc)
7=> Microsoft Office (class 8 and and ssc)

Our experienced and qualified instructors will provide you with the knowledge and skills you need to succeed in your ICT studies. We offer small class sizes and personalized attention to ensure that each student gets the most out of their education.

If you're looking for a high-quality ICT education, Cybertech ICT Center is the perfect choice for you.

Information about your instructors and their qualifications:
1 => Nadim Sir ( Student of computer science and technology )
2 => Hamid sir ( Student of computer science and technology)

Cybertech ICT Center: The Best Place to Learn ICT

Cybertech ICT Center is the premier destination for ICT education in Bangladesh. Our SSC and HSC ICT courses are designed to help students master the essential skills they need to succeed in their exams.

What makes Cybertech ICT Center different?

Our experienced and qualified instructors: Our instructors are experts in their field and have a passion for teaching. They are committed to helping students succeed and will provide you with the knowledge and skills you need to succeed in your ICT studies.

Our small class sizes: We offer small class sizes so that you can get personalized attention from your instructor. This ensures that you understand the material and can ask questions as needed.

Contact us : 0 1865-264527,
01843-964511
We would be happy to answer any questions you have and help you get started on your ICT education journey.
Address :

12/08/2023

JavaScript comments are used to explain the code to make it more readable. It can be used to prevent the ex*****on of a section of code if necessary. JavaScript comments are ignored while the compiler executes the code.

Single Line Comments
In Javascript, single-line comments start with //. Any code written after // will be ignored by Javascript.

Example 1: This example illustrates the single-line comment using //.

// A single line comment
console.log("Hello, Code with Abdul Hamid !");

Output
Hello, Code with Abdul Hamid !

Example 2: In this example, we will assign values to some variables and explain them with single-line comments.

// Declaring a variable and assign value to it
let abdul = 'Computer science portal';
console.log(abdul)
// Perform operation of addition of two numbers
let sum = 5 + 8
console.log(sum)

Output
Computer science portal
13

Multi-line Comments
In Javascript, multi-line comments start with /* and end with */. Any text or code written between /* and */ will be ignored by JavaScript at the time of ex*****on.

Example: This example illustrates the multi-line comment using /* ... */

/* It is multi line comment.
It will not be displayed upon
ex*****on of this code */
console.log("Multiline comment in javascript");

Output
Multiline comment in javascript
JavaScript Comments to Prevent Ex*****on
We can use // or /*...*/ to change the JavaScript code ex*****on using comments. JavaScript Comments are used to prevent code ex*****on and are considered suitable for testing the code.

Example 1: JavaScript comments are used to prevent ex*****on of selected code to locate problems of code or while testing new features. This example illustrates that commented code will never execute.

function add() {
let x = 10;
let y = 20;
let z = x + y;
// console.log(x + y);
console.log(z);
}
add();
Output: The sum is calculated but is only displayed once because the code to display the sum is written in a comment in the other line and will not be displayed.

30
Example 2: This example uses multi-line comments to prevent the ex*****on of addition code and perform subtraction operations.

function sub() {
let x = 10;
let y = 20;
/* let z = x + y;
console.log(z); */
let z = x - y;
console.log(z);
}
sub();

Output
-10

👉👉Follow now 🥰🥰 : Code with Abdul Hamid [https://www.facebook.com/SCESimplifiedwithAbdulHamid?mibextid=ZbWKwL]

Welcome to Cybertech ICT Center

11/08/2023

JavaScript Syntax is used to define the set of rules to construct a JavaScript code.

Syntax:

console.log("Basic Print method in JavaScript");
JavaScript syntax refers to the set of rules that determines how JavaScript programs are constructed:

// Variable declaration
let c, d, e;
// Assign value to the variable
c = 5;
// Computer value of variables
d = c;
e = c/d;
JavaScript Variables
A JavaScript variable is the simple name of the storage location where data is stored. There are two types of variables in JavaScript which are listed below:

Local variables: Declare a variable inside of a block or function.
Global variables: Declare a variable outside function or with a window object.
Example: This example shows the use of Javascript variables.

// Declare a variable and initialize it
// Global variable declaration
let Name = "Apple";
// Function definition
function MyFunction() {
// Local variable declaration
let num = 45;
// Display the value of Global variable
console.log(Name);
// Display the value of local variable
console.log(num);
}
// Function call
MyFunction();
Output:

Apple
45

JavaScript Operators
JavaScript operators are symbols that are used to compute the value or in other words, we can perform operations on operands. Arithmetic operators ( +, -, *, / ) are used to compute the value, and Assignment operators ( =, +=, %= ) are used to assign the values to variables.

Example: This example shows the use of javascript operators.

// Variable Declarations
let x, y, sum;
// Assign value to the variables
x = 3;
y = 23;
// Use arithmetic operator to
// add two numbers
sum = x + y;
console.log(sum);
Output:

26

JavaScript Expression
Expression is the combination of values, operators, and variables. It is used to compute the values.

Example: This example shows a JavaScript expression.

// Variable Declarations
let x, num, sum;
// Assign value to the variables
x = 20;
y = 30
// Expression to divide a number
num = x / 2;
// Expression to add two numbers
sum = x + y;
console.log(num + "" + sum);
Output:

10
50

JavaScript Keyword
The keywords are the reserved words that have special meanings in JavaScript.

// let is the keyword used to
// define the variable
let a, b;
// function is the keyword which tells
// the browser to create a function
function GFG(){};
JavaScript Comments
The comments are ignored by the JavaScript compiler. It increases the readability of code. It adds suggestions, Information, and warning of code. Anything written after double slashes // (single-line comment) or between /* and */ (multi-line comment) is treated as a comment and ignored by the JavaScript compiler.

Example: This example shows the use of javascript comments.

// Variable Declarations
let x, num, sum;
// Assign value to the variables
x = 20;
y = 30
/* Expression to add two numbers */
sum = x + y;
console.log(sum);
50

JavaScript Data Types
JavaScript provides different datatypes to hold different values on variables. JavaScript is a dynamic programming language, which means do not need to specify the type of variable. There are two types of data types in JavaScript.

Primitive data type
Non-primitive (reference) data type
// It store string data type
let txt = "GeeksforGeeks";
// It store integer data type
let a = 5;
let b = 5;
// It store Boolean data type
(a == b )
// To check Strictly (i.e. Whether the datatypes
// of both variables are same) === is used
(a === b)---> returns true to the console
// It store array data type
let places= ["GFG", "Computer", "Hello"];
// It store object data (objects are
// represented in the below way mainly)
let Student = {
firstName:"Johnny",
lastName:"Diaz",
age:35,
mark:"blueEYE"}
JavaScript Functions
JavaScript functions are the blocks of code used to perform some particular operations. JavaScript function is executed when something calls it. It calls many times so the function is reusable.

Syntax:

function functionName( par1, par2, ....., parn ) {
// Function code
}
The JavaScript function can contain zero or more arguments.

Example: This example shows the use of Javascript functions.

// Function definition
function func() {
// Declare a variable
let num = 45;
// Display the result
console.log(num);
}
// Function call
func();
Output:

45

11/08/2023

Java is one of the most popular and widely used programming language and platform. A platform is an environment that helps to develop and run programs written in any programming language.Java is fast, reliable and secure. From desktop to web applications, scientific supercomputers to gaming consoles, cell phones to the Internet, Java is used in every nook and corner. Java is easy to learn and its syntax is simple and easy to understand. It is based on C++ (so easier for programmers who know C++). Java has removed many confusing and rarely-used features e.g. explicit pointers, operator overloading etc. Java also takes care of memory management and for that, it provides an automatic garbage collector. This collects the unused objects automatically.

Java Tutorial

Below is the complete guide as to how to get started with Java and make yourself proficient in it.

About Java: Before taking your step, the most important thing to do is to get the answer of all WHYs. Here it refers to the questions like WHAT IS JAVA, WHY IT IS POPULAR, WHAT ARE ITS FEATURES etc. By digging into the mentioned article, you will not only learn the important things about Java but also you will understand how to start learning it. Learn about Java here: How to start learning Java

👉👉Java Environment🥰🥰: To work on any programming language, one first needs to know about its environment. Environment refers to the circumstances where a programming language works and how that program works. Java runs on a JVM environment.

👉👉Java Programming Basics🥰🥰: To become proficient in any programming language, one Firstly needs to understand the basics of that language. Therefore, this article will give you in-depth knowledge of the basics of Java in a very simple format. By reading this article, you will get the topics from how to set up the Java Environment to the details about its coding.

👉👉Java Programming Basics🥰🥰 :
Object Oriented Programming (OOPs) Concept in Java: Java is an object-oriented programming language. OOP makes the complete program simpler by dividing it into a number of objects. The objects can be used as a bridge to have data flow from one function to another. We can easily modify data and function as per the requirement. Hence learning about OOPs concepts makes a very important step in learning Java.

👉👉Classes and Objects in Java🥰🥰: Classes and Objects are basic concepts of Object Oriented Programming which revolve around the real-life entities and Java Programming. It means that to implement anything in Java, Classes and objects are made. This article will give you an insight about Classes and Objects and also help you relate it to the real world.

👉👉Constructors in Java🥰🥰: In Order to efficiently use Classes and Objects, one needs to know about the Constructors in Java. Constructors are used to initialize the object’s state. Like methods, a constructor also contains collection of statements(i.e. instructions) that are executed at time of Object creation.

👉👉Methods in Java🥰🥰: A method is a collection of statements that perform some specific task and return result to the caller. A method can perform some specific task without returning anything. Methods allow us to reuse the code without retyping the code. In Java, every method must be part of some class which is different from languages like C, C++ and Python. Methods are time savers and help us to reuse the code without retyping the code. This not only makes methods an important part of Java but also a must learn topic for learners.

👉👉Strings in Java🥰🥰: Strings are defined as an array of characters. Java, unlike other programming languages, provides a very easy implementation of Strings which can be learnt even by a beginner. Hover over this mentioned article to learn in depth about the Strings in Java.

👉👉Arrays in Java🥰🥰: An array is a group of like-typed variables that are referred to by a common name. Arrays in Java work differently than they do in C/C++. To know more, refer the mentioned article.

👉👉Collections in Java🥰🥰: A Collection is a group of individual objects represented as a single unit. Java provides Collection Framework which defines several classes and interfaces to represent a group of objects as a single unit. Java Collection Framework is not the most important part in learning Data Structures and Algorithms, but also it is the most useful module in a programming language.

👉👉Generics in Java🥰🥰: Generics in Java is similar to templates in C++. The idea is to allow type (Integer, String, … etc and user-defined types) to be a parameter to methods, classes and interfaces. For example, classes like HashSet, ArrayList, HashMap, etc use generics very well. We can use them for any type. So not only Generics makes a very important asset in programming, but it also makes the backbone of writing efficient code as well.

👉👉Stream In Java🥰🥰: Introduced in Java 8, the Stream API is used to process collections of objects. A stream is a sequence of objects that support various methods which can be pipelined to produce the desired result. Though this was introduced later in Java, it has gained huge importance in the Java programming very quickly. To be able to work on data fluently in Java, one must learn about the Streams.

👉👉Exceptions and Exception Handling in Java🥰🥰: Many a times in the learning of Java till now, you must have come across the word "EXCEPTION". An exception is an unwanted or unexpected event, which occurs during the ex*****on of a program i.e at run time, that disrupts the normal flow of the program’s instructions. So to develop a module that does not break, one has to learn how to handle exceptions.

👉👉Regular Expressions (ReGex) in Java🥰🥰: Though this word might seem new to you, Regular Expression is a very important part of Development. Regular Expressions or Regex (in short) is an API for defining String patterns that can be used for searching, manipulating and editing text. It is widely used to define a constraint on strings such as a password.

👉👉Multithreading in Java🥰🥰: Multithreading is a Java feature that allows concurrent ex*****on of two or more parts of a program for maximum utilization of CPU. Each part of such a program is called a thread. So, threads are light-weight processes within a process. Though this might seem difficult at first, its a very important part of concurrent programming in Java.

👉👉File Handling in Java🥰🥰: Java too supports file handling and allows users to handle files i.e., to read and write files, along with many other file handling options, to operate on files. The concept of file handling has stretched over various other languages, but the implementation is either complicated or lengthy, but alike other concepts of Java, this concept here is also easy and short.

👉👉Packages in Java🥰🥰: Package in Java is a mechanism to encapsulate a group of classes, sub packages and interfaces. In other words, a package in Java refers to a collection of classes, interfaces, abstract classes, and exceptions that will help in a module in Java programming.

11/08/2023

What is JavaScript ?
JavaScript is a lightweight, cross-platform, single-threaded, and interpreted compiled programming language. It is also known as the scripting language for webpages.

JavaScript A to Z Complete Guide
What is JavaScript Complete Guide ?
JavaScript Complete Guide is a list of A to Z JavaScript concepts from beginner to advanced level.

👉👉Table of Contents 🥰🥰 :

Introduction to JavaScript
JavaScript Variables and Datatypes
JavaScript Operators
JavaScript Conditional Flow
JavaScript Loops
JavaScript Function
JavaScript Object
JavaScript Arrays
JavaScript String
JavaScript Date
JavaScript JSON
JavaScript Set
JavaScript Map
JavaScript Numbers
JavaScript ArrayBuffer
JavaScript Atomics
JavaScript BigInt
Javascript Boolean and dataView
JavaScript Error
JavaScript Generator
JavaScript Intl
JavaScript Math
JavaScript Promise
JavaScript Proxy/handler
JavaScript Reflect
JavaScript RegExp
JavaScript Symbol
JavaScript WeakMap
JavaScript WeakSet
JavaScript Expressions
Javascript Classes

👉👉Error Handling in JavaScript🥰🥰:

JavaScript Interview Preparation
JavaScript Practice Quiz
JavaScript Libraries & Frameworks
JavaScript for Beginner Level
An Introduction to JavaScript
Introduction to JavaScript
JavaScript Syntax
JavaScript Add JS file in HTML Document
JavaScript Versions
JavaScript Output
JavaScript Comments
JavaScript Statements
JavaScript Variables and Datatypes
JavaScript Variables
JavaScript let
JavaScript const
JavaScript var
Difference between var, let, and const keywords in JavaScript
Global and Local variables in JavaScript
JavaScript Data Types
JavaScript Type Conversion
JavaScript Type Coercion
JavaScript Operators
JavaScript Operators

👉👉Operator precedence in JavaScript🥰🥰:
JavaScript Arithmetic Operators
JavaScript Assignment Operators
JavaScript Comparison Operators
JavaScript Logical Operators
JavaScript Ternary Operators
JavaScript Bitwise Operators
JavaScript typeof Operator
JavaScript Conditional Flow
JavaScript Ternary Operator
JavaScript if-else
Switch Case in JavaScript
JavaScript Loops
Loops in JavaScript
JavaScript For Loop
JavaScript While Loop
JavaScript for-in Loop
JavaScript for…of Loop
JavaScript do…while Loop
JavaScript Continue Statement
JavaScript break and continue
JavaScript Errors Throw and Try to Catch

👉👉JavaScript Function🥰🥰:
Functions in JavaScript
How to write a function in JavaScript?
JavaScript Function Call
Different ways of writing functions in JavaScript
Difference between Methods and Functions in JavaScript
Explain the Different Function States in JavaScript
Pass by Value and Pass by Reference in Javascript
Call by Value Vs Call by Reference in JavaScript
JavaScript return Statement
JavaScript Nested functions
JavaScript Rest parameter
JavaScript Anonymous Functions
How to Understand Recursion in JavaScript
Arrow functions in JavaScript
JavaScript Function Complete Reference
JavaScript Object
JavaScript Objects
Creating Objects in JavaScript (4 Different Ways)
JavaScript JSON Objects
JavaScript Object Reference

👉👉JavaScript Arrays🥰🥰:
Arrays in JavaScript
Create an array of a given size in JavaScript
Get the first and last item in an array using JavaScript
How to append an element in an array in JavaScript?
Remove elements from a JavaScript Array
JavaScript Basic Array Methods
Best-Known JavaScript Array Methods
What are the Important Array Methods of JavaScript?
JavaScript Array Reference
JavaScript String
JavaScript String
How are strings stored in JavaScript?
JavaScript String() Constructor
What are the builtin strings in JavaScript?
How to convert string to camel case in JavaScript?
How to count string occurrence in string using JavaScript?
JavaScript String Methods
How to create a string by joining the elements of an array in JavaScript?
Create a string with multiple spaces in JavaScript
How to create multi-line strings in JavaScript
How to generate all combinations of a string in JavaScript
How to create a function from a string in JavaScript
JavaScript String Reference
JavaScript Date
JavaScript Date() Constructor
JavaScript Date constructor Property
JavaScript Date now() Method
JavaScript Date parse() Method
JavaScript Date UTC() Method
JavaScript Date getDate() Method
JavaScript Date getDay() Method
How to check the input date is equal to today’s date or not using JavaScript ?
How to check if one date is between two dates in JavaScript ?
JavaScript Date Reference
JavaScript JSON
JavaScript JSON
JavaScript JSON Objects
JavaScript JSON parse() Method
JavaScript JSON stringify() Method
How to pretty print JSON string in JavaScript
JavaScript How to add an element to a JSON object
Read JSON file in JavaScript
JavaScript JSON Complete Reference

👉👉JavaScript Set🥰🥰:
Sets in JavaScript
How are elements ordered in a Set in JavaScript?
How to iterate over Set elements in JavaScript?
How to sort a set in JavaScript?
JavaScript Set Reference
JavaScript Map
JavaScript Map
What is JavaScript Map and how to use it?
JavaScript Map Reference
JavaScript Numbers
JavaScript Numbers
How numbers are stored in JavaScript?
How to create a Number object using JavaScript?
JavaScript Number Reference
JavaScript ArrayBuffer
JavaScript ArrayBuffer() Constructor
JavaScript arrayBuffer byteLength Property
JavaScript arrayBuffer slice() Method
JavaScript ArrayBuffer isView() Method
JavaScript ArrayBuffer maxByteLength Property
JavaScript ArrayBuffer resize() Method
JavaScript ArrayBuffer Reference

👉👉JavaScript Atomics🥰🥰:
Atomics in JavaScript
Atomics.and() In JavaScript
JavaScript Atomics or() Method
Atomics.xor() In JavaScript
JavaScript Atomics add() Method
JavaScript Atomics compareExchange( ) Method
JavaScript Atomics store() Method
JavaScript Atomics Reference
JavaScript BigInt
JavaScript BigInt
JavaScript BigInt() constructor
JavaScript BigInt constructor Property
JavaScript BigInt asIntN() Method
JavaScript BigInt asUintN() Method
JavaScript BigInt toLocaleString() Method
JavaScript BigInt toString() Method
JavaScript BigInt valueOf() Method
JavaScript BigInt Reference
Javascript Boolean and dataView
JavaScript Boolean() Constructor
JavaScript Boolean Constructor Property
JavaScript Boolean valueOf() Method
JavaScript Boolean toString() Method
JavaScript Boolean Reference

👉👉JavaScript Generator🥰🥰:
JavaScript Generator() Constructor
JavaScript Generator constructor Property
JavaScript Generator next() Method
JavaScript Generator return() Method
JavaScript Generator throw() Method
JavaScript Generator Reference
JavaScript Intl
JavaScript Intl ListFormat supportedLocalesOf() Method
JavaScript Intl DateTimeFormat supportedLocalesOf() Method
JavaScript Intl ListFormat format() Method
JavaScript Intl ListFormat formatToParts() Method
JavaScript Intl DateTimeFormat format() Method
JavaScript Intl Collator supportedLocalesOf() Method
JavaScript Intl DateTimeFormat formatRangeToParts() Method
JavaScript Intl Complete Reference

👉👉JavaScript Math🥰🥰:
What is the use of Math object in JavaScript?
JavaScript Math Object
JavaScript Math E Property
JavaScript Math LN2 Property
JavaScript Math LN10 Property
JavaScript Math LOG2E Property
JavaScript Math LOG10E Property
JavaScript Math PI Property
JavaScript Math abs() Method
JavaScript Math acos() Method
JavaScript Math acosh() Method
JavaScript Math asin() Method
JavaScript Math asinh() Method
JavaScript Math atan() Method
JavaScript Math atan2() Method
JavaScript Math Reference

👉👉JavaScript RegExp🥰🥰:
JavaScript RegExp() Constructor
JS RegExp Properties
JavaScript RegExp constructor Property
JavaScript RegExp dotAll Property
JavaScript RegExp flags Property
JavaScript RegExp global Property
JavaScript RegExp hasIndices Property
JS RegExp Methods
JavaScript RegExp exec() Method
JavaScript RegExp test() Method
JavaScript RegExp toString() Method
JavaScript RegExp Reference

🥰🥰Advanced JavaScript🥰🥰
JavaScript Promise
JavaScript Promise
JavaScript promise resolve() Method
JavaScript Promise all() Method
JavaScript Promise then() Method
JavaScript Promise any() Method
JavaScript Promise race() Method
JavaScript promise reject() Method
Promise vs Callback in JavaScript
JavaScript Promise Reference
JavaScript Proxy/handler
JavaScript Proxy/Handler
JavaScript Proxy() Constructor
JavaScript Proxy revocable() Method
JavaScript Handler apply() Method
JavaScript Handler construct() Method
JavaScript Handler defineProperty() Method
JavaScript Handler get() Method
JavaScript Proxy/handler Reference
🥰🥰🥰
JavaScript Reflect
JavaScript Reflect
JavaScript Reflect get() Method
JavaScript Reflect getPrototypeOf() Method
JavaScript Reflect isExtensible() Method
JavaScript Reflect getOwnPropertyDescriptor() Method
JavaScript Reflect construct() Method
JavaScript Reflect apply() Method
JavaScript Reflect Reference

👉👉JavaScript Symbol🥰🥰
JavaScript Symbol() Constructor
JavaScript Symbol constructor Property
JavaScript Symbol asyncIterator Property
JavaScript Symbol description Property
JavaScript Symbol hasInstance Property
JavaScript Symbol isConcatSpreadable Property
JavaScript Symbol iterator Property
JavaScript Symbol() Method
JavaScript Symbol keyFor() Method
JavaScript Symbol toString() Method
JavaScript Symbol Reference

👉👉JavaScript WeakMap🥰🥰
JavaScript WeakMap
JavaScript WeakMap() Constructor
JavaScript WeakMap constructor Property
JavaScript weakMap delete() Method
JavaScript weakMap get() Method
JavaScript weakMap has() Method
JavaScript weakMap set() Method
JavaScript WeakMap Reference
JavaScript WeakSet
JavaScript WeakSet
JavaScript WeakSet() Constructor
JavaScript WeakSet constructor property
JavaScript weakSet add() Method
JavaScript weakSet delete() Method
JavaScript weakSet has() Method
JavaScript WeakSet Reference
🥰🥰🥰🥰
JavaScript Expressions
JavaScript this Keyword
JavaScript Async/Await Function
JavaScript Object initializer
JavaScript Grouping Operator
JavaScript async function expression
JavaScript RegExp(Regular Expression)
JavaScript function* expression
JavaScript Function Expression
JavaScript class expression
Asynchronous JavaScript
Promises in JavaScript
Event Loop in JavaScript
JavaScript Expressions Complete Reference

👉👉Javascript Classes🥰🥰
Classes In JavaScript
Classes and Objects in JavaScript
How to create a JavaScript class in ES6
this Keyword JavaScript
New Keyword in JavaScript
Object Constructor in JavaScript
Inheritance in JavaScript
Encapsulation in JavaScript
Static Methods In JavaScript
OOP in Javascript
Getter and Setter in JavaScript
JavaScript Events
JavaScript Error
Invalid date
Repeat count must be non-negative
Can’t access lexical declaration`variable’ before initialization
Invalid assignment left-hand side
Assignment to undeclared variable
Reference to undefined property “x”
Error Handling in JavaScript
JavaScript Errors Throw and Try to Catch
Console in JavaScript
Javascript Error and Exceptional Handling With Examples
🥰🥰🥰🥰
Debugging in JavaScript
Why we cannot catch error outside of function in JavaScript ?
Unexpected token error for catch JavaScript
How to increase multiple try-catch readability in JavaScript ?
JavaScript Error Handling: Unexpected Token

👉👉JavaScript Libraries & Frameworks🥰🥰:
Libraries
ReactJS
jQuery
p5.js
D3.js
Collect.js
Underscore.js
Lodash
Tensorflow.js
Technology
ES6
TypeScript
Frameworks
AngularJS
Vue.js
NuxtJS

Address


Alerts

Be the first to know and let us send you an email when Cybertech ICT Center posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Contact The Business

Send a message to Cybertech ICT Center:

Videos

Shortcuts

  • Address
  • Telephone
  • Alerts
  • Contact The Business
  • Videos
  • Claim ownership or report listing
  • Want your business to be the top-listed Media Company?

Share