Skip to content

Saranya SWOT

Yii

Redirect to History – Yii

Reading Time: < 1 minute

Yii is an open source, object-oriented, component-based MVC PHP web application framework. Yii is pronounced as “Yee” and in Chinese it means “simple and evolutionary”

Yii is the one of major MVC framework of PHP. We need to redirect the previous / history page for some circumstances in every development.

Here we show how to achieve that;

Read More »Redirect to History – Yii

c++

malloc vs calloc

Reading Time: < 1 minute

malloc vs calloc differences provided here:

When calloc is used to allocate a block of memory, the allocated region is initialized to zeroes. In contrast, malloc does not touch the contents of the allocated block of memory, which means it contains garbage values. This could potentially be a security risk because the contents of memory are unpredictable and programming errors may result in a leak of these contents.Read More »malloc vs calloc

abstraction

Abstraction in java

Reading Time: 2 minutes

Java Abstraction:

1.Is one which make a class abstract in object orient programming. It means it provides only essential features for a certain program when needed.

Read More »Abstraction in java

java-tutorial

Interface in Java

Reading Time: 2 minutes

Step 1:Methods form the object’s interface with the outside world; the buttons on the front of your television set, for example, are the interface between you and the electrical wiring on the other side of its plastic casing. You press the “power” button to turn the television on and off.

Read More »Interface in Java