Skip to main content

Posts

Showing posts from November, 2012

Object-oriented programming Aka Oop

Object-oriented programming (OOP) is a programming paradigm using "objects" – usually instances of a class – consisting of data fields and methods together with their interactions – to design applications and computer programs. Programming techniques may include features such as data abstraction, encapsulation, messaging, modularity, polymorphism, and inheritance. Many modern programming languages now support forms of OOP, at least as an option. Additional features Encapsulation Enforces Modularity Encapsulation refers to the creation of self-contained modules that bind processing functions to the data. These user-defined data types are called "classes," and one instance of a class is an "object." For example, in a payroll system, a class could be Manager, and Pat and Jan could be two instances (two objects) of the Manager class. Encapsulation ensures good code modularity, which keeps routines separate and less prone to conflict with each other.

Looking for Trainer in soft skills. - Coimbatore

We are looking for full time trainer in .Net,J2ee,Sql Server 2008,PHP Must pocess good technical knowledge and communication Skill. Immediate Joining. Salary based on your performance and Experiance. Reply with your resume to ace.cbe@hotmail.com. For more Details . Coimbatore.quikr.com/Looking-for-Trainer-in-soft-skills

Customer Service Executive, Future Domain

Job Details Area of WorkCustomer Service (International)IndustryBPO / Call CenterLocationDelhi, Noida, Faridabad, GhaziabadExperience0 - 1 Yr SalaryRs 0 / Yr To Rs 1.5 - 2.0 Lakh / Yr Job Description Hiring for leading bpo for dayshift process based in greater noida Steria Only for graduates Salary upto 16.4k sat-sun fixed off. Cab facilities no btech/be For Info Visit :- customer-service-executive

Software Engineer, Aagna Websoft Pvt Ltd

Posted: 21-Nov-2012 Job Details Area of WorkWeb DesignIndustryIT - SoftwareLocationCoimbatoreExperience2 - 5 Yrs Job Description Wanted Software Engineers with 2 + years of Experience in Coimbatore with a knowledge in VB, VB.net, ASP.net, HTML, preferred from Web designing Company. Attractive Salary provided. Contact 0422 3233083 For Info Visit :- aagna-websoft-pvt-ltd

C Developer, ARRIOO CONSULTANCY INDIA

Job Description: Detailed Job description & required Skill set: Years of experience : 5+ years (atleast) Programming Languages: C OS experience: Unix / Linux Internals, VxWorks ( or any POSIX based operating systems) Technology skill set : Diagnostics software development to validate      networking hardware, Device drivers, BSP development, Bootloaders, Board bringup, firmware development, Hardware abstraction layer development,  strong knowledge of hardware for telecommunication and/or networking routers and switches. Functional Skill set : Strong problem solving and debugging complex systems involving hardware, Good team player, motivated to learn and deliver with highest quality software. Participating in a senior/lead role on a project team of engineers developing diagnostics for next-generation Cisco products. Extensive experience working with Engineering and Manufacturing. Strong background in HW Diagnostics development, implementation and documentation.

C++ Software Engineer

SKILLS REQUIRED: C++, Unix, Ruby on Rails, Linux, SIGINT, Full Scope Poly JOB DESCRIPTION: If you are a Software Engineer or Software Developer with C++ experience and a TS / SCI Full scope polygraph clearance, please read on! We are a well-known and rapidly growing engineering firm specializing in cyber security, enterprise application development and broadband communications for the government / IC community. We recently won several new contracts and are looking to hire people who want to advance their careers and work on exciting projects. * Please note that we have multiple positions open and offer relocation assistance! What you need! - A TS/SCI clearance and full scope polygraph is required for this position. - Experience with C++ programming. - At least one of the following: Java, C, Assembly, Python, ROR, PHP or C#.NET. - Experience with Unix or Mac operating systems. - Experience with debugging tools. - Experience with Network Protocols. - Experience with

Storage Software Engineer

SKILLS REQUIRED: C++, Algorithm Development, Multithreading, Storage, SCSI, IO Architectures, Interconnects, TCP/IP, Socket Programming, SAS, SATA, ISCSI JOB DESCRIPTION: Distributed Storage Software Engineer - C++ Algorithm Developer - Systems Level Software Developer Based in Beautiful Sunnyvale, we are a growing Virtual Storage product developer that is essentially doing to storage what VMWare did to servers! Our products create a virtual storage layer that helps across the enterprise and helps organization utilize existing infrastructure by optimizing storage functionality. Our product is changing how enterprises purchase and manage their storage efforts and we are experiencing tremendous growth and success. We are in growth mode and looking for a talented software engineer who is comfortable designing and participating in product architecture as well as reading requirements and implementing product designs. In this role you will work as part of a team but also independen

Program to find the sum of either of the diagonals of a 4 x 4 matrix

#include <iostream.h> #include <conio.h> void main() { clrscr(); int x; int A[4][4],sum=0; //Reading the matrix. cout << "Enter the elements of the matrix : " << endl; for(int y=0;y<4;y++) for (int x=0;x<4;x++) { cout << "Element " << x+1 << ", " << y+1 << " : "; cin>>A[x][y]; } //Sum of either of the diagonal elements. for(x=0;x<4;x++) for(y=0;y<4;y++) if(x==y) sum+=A[x][y]; else if(y==4-(1+1)); sum+=A[x][y]; cout << "Sum of either of the diagonal elements is : " << sum; getch(); }

Convert any number to English word

#include<stdio.h> #include<string.h> void toWord(int,int); char * getPositionValue(int); char * digitToWord(int); char  word[100][30]; int i =0; int main(){     int j,k,subnumer;     unsigned long int number;     printf("Enter any postive number: ");     scanf("%lu",&number);       if(number ==0){          printf("Zero");          return 0;     }     while(number){          if(i==1){              toWord(number %10,i);              number = number/10;          }else{              toWord(number %100,i);              number = number/100;          }          i++;             }     printf("Number in word: ");     *word[i-1] = *word[i-1] - 32;     for(j=i-1;j>=0;j--){          printf("%s",word[j]);     }     return 0; } void toWord(int number,int position){     char  numberToword[100]={" "};     if(number ==0){     }else if (number < 20 ||number %10==0){