Tech Forum - Technical Discussion Forum - Powered by vBulletin
  • Register
  • Help

  • Home
    •  
  • Forum
  • Blogs
  • What's New?
  • Archive
  • Experience
  • Advanced Search
  • Home
  • Home
  • TF4U Articles

  1. If this is your first visit, be sure to check out the FAQ and BB Codes. You may have to Register before you can post. click the register link to proceed. If you have forgotten your password then click here. Registration is not Required if you are placing your requirements at "What You Need" Forum.
    • Loading
    • TF4U Articles RSS Feed

      IPC in UNIX Using Sockets 

      by
      sanky
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      • Give Away Points
      Published on 01-14-2012 09:58 AM  Number of Views: 118 
      Categories:
      1. Unix/Linux,
      2. C C++

      Sockets
      Sockets are one of the versatile IPC mechanisms in Unix. Sockets allow point-to-point, two-way communication between processes. Unix sockets are similar to two-way FIFOs. When processes ...
      Read More Read More

      IPC in Unix Using the Shared Memory Area 

      by
      sanky
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      Published on 01-14-2012 09:50 AM  Number of Views: 113 
      Categories:
      1. Unix/Linux,
      2. C C++

      Shared Memory
      The shared memory is a mechanism that allows processes to exchange data. One process creates the memory area, and the other process, which has appropriate permissions accesses the ...
      Read More Read More

      IPC in UNIX Using Semaphores 

      by
      sanky
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      Published on 01-14-2012 08:46 AM  Number of Views: 126 
      Categories:
      1. Unix/Linux,
      2. C C++

      What is Semaphore?

      Semaphores are one of the IPC methods in Unix. In the 1960s, E. W. Dijkstra designed semaphores, which is a programming construct used for IPC. Dijkstra’s proposed model ...
      Read More Read More

      IPC in Unix Using Message Queues 

      by
      sanky
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      Published on 01-07-2012 05:55 PM  Number of Views: 131 
      Categories:
      1. Unix/Linux,
      2. C C++

      Message Queue
      A message queue contains a message type and message data, and is either private or public. If it is private, only the creating process and its child process can access it. If it is ...
      Read More Read More

      How To Use Java Strings In C? 

      by
      smith
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      Published on 01-07-2012 07:43 AM  Number of Views: 87 
      Categories:
      1. C C++,
      2. JAVA

      Previous Article:- How To Use Java Arrays In C?

      Handling strings in Java differs from handling strings in C. A string in Java is encoded in Unicode. Conversely, C uses the Universal Character ...
      Read More Read More

      How To Use Java Arrays In C? 

      by
      smith
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      Published on 01-04-2012 07:24 AM  Number of Views: 76 
      Categories:
      1. C C++,
      2. JAVA

      Previous Article:- How To Use Java Primitive Datatypes In C?

      The JNI equivalent of an array is jarray. To access an array from a Java program in a C program, you must copy the array into ...
      Read More Read More

      How To Create And Open A Pipe In UNIX? 

      by
      sanky
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      Published on 12-31-2011 05:33 AM  Number of Views: 127 
      Categories:
      1. Unix/Linux,
      2. C C++

      What is Pipe?

      A pipe is an IPC mechanism that allows different processes to communicate with each other. This is the simplest of all the IPC methods available in Unix. A pipe is a one-way ...
      Read More Read More

      How To Do Process Creation And Termination In UNIX? 

      by
      sanky
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      Published on 12-31-2011 05:19 AM  Number of Views: 189 
      Categories:
      1. Unix/Linux,
      2. C C++

      Process Creation And Termination
      You create a new process in Unix by calling the fork() system function. When called, this function splits the current process into two processes, parent and child ...
      Read More Read More

      Types Of Interprocess Communication 

      by
      sanky
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      Published on 12-29-2011 07:18 PM  Number of Views: 150 
      Categories:
      1. Unix/Linux

      Interprocess Communication
      Interprocess Communication (IPC) is a mechanism by which two or more processes communicate with each other to exchange data by synchronizing their activities. This communication ...
      Read More Read More

      How To Use Java Primitive Datatypes In C? 

      by
      smith
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      Published on 12-25-2011 12:41 PM  Number of Views: 143 
      Categories:
      1. C C++,
      2. JAVA

      Previous Article:- Steps To Call A C Program From Java?

      Datatypes in Java and in C are not directly related. When you call C programs from Java, you need to pass arguments and accept the ...
      Read More Read More

      Steps to Call a C Program from Java 

      by
      smith
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      Published on 12-25-2011 12:13 PM  Number of Views: 201 
      Categories:
      1. C C++,
      2. JAVA

      Previous Article:- How To Call C Program From Java?

      The steps used to call a C program from Java helps convert and generate forms that enable communication between C and a Java program. ...
      Read More Read More

      How To Call C Programs From Java? 

      by
      smith
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      Published on 12-25-2011 11:58 AM  Number of Views: 223 
      Categories:
      1. C C++,
      2. JAVA

      The Java Native Interface (JNI) enables you to integrate C programs and standard libraries with Java. All Java Development Kits (JDK), since the release of version 1.1, include the JNI.

      ...
      Read More Read More

      Sets Operations And Its Implementation In C 

      by
      Harsh
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      Published on 12-21-2011 09:19 AM  Number of Views: 154 
      Categories:
      1. C C++

      Introducing Sets
      Sets are collection of unique elements. In C, a single Set contains elements of the same type, such as either integers or characters. A Set is represented by putting curly brackets ...
      Read More Read More

      Least-Squares Estimation Method And Its Implementation In C 

      by
      Harsh
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      Published on 12-17-2011 05:26 PM  Number of Views: 175 
      Categories:
      1. C C++

      What is Least-Squares Estimation Method
      Least-Squares Estimation method is a type of numerical method, used for statistical calculations, such as Correlation, Standard Deviation, and Variance Analysis ...
      Read More Read More

      Polynomial Interpolation And Its Implementation In C 

      by
      Harsh
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      Published on 12-17-2011 12:08 PM  Number of Views: 238 
      Categories:
      1. C C++

      What is Polynomial Interpolation?
      Interpolation is a method of estimating a missing value that lies between two known values. For example, if you want to find the value of an angle that has the ...
      Read More Read More

      How To Implement Hash Table In C? 

      by
      Harsh
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      Published on 12-17-2011 04:23 AM  Number of Views: 376 
      Categories:
      1. C C++

      What Is Hash Table
      A Hash table is a data structure that stores the data-values in addition to an index in the form of a table. This index is associated with each data-value contained in the table. ...
      Read More Read More

      Transportational Problem and Its Implementation In C language 

      by
      angad
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      Published on 12-04-2011 06:12 PM  Number of Views: 229 
      Categories:
      1. C C++,
      2. Operational Research

      How to Solve Transportational Problems in Operational Research?

      A scooter production company produces scooters at the units situated at various places (called origins) and supplies them to
      ...
      Read More Read More

      LDAP Connection Using Java 

      by
      Harsh
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      Published on 12-03-2011 07:27 PM  Number of Views: 330 
      Categories:
      1. JAVA

      Overview Of The LDAP Repository
      In the apache directory studio, the LDAP Browser appears in the following manner


      In order to search a parameter in LDAP, we can right click ...
      Read More Read More

      Steps To Move Oracle Database Data Files, Control files, Log Files From One To Another Windows Drive Which Consumes Majority Of The Oracle Space 

      by
      Harsh
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      Published on 12-03-2011 06:25 PM  Number of Views: 364 
      Categories:
      1. Oracle

      Purpose
      The purpose of this article is to show step by step movement of Oracle database data files , control files, log files from one to another Window`s drive which consumes majority of the ...
      Read More Read More

      Do's And Don'ts In Terms Of Oracle Database Performance Tuning 

      by
      raksdesouza
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      Published on 10-30-2011 09:20 AM  Number of Views: 526 
      Categories:
      1. Oracle

      Do's:

      1. Look for execution plan of query
      Check the oracle execution plan of the query chosen by Oracle optimizer using explain plan utility i.e.
      Explain plan for select ...
      Read More Read More

      How To Keep A System Open For Long Duration Using Batch Script 

      by
      smith
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      Published on 10-30-2011 05:50 AM  Number of Views: 421 
      Categories:
      1. Windows

      Introduction
      This article is very useful in order to keep your system open/unlocked for long duration.
      Sometime in some of projects/process(more specific at the time of any Training or meeting) ...
      Read More Read More

      How To Install Microsoft Virtual PC 

      by
      Harsh
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      Published on 10-29-2011 04:51 PM  Number of Views: 425 
      Categories:
      1. Windows SW

      How to install Virtual PC on your machine?

      Windows Virtual PC is the latest Microsoft virtualization technology. It lets you run many productivity applications in a virtual Windows environment, with a single click, directly from a Windows 7-based computer.
      ...
      Read More Read More

      Applet For Audio And Video Playback 

      by
      raksdesouza
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      Published on 10-13-2011 08:01 PM  Number of Views: 371 
      Categories:
      1. J2EE/Applet

      The JMF API can be used to play many audio formats. In this article, a sample applet will be used to create the user interface and handle events. This sample applet uses the cross-platform version of ...
      Read More Read More

      JMF API Classes And Interface 

      by
      raksdesouza
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      Published on 10-09-2011 01:25 PM  Number of Views: 405 
      Categories:
      1. JAVA

      Introduction

      Java Media Framework (JMF) Application Programming Interface (API) enables you to embed and process time-based media types in Java applications and applets. Examples of time-based ...
      Read More Read More

      Understanding UNIX Command: find 

      by
      Harsh
      • View Profile
      • View Forum Posts
      • Private Message
      • View Blog Entries
      • View Articles
      Published on 09-04-2011 11:55 AM  Number of Views: 505 
      Categories:
      1. Unix/Linux

      Introduction

      'find' command is basic utility to search any file in a directory tree on Unix system.

      find command does not return any output if file is not found.

      It is a very powerful and useful command for analysis and maintenance work on Unix Server with large number of files.
      ...
      Read More Read More

      Page 1 of 5 1 2 3 4 5 Next
    • Currently Active UsersCurrently Active Users

      There are currently 133 users online. 3 members and 130 guests

      Most users ever online was 323, 11-23-2011 at 08:47 AM.

      1. ‎hanna,
      2. ‎priyak,
      3. ‎reason
    • Enter your email address:

      Delivered by FeedBurner

    • Categories

      C C++ (38)
      Data Structure (3)
      HTML XHTML (11)
      J2EE/Applet (4)
      JAVA (19)
      Java Script (1)
      Mobile SW (2)
      MySQL (2)
      Networking (9)
      Operational Research (3)
      Oracle (6)
      PHP (4)
      Unix/Linux (20)
      Web Design Theory (12)
      Web SW (1)
      Windows (2)
      Windows SW (4)
    • Latest Blog Entries

      rishab

      Java Case Study: Condition Programs

      Case Study NSEP Topic: Conditional Expressions NSEP will give the quarterly and annual bonus only if the cumulative savings of quarter / year is greater than or equal to quarterly minimum (monthly...

      rishab 01-25-2012 09:19 AM
      sonia_sharma

      Java Case Study : Basic Iteration

      Case Study: NSEP Topic: Basic Iterations NSEP provides an additional savings program for customers of the NSEP scheme. Only those students/families who start savings in the first year of...

      sonia_sharma 01-25-2012 06:52 AM
      angad

      Routine (Methods) Concepts Programs in Java

      Here in this blog , we are providing you how to do programs using routines and methods using Java. 1.Find the maximum of three numbers public class Maximum { public static void...

      angad 01-25-2012 05:05 AM
      angad

      Life at TCS ILP

      The secret of success is to know something nobody else knows Hi all. 26th December 2011 was my joining date in the Asia's largest Global IT Services Company as Assistant System Engineer-Trainee....

      angad 01-21-2012 06:32 AM
      angad

      Java Case Study: Hospital Management System

      Care Well Hospital is a leading super specialty hospital in the city. They have various departments such as ENT, Cardiology etc. In every department doctors are available for OP consultation....

      angad 01-20-2012 12:51 PM
      angad

      Write a program To Find The Top And Least Scorer In The Class.

      Make list of Students having name, roll no., age, score. Write a program to find the top and least scorer in the class. import java.io.*; import java.util.*; class findScore1 { String name;...

      angad 01-20-2012 12:03 PM
      angad

      Example Program to show Aggregation in Java

      import java.io.*; import java.util.*; class Professor { /** * @param args */ private int profId; private String profName;

      angad 01-20-2012 11:53 AM
    • Latest Posts

      ayan013

      Sum of digit of any floating number

      Does any1 know how to find the sum of digit of any floating point number????? Example - 124.25 --> 1+2+4+2+5=14 or 1548952.00-->1+5+4+8+9+5+2+0+0=34

      ayan013 Today, 04:31 AM Go to last post
      harrispentaloon

      Re: Anti Virus

      In my opinion I recommend that the best anti-virus is McAfree.I am using this one & it is the best one as compared to others.I hope you understood the thing & will take a positive decision for this.

      harrispentaloon Yesterday, 06:35 PM Go to last post
      ayan013

      Re: Write a C program to generate a series of Armstrong numbers.

      I think the above program is correct for 3 digit number..an armstrong number is depend upon the digits of the number.If the user have entered the range from 1 to 10000 or 1000 then the power of every...

      ayan013 Yesterday, 05:21 PM Go to last post
      ayan013

      C program to print sum of digit of the numbers from 1 to any 18 digit number

      Write a C program to print the sum of its digits but the range should be 1 - any 18 digit number.......that mean we have to find SOD of 1,2,3.......100000000000000000.. Can anyone help me or any...

      ayan013 01-26-2012, 03:16 PM Go to last post
      angad

      Re: New Coder to TF... Greetings all !!

      you are much welcome. Hope to see your efforts and contributions. we are always happy to help and solve problems and guide people in true sense.

      angad 01-26-2012, 06:44 AM Go to last post
      • Contact Us
      • Tech Forum - A Complete Website For Technical Articles, Blogs and Discussion Forum
      • Archive
      • Top
      All times are GMT. The time now is 07:28 AM.

      Content Copyright of Users, Anything Else © TechForum4U. All rights reserved.

      Powered by vBulletin® Version 4.1.8
      Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.
      Tabs System by vbSoporte - vBulletin en Español