Sight Explore

Sight Explore

Share

Contact information, map and directions, contact form, opening hours, services, ratings, photos, videos and announcements from Sight Explore, Education, Calcutta Bara Bazar.

We post programming-related content with
๐Ÿ‘‰Crystal Clear Understanding
๐Ÿ‘‰Conceptual learning
๐Ÿ‘‰In-Depth analysis
๐Ÿ‘‰Complete Visualization

๐Ÿ“ฒDM us for static and small scale dynamic website
( Portfolio, Blogs, Ecommerce & E-links)

Photos from Sight Explore's post 17/08/2022

Introduction to Digital Logic Gates ๐Ÿ•น

What's on this topic ?
๐Ÿ“Œ Brief Introduction
๐Ÿ“Œ 7 Logic Gates + Symbol
๐Ÿ“Œ Basic + Derived Logic Gates

Links
๐Ÿ”— Circuit Construction using Breadboard
๐Ÿ”— Virtual Stimulator for circuit visualization mainly for those whose main focus is on computer science

Tags




This post is designed using figma๐Ÿ–Œ

Photos from Sight Explore's post 02/01/2022

๐Ÿ‘ป Last Post on Constructor (9/9)
Topic: Constructor Chaining ๐Ÿ”—


As the name suggests, Chaining the Constructor means to call one Constructor from another.


It can either be changed implicitly:
When extends one class with other ( Inheritance ) then the default constructor( for eg. Animal( ) ) from the parent class if present, then it is called implicitly.


It can explicitly be called using keywords like:
this: Chaining within the class
super: Chaining with parent class



Definition
Visualization
Code Snippet
Output


Is provided in the post. If you like our post then please like and share with your friends โค๏ธ


Do follow us
๐Ÿ™๐Ÿ™๐Ÿ™


Wish you a very happy new year
๐Ÿฅณ๐Ÿฅณ๐Ÿฅณ



Class Tags{


}

Photos from Sight Explore's post 26/12/2021

๐ŸงCopy Constructor
-> Direct Initialization
-> Object Passing

๐Ÿผ๐Ÿผ๐Ÿผ
= = = = = = = = = = =
// Direct Initialization
class Copy
{
int marks;

Copy(int marks){ this.marks = marks; }

void updateMarks(int marks){ this.marks = marks; }

void getMarks(){
System.out.println("Marks = "+marks);
}

public static void main(String[] args){
Copy topper = new Copy(90);
Copy backbencher = topper;

System.out.println("\nDirect: Copy Constructor");
topper.getMarks();
backbencher.getMarks();

System.out.println("\nTopper Marks Updated");
topper.updateMarks(92);
topper.getMarks();
backbencher.getMarks();

System.out.println("\nBackbencher Marks Updated");
backbencher.updateMarks(80);
topper.getMarks();
backbencher.getMarks();
}
}
= = = = = = = = = = =

๐Ÿฆ๐Ÿฆ๐Ÿฆ
= = = = = = = = = = =
// Object Passing
class Copy
{
int marks;

Copy(int marks){ this.marks = marks; }

Copy(Copy val){ this.marks = val.marks; }

void updateMarks(int marks){ this.marks = marks; }

void getMarks(){
System.out.println("Marks = "+marks);
}

public static void main(String[] args){
Copy topper = new Copy(90);
Copy backbencher = new Copy(topper);

System.out.println("\nDirect: Copy Constructor");
topper.getMarks();
backbencher.getMarks();

System.out.println("\nTopper Marks Updated");
topper.updateMarks(92);
topper.getMarks();
backbencher.getMarks();

System.out.println("\nBackbencher Marks Updated");
backbencher.updateMarks(80);
topper.getMarks();
backbencher.getMarks();
}
}
= = = = = = = = = = =

Please like, share & follow if you like our content. Please leave a comment for any query or suggestions.

class Tags{
Please like, share & follow if you like our content. Please leave a comment for any queries or suggestions.
}

16/12/2021

Made using ReactJS
Visit: https://7m6xr.csb.app/
( Refresh if not working )

Filters:
Grayscale, Sepia, Opacity, Invert, Hue-Rotate, Brightness, Contrast, Saturate & Blur

Filter Options:
grayscale([0-100]%)
sepia([0-100]%)
opacity([0-100]%)
invert([0-100]%)

hue-rotate([0-360]deg)

brightness(any%)
contrast(any%)
saturate(any%)
blur(any px)

none

Photos from Sight Explore's post 13/11/2021

๐Ÿ‘‰Understand what actually is
๐ŸŒฑProgramming Paradigm๐ŸŒฑ...

Types of Paradigms

๐Ÿ”ดdeclarative
./functional
./logical
./database_query

๐Ÿ”ตimperative
./procedural
./object-oriented

Nowadays most of the programming languages are Multi-Paradigm in nature

๐Ÿคฏ๐Ÿคฏ๐Ÿคฏ
cpp ๐Ÿ‘‰ C++
js ๐Ÿ‘‰ JavaScript
py ๐Ÿ‘‰ Python
rb ๐Ÿ‘‰ Ruby
and so on

If you like our content please
๐ŸŒฑ๐ŸŒฑLIKE, SHARE & FOLLOW๐ŸŒฑ๐ŸŒฑ

___________________________



Photos from Sight Explore's post 11/11/2021

Wrapping up the OOP Concept with 10+ oop pillar [Overview, imp links]...

>> Post
class
object
encapsulation
abstraction
data_hiding
polymorphism
./overloading
./overriding
inheritance

>> Resources in GitHub.md
cohesion
coupling
association
aggregation
composition

Hope you'll like our efforts and support us by liking, following, sharing our content.
๐Ÿ™๐Ÿ™๐Ÿ™

System.exit(๐Ÿ™‹โ€โ™‚๏ธ๐Ÿ™‹โ€โ™€๏ธ๐Ÿ‘‹);



22/09/2021

Direction => Column
Flexbox visualization using ReactJS

React Flexbox-4
If you like this content. Then please support us on Facebook, Youtube & Instagram.
๐Ÿ™‚๐Ÿ˜Š๐Ÿ™‚

15/09/2021

React Flexbox: Align-Items
Flexbox visualization using ReactJS

React Flexbox-3

If you like this content. Then please support us on Facebook, Youtube & Instagram.
๐Ÿ™‚๐Ÿ˜Š๐Ÿ™‚

15/09/2021

React Flexbox: Flex Flow
Flexbox visualization using ReactJS

React Flexbox-2

If you like this content. Then please support us on Facebook, Youtube & Instagram.
๐Ÿ™‚๐Ÿ˜Š๐Ÿ™‚

Want your school to be the top-listed School/college in Calcutta Bara Bazar?

Click here to claim your Sponsored Listing.

Category

Address


Calcutta Bara Bazar