Pages

How To Fix Screen Brightness in Ubuntu Linux

How To Fix Screen Brightness in Ubuntu Linux

We often face the problem of screen brightness while using Ubuntu. The screen brightness automatically resets when we reboot our laptop o...

0 Comments

How To Redirect To Another Action In Yii2

While developing web application we need to redirect to different url in our application. Redirect helps us to load different url from diffe...

0 Comments

How To Generate SEO Friendly URL in Yii Framework

We can configure the URL in Yii php Framework which helps to generate SEO friendly url. We can do it by using urlManager in our yii applicat...

1 Comments

How to Download Entire Website Using WGET on Linux

Sometimes we want to download or make offline version of website. If you are trying to do it then you can do it with wget command available...

0 Comments

Installing LAMP Stack with XAMPP and Initializing PHP Project in Linux

Most of the web applications are built with PHP. To built up and test before deploying it we need a web server, a database and PHP on our lo...

0 Comments
How to Create Database Connection and Connect iReport to Database in Netbeans IDE

How to Create Database Connection and Connect iReport to Database in Netbeans IDE

Jasper Report provides rich facilities for designing and generating reports for java applications. We can design the report in two ways, by...

0 Comments

Introduction to Jasper Report Library

All the developer needs to generate report from their developed application/system. There are lots of free and commercial libraries availab...

0 Comments
JComboBox in Java

JComboBox in Java

JComboBox is a swing component which allows us to display a list of options in a drop-down style. Here is an example of using JComboBox.Thi...

0 Comments

What is the use of public static keyword in main() method in Java?

In Java program we always use public static void  main()  method. To understand the use of this function we have to consider on some topic...

0 Comments

How To Show Feedback Character While Entering the Password in Linux

In Linux environment we can see that there is not any hints while entering the password from the terminal when we want to log in to our a...

0 Comments
Simple program to use JTree in Java

Simple program to use JTree in Java

This program demonstrate how to use JTree in Java. JTree can be used to display in hierarchical pattern. One of the use of JTree can be us...

0 Comments
How to Compile and Execute C program in Linux

How to Compile and Execute C program in Linux

Linux is very popular OS in these days mostly among programmers and other sectors. We discuss how to compile and execute C program in Linu...

0 Comments
Finding LCM and HCM of Two Number in C

Finding LCM and HCM of Two Number in C

In this example, we are going to find LCM and HCM of two integer. Source Code: #include <stdio.h> #include <conio.h> int...

0 Comments
Manipulating Array using Pointer in C

Manipulating Array using Pointer in C

In this example, we get sum and average of an array element using pointer. We use pointer to point to the first element of an array then w...

0 Comments
Generating Multiplication Table from 1-12 in C

Generating Multiplication Table from 1-12 in C

This program gives you some idea of formatting the output in C. Here we have used %4d for printing the number. The number 4 defines the wid...

0 Comments
Program to find Smallest and Biggest Number with it's position in C

Program to find Smallest and Biggest Number with it's position in C

In this example we track the smallest and biggest number in an array with it's position. The main logic behind it is first we consider ...

0 Comments
Find Greatest and Lowest Number using Ternary Operator in C

Find Greatest and Lowest Number using Ternary Operator in C

This program give you some idea to use ternary operator in C. We can use this operator in place of IF....ELSE. In this example we use this ...

0 Comments
Counting Total Number of Vowel Letter in a Word in C

Counting Total Number of Vowel Letter in a Word in C

String is a collection of character in other words array of character. In this program we treat string as an array and access each array el...

0 Comments
Convert Decimal to Binary in C

Convert Decimal to Binary in C

We all know how to convert Decimal number to Binary number. This example shows you how to implement that logic into our program. We simply ...

0 Comments
Simple Menu Driven program in C

Simple Menu Driven program in C

This program give you an idea to design your own menu driven program in C/C++. To fulfill our requirement we use Switch case for selecting...

0 Comments