Can anybody Help in finding the centre to enroll for OCA/OCP ?

Hi This is Muzammil and here i send this message to know how to enroll myself to write OCP/OCA Exams i stay in hyderabad, A.P, INDIA.
Edited by: user10177565 on Aug 24, 2008 1:15 AM

Hi,
You can enroll online using www.prometric.com or if you prefer, you can contact the prometrics center directly, the cost of each test is US$125.00.
Here is a resume of the Prometrics centers in your area:
PROMETRIC TESTING (P) LTD
HYDERABAD, Andhra Pradesh 500034
Phone: 23308504 Site Code: II001 AVENUE 1 STREET 20, ABOVE SBI
PLOT 1672 ROAD 12
BANJARA HILLS
NIIT LTD.-HYDERABAD
HYDERABAD, Andhra Pradesh 500063
Phone: 66622249 Site Code: IIC III FLOOR
PRASHANTHI COMPLEX
BASHEERBAGH
CODE TECHNOLOGIES-(Unisoft Franchise)
Hyderabad, Andhra Pradesh 500082
Phone: 30606727 Site Code: IIG72 CODE TECHNOLOGIES
Plot G-2, Merasree Classics
Dwaraka Colony
Punjagutta
NIIT LTD.- AMEERPET-HYDERABAD
HYDERABAD, Arunachal Pradesh 500016
Phone: 66747792 Site Code: IIN36 NIIT LTD
PAVAN'S VANIJYA VIHAR,4TH FLOOR
Beside R.S Brothers
AMEERPET
SSI EDUCATIONS-DILSUKHNAGAR-HYDERABAD
Hyderabad, Andhra Pradesh 500016
Phone: 40031933 Site Code: IIO13 #405
My Home Lakshmi Nivas
Opp.. Dr. Reddys Lab
Green Lands-Begumpet
Telesis Technologies P Ltd.
Hyderabad, Andhra Pradesh 500020
Phone: 27666894 Site Code: II412 1-1-162,
III floor, Crystal building
RTC X Raods
Opp Big Bazaar
HCL Infosystems Limited
Hyderabad, Andhra Pradesh 500003
Phone: 27890520 Site Code: II582 503-504,5th Floor
Minerva Complex 94
S D Road
Secundrabad
For more information regarding the tests, please refer to:
http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=143
Cheers,
Francisco Munoz Alvarez
www.oraclenz.com

Similar Messages

  • Can anybody help me find the serial number for my ipod touch on the apple website because it got stolen and i need the sereal number?

    i have done this before but i forgot how.
    i want to see a list of all the products registered in my name.

    You cannot find the ipod using the serial number.  You can give it to the police, so if they find it they can identify it.
    You can indeed find your serial numbers:
    iPod: How to find the serial number

  • I cannot open iCal because of a problem. Can anybody help me? The computer will not allow it to open and sends a message to apple each time. The icon has gone from the dock, but ical works on my iPad and I am afraid to sync it with my computer.?

    I cannot open iCal because of a problem. Can anybody help me? The computer will not allow it to open and sends a message to apple each time. The icon has gone from the dock, but ical works on my iPad and I am afraid to sync it with my computer in case it wipes everything .

    I have the exact same problem. I have not changed anything. This is probably a bug or something that has gone bad with Mac OS X (10.7.2). I have not found any solution for this on the web.
    MacBook Pro, Mac OS X (10.7.2).

  • I have bought 12 songs from iTunes on my I phone and would now like to record them on a CD.  When I open my Itunes on my desktop and go to what I've purchased it shows only 7 songs bought????  Can anyone help me find the other's so I can burn a CD?

    I have an IPhone 4 and downloaded 12 songs from the Itunes store on my phone.  I want to burn a CD but when I go into my ITunes on my desktop which is Windows XP there are only 7 listed not the 12 I bought.  Can anyone help me find the others?????

    Connect iPhone, then go to iTunes > File > Transfer purchases...

  • Can anyone help me find the output option in Bridge CC?

    Can anyone help me find the output option in Bridge CC?

    http://helpx.adobe.com/bridge/kb/install-output-module-bridge-cc.html

  • Can someone help me find the JavaMail example code?

    Hello, once I found a collection of source code files that contained example code for using the JavaMail API. Now I cannot find the collection. Is it still online? Can anyone help me find the JavaMail example code? Sorry if this question seems to easy - I've been searching for a while now without success.
    Thanks in advance,
    Paul Humphrey

    Really? You can't find it? My answer above wasn't
    clear? And this FAQ entry didn't help?
    http://java.sun.com/products/javamail/FAQ.html#examples
    Please, tell me how I could make the answer more clear to you...

  • I can't find photos imported from my iPhone 4 with "Image Capture" to iPhoto in my iPhoto anywhere... and they were deleted from the iPhone after import! Can anyone help me find the photos?

    I can't find photos imported from my iPhone 4 with "Image Capture" to iPhoto anywhere... and they were deleted from the iPhone after import! Can anyone help me find the photos?

    Do you know the date they were taken? Try search on that.
    Regards
    TD

  • Can anyone help me find the free full semester labview course slides that were on the labview web site but recently disappeared. I would like to use them in my course.

    Can anyone help me find the free full semester labview course slides that were on the labview web site but recently disappeared. I would like to use them in my course.

    The main page of the Academic section can be found here.
    I think the material you are looking for is the courseware.
    Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
    Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.

  • Can anybody help me with the product costing report... URGENt!!!!!

    Hi,
    Can anybody help me with the logic. teh present logic is given below. But as per the new requirement in the Selection screen when I add Material as Select Options then Logic should "expecting to get the report either in Product Group or (single/multiple/range) Material" . Please reply ASAP.
    get the list of product groups based on the range entered by the user.
      SELECT KSTRG FROM CKPH INTO TABLE I_KSTRG
                   WHERE KSTRG IN SO_KSTRG.
    for each product explode the hierarchy get all sub product groups
      LOOP AT I_KSTRG.
        CLEAR I_CKPH. REFRESH I_CKPH.
        CALL FUNCTION 'K_CKPH_GET_HIERARCHY'
             EXPORTING
                  DATBI     = '99991231'
                  KSTRG     = I_KSTRG-KSTRG
             TABLES
                  CKPH_I    = I_CKPH
             EXCEPTIONS
                  NOT_FOUND = 1
                  OTHERS    = 2.
        IF SY-SUBRC EQ 0.
        save all unique product groups within the hierarchy.
          LOOP AT I_CKPH.
            MOVE 'EQ' TO F_KSTRG-OPTION.
            MOVE 'I' TO F_KSTRG-SIGN.
            MOVE I_CKPH-KSTRG TO F_KSTRG-LOW.
            COLLECT F_KSTRG.
            MOVE I_CKPH-KSTRG TO KSTRG-LEVEL2.
            MOVE I_CKPH-UEKTR TO KSTRG-LEVEL1.
            COLLECT KSTRG. CLEAR KSTRG.
          ENDLOOP.
        ENDIF.
      ENDLOOP.
    SORT KSTRG BY LEVEL2 LEVEL1.
    check if there are product groups extracted.
      CLEAR Z_LINES. DESCRIBE TABLE F_KSTRG LINES Z_LINES.
      IF Z_LINES GT 0.
    get the materials attached to each product group.
        SELECT KSTRG WERKS MATNR
          INTO CORRESPONDING FIELDS OF TABLE I_CKPE
          FROM CKPE
          WHERE KSTRG IN F_KSTRG
            AND WERKS = PA_WERKS.
      IF NOT I_CKPE[] IS INITIAL.
    get the order info order number & object number
          SELECT AFPOMATNR AUFKOBJNR
             INTO CORRESPONDING FIELDS OF TABLE I_AFPO
             FROM AFPO AS AFPO INNER JOIN AUFK AS AUFK
             ON AFPOAUFNR = AUFKAUFNR
             FOR ALL ENTRIES IN I_CKPE
           WHERE AFPO~MATNR = I_CKPE-MATNR.
        ENDIF.
        SORT I_AFPO BY MATNR.
        LOOP AT I_CKPE.
      get the division for the material.
          CLEAR: Z_SPART, MARA.
          SELECT SINGLE SPART
                   INTO Z_SPART
                   FROM MARA
                  WHERE MATNR = I_CKPE-MATNR
                    AND MTART = 'ZTFG'.
          MARA-SPART = Z_SPART.
        only proceed with processing if division is within users selection
          IF Z_SPART IN SO_SPART.
            LOOP AT I_AFPO WHERE MATNR = I_CKPE-MATNR.
              CLEAR: Z_MATERIAL_FLG, Z_EXPENSES_FLG, Z_SCRAP_FLG,
                     Z_OUTVAR_FLG, Z_ACTIVITY_FLG.
              LOOP AT I_COEP WHERE OBJNR = I_AFPO-OBJNR
                              AND  VRGNG NE 'KOAO'.   "changed by Kasturi
                PERFORM GET_DATA_FOR_REPORT TABLES I_DATA I_DATA_QTY.
                ENDLOOP.
              ENDLOOP.                       "afpo
            ENDIF.                           "division check
          ENDLOOP.                           "ckpe
        ELSE.
      no product groups extracted.
         MESSAGE i011.
      ENDIF.

    Has this been resolved?
    Your requirement is not clear. Could you please elaborate more about the output required?
    Thanks,
    F~Y

  • Can anyone help me find the airplay function on my Macbook air (new)

    Can anyone help me find the airplay function on my Macbook air (new)

    Hi there,
    I would recommend taking a look at the troubleshooting steps found in the article below.
    Troubleshooting AirPlay and AirPlay Mirroring
    http://support.apple.com/kb/TS4215
    -Griff W.

  • Can Someone Help Me Find The Right KVM?

    I have a tough set-up and I'm finding the search to be overwhelming. I'm hoping someone who's been through this before can help me find the best KVM for my needs. Here's what I have:
    Apple Dual 553mHz G4
    • Upgraded dual montior video PCI card (ADC and DVI ports)
    Apple G5 QUAD
    • Stock dual DVI ported video PCI Express card
    Monitors
    • 2 Apple 17" displays (ADC)
    • 1 Wacom 18" Display (DVI)
    I also have 1 Apple DVI to ADC Display Adapter
    Can I find a dual monitor KVM to use between these 2-machines and leave the third monitor on the G5 only? How about 3-monitor KVM? What are my options here? I'm so confused by all of this.
    i really want the G5 to be able to use all three monitors at once. It doesn't matter to me how many the G4 gets. If the KVM doesn't work I'm just going to suck it up and buy a second video card for the G5 (and DVI adapter) and run all 3 monitors on the G5 and use Remote Access for the G4.

    with respects to the dual DVI KVM... there are a couple of options out there.
    as far as 3 monitor KVM, there really are no such products, however, there are DVI matrix swtiches that will allow you to manually (or through presets) switch any input to any output, to include mirroring monitors on various inputs. however, with anything DVI, there may potentially be hot switch issues with resolution and synch, handshake, peripheral control, etc...
    let me just shoot you a couple of links...
    for dual DVI KVM...
    http://www.linkskey.com/detail.php?Productid=140&ProductName=LDV-DM02ESK
    http://www.linkskey.com/detail.php?Productid=139&ProductName=LDV-DM04ESK
    http://www.cablestogo.com/product.asp?cat%5Fid=518&sku=32562
    http://www.networktechinc.com/srvsw-pc-dvi.html
    DVI matrix switchers (any input to any output - very expensive)
    http://www.gefen.com/kvm/product.jsp?prod_id=1464
    http://www.digitalprojection.com/content/view/88/91/
    sorry to just shoot a bunch of links to you. in my experience, i've generally just used VGA for KVM setups and also there are many pitfalls with compatibility in certain setups that are almost impossible to avoid without trial and error and blind luck.

  • HT1349 can anyone help me find the itunes i downloaded on my netbook

    Hi can anyone help me find my itunes download on my netbook. thanks

    Have you looked for debris in your headphone jack?

  • Need Help in finding the Menu Path's for the below topics

    Hi,
    Where can i get the menu paths for the below topics in SAP syste. I have searched in the system,But couldnot find the Menu Path's for the below topics.Kindly help me in finding the configuration Path for the below...
    1)Public tendering process
    2)Grants Management
    3)Tax & Revenue management
    4)Public sector accounting --> Budget formulation, preparation, execution & Monitoring.
    Thanks
    Rajitha M

    Hi,
    Check for the relevant path in IMG in Public Sector Management.  The prerequisites being configuration of Financial accounting
    sub modules.
    Best Regards,
    Sadashivan

  • Can anyone help me find the raw converter for Nikon D4/ I have Aperture 3.0 with Snow Leopard. thanks in advance

    hi,
    Having problems finding the correct download for a Nikon D4 raw converter.
    Can anyone help direct me to the right link?
    I am using Aperture 3.0 with Snow leopard.
    thanks in advance
    Mark

    Nikon D4 is supported by Digital Camera RAW Compatibility Update 3.10:
    http://support.apple.com/kb/DL1510
    Check the System requirements, if it is compitability with your installation Mac OS X 10.6.8.
    Regards
    Léonie

  • Can anyone help me finding the exact logic?

    I have a query to find the greater salary distinctly. But I am not able to understand the inner logic of it.
    I suspect that it is using some position value as the reference. So please help me in finding the hidden logic.
    I would appreciate more, if you can explain in detail.
    select sal from emp e where 2 =(select count(distinct(sal)) from emp where emp.sal>=e.sal)
    Cheers,
    Venugopal Saride.

    this example migth be of some help.
    SQL> select empno, ename, job, sal
      2    from emp;
         EMPNO ENAME      JOB              SAL
          7566 JONES      MANAGER         2975
          7902 FORD       ANALYST         3000
          7839 KING       PRESIDENT       5000
          7698 BLAKE      MANAGER         2850
          7782 CLARK      MANAGER         2450
          7369 SMITH      CLERK            800
          7499 ALLEN      SALESMAN        1600
          7521 WARD       SALESMAN        1250
          7654 MARTIN     SALESMAN        1250
          7788 SCOTT      ANALYST         3000
          7844 TURNER     SALESMAN        1500
          7876 ADAMS      CLERK           1100
          7900 JAMES      CLERK            950
          7934 MILLER     CLERK           1300
    14 rows selected.
    SQL> select e2.empno,
      2         e2.ename,
      3         e2.job,
      4         e2.sal,
      5         e2.rn
      6    from (select e1.empno, e1.ename, e1.job, e1.sal,
      7                 row_number() over (order by e1.sal desc) rn
      8            from emp e1) e2;
         EMPNO ENAME      JOB              SAL         RN
          7839 KING       PRESIDENT       5000          1
          7902 FORD       ANALYST         3000          2
          7788 SCOTT      ANALYST         3000          3
          7566 JONES      MANAGER         2975          4
          7698 BLAKE      MANAGER         2850          5
          7782 CLARK      MANAGER         2450          6
          7499 ALLEN      SALESMAN        1600          7
          7844 TURNER     SALESMAN        1500          8
          7934 MILLER     CLERK           1300          9
          7521 WARD       SALESMAN        1250         10
          7654 MARTIN     SALESMAN        1250         11
          7876 ADAMS      CLERK           1100         12
          7900 JAMES      CLERK            950         13
          7369 SMITH      CLERK            800         14
    14 rows selected.
    SQL>

Maybe you are looking for

  • Interface was too big, solved that. Now the tools don't fit in the box.

    Hey all! Like some others, I had a problem with the size of the interface. I fixed this by lowering my windows size to 124%. When I started illustrator I was very happy to see that (almost) everything had returned to it's original size. Now, however,

  • Service not failover on RAC 11.2.0.3 environment

    Hi now i am testing how the 11.2.0.3 RAC will behave with Redhat 5.7. then, i found the rac service will not failover to other node which added with "-r" available option i have made service with this command "srvctl add service -d xxxdb -s srv_p01 -

  • Purchase Import Procedure in B1

    Would request you all to please provide me with the complete procedure for purchase import in B1.

  • GTK control previews missing

    I just installed a GTK theme from gnome-looks.org and now whenever I go to System>Preferences>Appearance the Bug Reporting tool pops up asking me to submit a bug report. Then if I try to customize a theme, I find that all the previews under Controls,

  • M-Audio Ozone whine

    Hi folks, I have an M-Audio Ozone, USB midi and audio interface connected to my iBook. (G4, 1.33gHz, 768MB RAM, OSX 10.4.9)) Whenever I load up Logic Express a faint whine starts to appear from my speakers. Shutting down logic stops the noise. It als