Business Intelligence (BI) implementation in Nepalese Telecommunications

This article aims at discovering the business intelligence technologies that can be applied to the telecommunication indus ... ou can download the full article from here. (adsbygoogle = window.adsbygoogle || []).push({}); Loading…

Mini project Digital Volt Meter (DVM) using PIC16F877A with C code

DVM Project Overview (adsbygoogle = window.adsbygoogle || []).push({}); Loading… Digital Volt Meter is a ... elect_adc(1); if(valch0   (adsbygoogle = window.adsbygoogle || []).push({}); Loading...

Discrete Cosine Transform and JPEG compression: Image Processing

JPEG is well known standard for image compression and Discrete Cosine Transform (DCT) is the mathematical tool used by JPEG ... ring of bits is {000001000100110001010} Which is of 21 bits where as the original block of pixel is 64*8 = 512 bits.

Android – How to obtain Google API key for Windows?

There are some steps to obtain a Google API key for windows. The steps are described in detail below. While you are dev ... :enabled=”true” Android:clickable=”true” Android:apiKey=”0ZzHJOolD-XzqDu5o4ZU5SBQo66sCis9eNTXd0g” /> Loading…

C program to find the sum of ‘n’ numbers using array

This program below will print the sum of all the elements in the array. Firstly, the program will ask for the number of ele ... Sum = 6 Loading...

Breadth First Search in C++ – Algorithm and Source Code

Basic Theory (adsbygoogle = window.adsbygoogle || []).push({}); Loading… Breadth-first searches are perfo ... – 1 to generate nodes at depth d, which gives space complexity of O(bd). Loading...

Depth First Search in C++ – Algorithm and Source Code

Basic Theory (adsbygoogle = window.adsbygoogle || []).push({}); Loading… Depth – first searches are perfo ... rent node needs to be stored. Therefore, if the depth cutoff is d, the space complexity is just O(d). Loading...

Step by step procedures to setup Android application development on Eclipse.

Step 1: Download JDK Loading… Here is the link to download the JDK DOWNLOAD. Note: download the JDK that matches wi ... ws->Preferences Choose Android and browse the location of SDK you just unpacked or installed. Loading…

C while loop

Contents (adsbygoogle = window.adsbygoogle || []).push({}); 1 What is while loop? 2 How does the while loop w ... the looping operation at first until the condition satisfies. It is also known as entry controlled loop. Loading…

Calculating a convolution of an Image with C++: Image Processing

In convolution, the calculation performed at a pixel is a weighted sum of grey  levels from a neighbourhood surrounding a ... namedWindow("initial"); imshow("initial", src); waitKey(); return 0; } Loading…

C for Loop

Loop is the process where some part of the program repeats a or specified number of times. The part of the program repeats ... the Fibonacci series up to n terms C program to print whether the given number is prime or not    Loading...

C break and continue

Contents (adsbygoogle = window.adsbygoogle || []).push({}); 1 What is a break statement in C? 2 What is Cont ... e = window.adsbygoogle || []).push({});   Loading...

C Datatypes

What are C Datatypes? Whenever we use variables in C we have to specify its datatype to let the compiler to know what type ... ow.adsbygoogle || []).push({}); double 1.7e-308 to 1.7e308   %d         8 byte 5. Void void   Loading…

Python if…else Statement

Decision making in any programming language is used to execute a block of code if certain conditions are met. They are helpf ... ") The output of the above program is:- Enter the value of a: 0 The number is zero The program continues Loading…

C Variables and Constants

Contents (adsbygoogle = window.adsbygoogle || []).push({}); 1 What are Variables? 2 What are Constants? W ... nt: A string is a sequence of character enclosed within a double quotation mark. For example, “Welcome”. Loading…

C Input and Output

What is C Input and Output? In this tutorial, you are going to learn about C Input and Output.  C Language provides mechani ... = window.adsbygoogle || []).push({});     (adsbygoogle = window.adsbygoogle || []).push({}); Loading…

C Mini Project Ideas with a Sample Calculator Project

Do you want to build a simple application in C but you don’t know how and where to start? Or you know how to build a C app ... ifferent star patterns Hospital management system Random number generator Electric circuit solver etc. Loading…

C Keywords & Identifiers

Contents People often confuse in between keywords and identifiers and if these terms are not properly used then it will tr ... s should not have the same name as that of the functions in C Library and cannot be the same as C keyword. Loading…

C switch…case

Contents What is a switch case in C? Syntax: Flowchart: Example: What is a switch case in C? In our earlier tutorials, w ... value of a and b: 3   4 Multiplication =12 (adsbygoogle = window.adsbygoogle || []).push({}); Loading…

C Programming goto

In this tutorial, you will learn about goto in C programming. Goto will provide an unconditional jump from one part of the p ... ample: while breaking from the nested loops. (adsbygoogle = window.adsbygoogle || []).push({});   Loading…