Connecting intelligence with intelligence

×
Advertisement

Apr 27 2009

COMEX IT & Telecom conference set for May 27-28

MUSCAT -- The COMEX IT & Telecom Conference, organised by Oman International Trade and Exhibitions (OITE) , will be held at Golden Tulip Hotel during May 27- 28. Organised alongside the country's largest IT, telecom and technology expo, the COMEX IT & Telecom Conference will provide an unparalleled platform to explore some of the latest developments in technology solutions and applications designed for the business sector.

OITE 's Conference Manager, Sherwin Sevillena said, "COMEX 2009 is not just an exhibition. With the staging of OITE 's IT & Telecom Conference, stakeholders from the ICT sector will have an unrivalled opportunity to review the latest technologies and solutions whilst learning and networking with some of the finest minds in the sectors. The conference provides a unique access for peers, leading IT and telecom experts, professionals, regional and international industrial partners to network and share ideas".

The two-day forum is designed to provide a platform to exchange views, create strategies, address critical issues and present the latest research and ideas particularly in the area of IT and telecom. Prominent international and regional speakers have already confirmed their participation at this important and informative event. The event is aimed at developing the growth of both the IT and telecom sectors, helping organisations achieve profitability in uncertain economic times.

The conference will provide ideas on how to adopt and realign present strategies as well as identify practical solutions which would help organisations operate more efficiently at a minimal cost, overcome day-to-day challenges whilst addressing customer needs and improving the bottom line. Sadiq Ahmed Khan, director for sales and marketing at OITE said "The conference will cover five key themes mainly: Future of IT and Telecom Industry in the Region: Challenges, Opportunities and Strategies, Wireless and Mobile Technologies, Information Technologies & Services, IT Security and Green IT Strategies."

Featured topics include: 'Overview on the Region's Broadband and Telecom Industry: Future Challenges & Opportunities', 'MVNO Business Strategies for GCC Wireless Growth', 'Regulatory Issues in the Telecom Sector', 'Latest Mobile and Wireless Technologies for the Service Sectors', 'Green Technologies (Energy Efficient Computing)', 'IT Security: Threats and Trends', 'Business Continuity and Disaster Recovery and Regional/International Case Studies'. It will also discuss aspects such as Cloud Computing / Virtualisation, Software & Web Development, Automation, Search Engine Optimisation Strategies (SEO), and Business Process Outsourcing (BPO). Oman Daily Observer is the exclusive media sponsor of the event.

By Staff Writer

© Oman Daily Observer 2009

Post Your Comment

Sending ...

Comments By Our Users (1)

Ii is some information about ARRAY

An array is a series of elements of the same type placed in contiguous memory locations that can be individually referenced by adding an index to a unique identifier.
For example, an array to contain 5 integer values of type int called billy could be represented like this:

where each blank panel represents an element of the array, that in this case are integer values of type int. These elements are numbered from 0 to 4 since in arrays the first index is always 0, independently of its length.

Like a regular variable, an array must be declared before it is used. A typical declaration for an array in C++ is:

type name [elements];

where type is a valid type (like int, float...), name is a valid identifier and the elements field (which is always enclosed in square brackets []), specifies how many of these elements the array has to contain.

Therefore, in order to declare an array called billy as the one shown in the above diagram it is as simple as:
int billy [5];
Initializing arrays.
When declaring a regular array of local scope (within a function, for example), if we do not specify otherwise, its elements will not be initialized to any value by default, so their content will be undetermined until we store some value in them. The elements of global and static arrays, on the other hand, are automatically initialized with their default values, which for all fundamental types this means they are filled with zeros.

In both cases, local and global, when we declare an array, we have the possibility to assign initial values to each one of its elements by enclosing the values in braces { }. For example:
This declaration would have created an array like this:
In C++ it is syntactically correct to exceed the valid range of indices for an array. This can create problems, since accessing out-of-range elements do not cause compilation errors but can cause runtime errors. The reason why this is allowed will be seen further ahead when we begin to use pointers.

If this artical is useful then i feel happy
thanks
http://www.ibowtech.com/algeria">IT Solution

Reply

Post Your Reply

Sending ...

Copyright © 2012 Zawya Ltd. All rights reserved.

provided by  www.zawya.com

Send This Article To Your Friends

All fields are required.

Use commas for multiple email addresses

We'll use your email address to send the article on your behalf and it will not be collected or used for any other purposes.

X