Why the IF statement is skip?

Hi,
I'm a novice to Java so I would like some help from you guys out there.
This is the Individu class which I wrote;
public class Individu
          static final int NB_INDIVIDUS=2;
          private Statut[] tab_individus ;
          private int nbindividus ;
          public Individu()
               nbindividus=0;
               tab_individus = new Statut[NB_INDIVIDUS];
               Scanner Entree = new Scanner(System.in);
               Entree.useLocale(Locale.FRENCH);
               String prof = "" ;
               while (prof != "x")
               System.out.printf("Nom de profession (x to terminate) : ");
               prof = Entree.next();
               if (prof != "x") //saisie du nom
                    String sit_f = "";
                    System.out.printf("Situation Familialle : ") ;
                    sit_f = Entree.next();
                    System.out.printf("nombre d'enfants : ") ;
                    int nb_enfants = Entree.nextInt();
                    Statut ind = new Statut(prof,sit_f,nb_enfants);
                    insertion_fin_de_liste(ind);
          private void insertion_fin_de_liste(Statut nouveau_statut)
               if (nbindividus < NB_INDIVIDUS)
                    tab_individus[nbindividus++] = nouveau_statut;
               else affiche();
               public void affiche()
                    System.out.printf("--- liste ---\n");
                    System.out.printf("prof sit_f nb_enfants\n");
                    for (int i=0; i<nbindividus; i++)
                         tab_individus.affiche_info();
                    System.out.printf("\n");
Together with two other classes, the program is supposed to show the liste(means end the questions), whenever I type "x", but it seems to skip that procedure and go on and asking me <<Situation familliale>> and on. What's the fault here?

I can't read that.
When you post code, please use[code] and
[/code] tags as described in
[url=http://forum.java.sun.com/help.jspa?sec=formattin
g]Formatting tips on the message entrypage. It makes it much easier to read.
Sorry for the trouble and thanks for the advice. Here they are again.
Class Individu
import java.util.*;
public class Individu
          static final int NB_INDIVIDUS=2;
          private Statut[] tab_individus     ;
          private int nbindividus    ;
          public Individu()
               nbindividus=0;
               tab_individus = new Statut[NB_INDIVIDUS];
               Scanner Entree = new Scanner(System.in);
               Entree.useLocale(Locale.FRENCH);
               String prof = "" ;
               while (prof != "x")
               System.out.printf("Nom de profession (x pour terminer) : ");
               prof = Entree.next();
               if (prof != "x") //saisie du nom
                    String sit_f = "";
                    System.out.printf("Situation Familialle    : ") ;
                    sit_f = Entree.next();
                    System.out.printf("nombre d'enfants    : ") ;
                    int nb_enfants = Entree.nextInt();
                    Statut ind = new Statut(prof,sit_f,nb_enfants);
                    insertion_fin_de_liste(ind);
          private void insertion_fin_de_liste(Statut nouveau_statut)
               if (nbindividus < NB_INDIVIDUS)
                    tab_individus[nbindividus++] = nouveau_statut;
               else affiche();
               public void affiche(){
                    System.out.printf("---           liste              ---\n");
                    System.out.printf("prof          sit_f             nb_enfants\n");
                    for (int i=0; i<nbindividus; i++)
                         tab_individus.affiche_info();
                    System.out.printf("\n");
I shall add in the other two classes
Class Saisie_Individus
public class Saisie_Individus
           public static void main(String[] args)
                Individu societe = new Individu();
                societe.affiche();
          }and Class Statut
public class Statut
       public String profession   ;
       public String sit_f  ;
       public int n_enfants;
       //int celibataire = 0;
       //int mari� = 1;
       // ici commence le constructeur //
       public Statut(String prof,String situation_fam,int nb_enfants)
            profession = prof;
            sit_f = situation_fam;
            n_enfants = nb_enfants;
       public void affiche_info() {
            System.out.printf("%-15s %-15s %5d\n",profession,sit_f,n_enfants);

Similar Messages

  • TS1717 does anyone know why the music quits or skips to the next song

    why does the music stop or skip....why cant i get any help from apple .....the idiot on the end of the phone was no help

    Recent purchases?
    Assuming you are in a region where you are allowed to redownload your past purchases, delete the current copies from your iTunes library and then download again using the Purchased link in the right-hand column of the iTunes Store home page.
    If the problem persists, or that facility is not available in your region, contact the iTunes Store support staff through the report a problem links in your account history.
    Otherwise check the start and stop times on the Options tab when you Get Info for individual files.
    tt2

  • ASSIGNING addition  used in the LOOP statement

    Hello Guys ,
    I have a problem about at new  and at end statements, basically I want to use them in a loop with  assigning  like this :
    loop at ti_itab assigning <wa_itab>.
        at new of kunnr.
        endat.
        at end of xref1.
        endat.
    endloop.
    xref1 and kunnr are fields of my table itab , this is the correct form of do this ?  I don´t know why the at  statements are doing  control breaks for every single   register in my table ( even when both have the same value of the previous register ) , could you give me an example please. should i use  at new of <wa_itab>-kunnr it doesnt work either ?
    thank you very much,.

    Hi José,
    Click on below link:
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9f1f35c111d1829f0000e829fbfe/content.htm
    BR
    Dep

  • Trouble setting the session state of a select item.

    Hi,
    I have a requirement whereby I need to change the session state of a select list item in my form without the need to submit. I am using Application Express 4.1.0.00.32. I thought this would be straight forward using a dynamic action or javascript and calling an on demand process for example.
    P1_MY_SELECT onchange="set_option();"
    function set_option() {
    var l_option=$f_SelectValue('P1_MY_SELECT');
    alert( 'My new value is ' + l_option );
    // ON DEMAND Set the new session state value
    var lRequest = new apex.ajax.ondemand
    ('SET_P1_MY_SELECT',function()
    {  /* start the return function */
    var l_s = p.readyState;
    if(l_s == 1||l_s == 2||l_s == 3)
    else if(l_s == 4)
    { gReturn = p.responseText;
         (gReturn)?json_SetItems(gReturn):null;
    else{return false;}
    /* end the return function */
    lRequest.ajax.addParam('x01', l_option );
    lRequest._get()
    My on demand application process
    DECLARE
    l_options varchar2(2000) := wwv_flow.g_x01;
    BEGIN
    APEX_UTIL.SET_SESSION_STATE('P1_MY_SELECT',l_options);
    apex_util.json_from_items('P1_MY_SELECT');
    END;
    Is there a better method to set the session state of my P1_MY_SELECT other than what I am doing as above or can you tell me why the session state of P1_MY_SELECT is not changed?
    Thanks.
    Edited by: 968358 on 01-Nov-2012 08:40

    if you are on 4.1 why don't you use a dynamic action instead of writing the code again?
    create a dynamic action like this
    Event: Change
    Source Type: Item
    Item: P1_MY_SELECT
    True Action:
    =========
    Action: Execute Plsql Code
    Plsql Code: null;
    Page Items to Submit: P1_MY_SELECT
    Page Items to Return: P1_MY_SELECT (this is optional)
    http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21674/advnc_dynamic_actions.htm#HTMDB27020

  • Why the underlined code is needed?

    import java.io.*;
    import java.util.*;
    public class TestCoding{
         public static void main(String[] args)throws IOException{
    DataInputStream sysin = new DataInputStream(System.in);
              String strout = null;
              String enc = System.getProperty("file.encoding");
              System.out.println("file.encoding is " + enc);
              while ((strout = sysin.readLine()).length() != 0) {
                   System.out.println(strout);
                   byte[] ad=strout.getBytes("ISO-8859-1");               
    String sendToServer = new String(ad);
    System.out.println(sendToServer);
    when I input chinese chars ,such as "����",then the direct output of "System.out.println(strout);" will be "????",but the second output is correct!
    and the system setting is : jre1.5.0_06, windows server 2003
    My doubt is : since the default coding is GBK, why the underlined statement is needed for correct displaying?
    Any help is appreciated!
    Message was edited by:
    mik

    The real mystery is why people continue using
    DataInputStream to read text despite the depracation
    of the readLine method with the following warning:
    Deprecated. This method does not properly convertbytes to characters. As of JDK 1.1,
    the preferred way to read lines of text is via theBufferedReader.readLine()I don't think people will get the messages if they are working on plain text editor. That's why.
    :D

  • "The CREATE USER statement must be the only statement in the batch" in SQL Azure - why? what to do?

    I'm getting an error on a line in the middle of a larger sql script, only in SQL Azure.
    IF NOT EXISTS (SELECT * FROM sys.database_principals WHERE name = N'foouser')
    CREATE USER [foouser] FOR LOGIN [foouser] WITH DEFAULT_SCHEMA=[dbo]
    GO
    Error: "The CREATE USER statement must be the only statement in the batch."
    I don't actually understand what 'the only statement in the batch' means.
    What is a batch? Is it a SQL file? Is it related to a 'GO' statement or an 'IF' statement? What is the reason for the error? And how do I avoid it?
    Thanks,
    Tim

    >IF...ELSE imposes conditions on the execution of a Transact-SQL statement
    I understand the general purpose of an If statement. I could let go of our definition of statement counting disagreeing too except that because of the error I'm stuck.
    It's less important for Create User but what I am really puzzled over now is a very similar issue how am I supposed to do a safe version of CREATE LOGIN, when I don't know whether a login has been previously created on the server or whether I
    am setting up the database on a clean server?
    IF NOT EXISTS (SELECT * FROM sys.server_principals WHERE name = N'foouser')
    CREATE LOGIN [foouser] WITH PASSWORD = 'asdfasdf'
    GO
    If I try and execute this script, it throws the same error as above.
    The first unworkable workaround idea is to omit the if statement
    CREATE LOGIN [foouser] WITH PASSWORD = 'asdfasdf'
    GO
    But if the login already exists on the server (because a similar script was already run), then the script throws an error.
    The second unworkable workaround idea is to do
    DROP LOGIN [foouser]
    GO
    CREATE LOGIN [foouser] WITH PASSWORD = 'asdfasdf'
    GO
    Obviously this throws an error in the second block if the login doesn't already exist on the server.
    The third workaround idea I have is to go conditional by putting an IF condition around DROP instead of CREATE:
    Unfortunately that doesn't work for me either!
    "The DROP LOGIN statement must be the only statement in the batch"
    (This is despite the fact that 'drop login' is listed on the
    supported commands page, not the partially supported page..?! Which disagrees with the notes on
    this page.)
    Anyway the real question I am interesting in addressing is: is there actually a way to have a 'Create/Delete login
    if exists' operation which is SQL-Azure compatible and doesn't throw me error messages (which messes with the sql execution tool I am using)?
    If there is no way, I would like to believe it's because it would be a bad idea to do this. But in that case why is it a bad idea?
    Tim

  • Why would it state under the "more about this mac" that i already have10.8.3 and then in the app store say i need to "resume" do you know what i mean? is it possible i already did download mountain lion entirely once? I am confused and don't want it twice

    why would it state under the "more about this mac" that i already have10.8.3 and then in the app store say i need to "resume" do you know what i mean? is it possible i already did download mountain lion entirely once? I am confused and don't want it twice

    This is cause by the way the App Store checks to see if an application is installed on your system.
    Basically when an app is installed it is in the Applications folder and this is where the MAS looks for them. So it looks at your purchase history for the apps you bought and looks in the Applications folder to see if they are installed. If an app is in your purchase history but not in the Applications folder the MAS says you need to install it.
    For normal apps this works fine but the OS doesn;t install into the Applications folder. So the MAS sees you have Mountain Lion in your purchase history but it's not in the Applications folder and so it says you need to download it.
    Hopefully one of these days Apple wil fix this.
    regards

  • Why won't the mission statement box stay in line with content?

    SOURCE CODE:
    <!doctype html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>Untitled Document</title>
    <link rel="stylesheet" type="text/css" href="file:///FIRST 32/AVT 217/iguevara_byethost32/project1/finalpage.css"><link href='http://fonts.googleapis.com/css?family=Skranji:700' rel='stylesheet' type='text/css'>
    </head>
    <body>
    <div id="page">
              <div id="header">
              <div id="mainnav">
        <ul>
        <li>HOME</li>
                  <li>ABOUT</li>
            <li>JUDGES</li>
            <li>SPONSORS</li>
            <li>FAQS</li>
            <li>CONTACT</li>
            <li>FINAL 50</li>
        </ul>
        </div><!--#header ends-->
              <div id="section">
              <div id="subnav">
        <ul>
                  <li>AIGA 50</li>
            <li>EXIBITION</li>
            <li>GUIDELINES</li>
            <li>COST OF ENTRY</li>
            <li>MAILING YOUR WORK</li>
             <li>AIGA 50</li>
        </ul>
        </div>
        <div id="content">
        <h1>What is AIGA 50</h1><br>
        <h2>#29 / Maybe it’s because you love being recognized by your peers.</h2><br>
    <p>We’re proud to announce the 12th biennial AIGA 50, a juried exhibition that showcases 50 of the strongest examples of design produced in our region during the past two years. Our panel of judges, experts and leaders in design, will evaluate work from print, narrative, and interactive media.</p><br>
    <p>So rack your brain, raid your files, and dust off your best work. How much have you produced in the past 730 days? You might not have hit every one out of the park, but you know which pieces hit the sweet spot. This is your chance to share your design home runs with your peers and the community.</p><br>
    <p>Whether or not you make the final 50, your work will be featured in the online gallery, where every single piece submitted can be shared, liked and discussed. We’ll recognize the winners on April 25, 2012 in an exhibition and reception in the Atrium of the Corcoran Gallery of Art in Washington, D.C. Show us why you’re a designer by presenting your proudest accomplishments to the DC design community. Enter AIGA 50 by October 28.</p><br>
    <p>Follow along with AIGA 50 on facebook or twitter, using the hashtag #aiga50.</p><br>
              </div>
        <div id="mission">
              <h3>AIGA Mission Statement</h3><br>
    <p>AIGA, the professional association for design, is committed to furthering excellence in design as a broadly defined discipline, strategic tool for business and cultural force. AIGA is the place design professionals turn to first to exchange ideas and information, participate in critical analysis and research and advance education and ethical practice</p></div>
        </div><!--#section ends-->
        <div id="footer">
        © Copyright 2013 AIGA, the professional association for design, Washington, DC Chapter
        </div>
    </div><!--#page ends-->
    </body>
    </html>
    STYLE SHEET:
    @charset "UTF-8";
    /* CSS Document */
    /* http://meyerweb.com/eric/tools/css/reset/
       v2.0 | 20110126
       License: none (public domain)
    html, body, div, span, applet, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    a, abbr, acronym, address, big, cite, code,
    del, dfn, em, img, ins, kbd, q, s, samp,
    small, strike, strong, sub, sup, tt, var,
    b, u, i, center,
    dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td,
    article, aside, canvas, details, embed,
    figure, figcaption, footer, header, hgroup,
    menu, nav, output, ruby, section, summary,
    time, mark, audio, video {
              margin: 0;
              padding: 0;
              border: 0;
              font-size: 100%;
              font: inherit;
              vertical-align: baseline;
    /* HTML5 display-role reset for older browsers */
    article, aside, details, figcaption, figure,
    footer, header, hgroup, menu, nav, section {
              display: block;
    body {
              line-height: 1;
              background-color:#000;
    ol, ul {
              list-style: none;
    blockquote, q {
              quotes: none;
    blockquote:before, blockquote:after,
    q:before, q:after {
              content: '';
              content: none;
    table {
              border-collapse: collapse;
              border-spacing: 0;
    body {
      background: url(960image.png) no-repeat top left 100px fixed;
    #page {
              width:960px;
              background:#000;
    #header {
              width:960px;
              float:left;
    #section {
              width:960px;
              color:#FFF;
    #footer {
              width:960px;
              clear:both;
              padding-bottom:53px;
              color:#FFF;
    #mainnav {
               width:690px;
               padding-left:270px;
               color:#FFF;
               padding-bottom:98px;
    #subnav {
              width:270px;
              padding-top:239px;
              font-family:Arial, Helvetica, sans-serif;
              color:#fFF;
              float:left;
    #subnav li {
              padding-top:10px;
              padding-left:23px;
              padding-bottom:10px;
    #content {
              width:482px;
              margin-left:270px;
              padding-bottom:181px;
    #mission {
              width:182px;
              margin-left:779px;
              color:#FFF;
    #mainnav li {
              display:inline;
              padding-right:10px;
    H1 {
              color:#FFF;
    H2 {
              color:#FFF;

    Thank you! Well that helped get them in line with each other the only problem is now for some reason the mission statement is to the left of the content information and the mission statement is supposed to be to the right. Sorry I am obviously a beginner and I'm sure its something simple but I have no idea what I'm doing wrong. 
    This is how I changed the style sheet:
    #content {
              width:482px;
              float: right;
              padding-bottom:181px;
    #mission {
              width:182px;
              color:#FFF;
              float:right;
    Now it looks like this:

  • Why do the visited states of my hyperlinks don't work?

    I have been trying for days and I can't figure it out with tutorials, teachers, google search and trail and error.
    My hyperlinks will NOT show a visited state. I set up hyperlink styles, I named them, I applied them to the different text links in my copy and roll over works fine, they link as they are supposed to, but I can't get the visited state to appear. When I return back to the page, they are still all black.
    Since this is for a end of the semester project and my entire project kinda builds on these states to work, without the visited states, the "map/timeline" I have created will not make any sense.
    Is the anybody that knows what I am doing wrong and can give me a hint on what I should try?
    Thanks!

    I understood that the styles can only be appied to text, that is why I used actual text bullets (found in most fonts) that are type and not an image. Therefore I thought that the link styles should apply to them just like any other text would be.
    By now I have tried applying the style to the text frame,... to the selected character itself,...I have tried in different orders in which I first applied the link, then the style, or first the style and then the link - I have tried it with deselecting in between and keeping it selected through out...I have used regular text, letters and numbers, I have even created an entirely new file without any editing to see if my file might have problems. Nothing changed the fact that the visited link did not change the color. I understand the security issues you have mentioned before, but just for an example, reddit is still using the visited state. There has got to be a way, just not one I will be able to find before I have to have this done.
    Anyway, I certainly appreciate your feedback and I am looking forward in using Muse in the future. Even though it has quiet a few limitations, since this is just the beginning, there is a lot of promise for the future.
    Would you mind looking at my other 2 questions?
    ...is there a dimension limit to how long I can make a horizontally scrollable webpage? For the ipad the image resolution is pretty big and so lining up 8-9 full background images back-to-back next to each other makes for a huge file. I tried it and started to have some issues with jumping text boxes. Could that be because of the file size?
    Can I use page anchors to link from child pages back to a certain spot on the main "home", or are anchor points just for the navigation within one contained long page?
    Jez

  • Why does ABC family say im not located in the United States when i try to watch a video?

    Okay so i went to the website ABC Family to watch pretty little liars an it wouldnt play the videos. It says ''error 403-1, You appear to be outside the United States or its territories. Due to international rights agreements, we only offer this video to viewers located within the United States and its territories.'', and I'm in Missouri which is dead center in the United States. This computer hasnt been outside of the US, so i dont understand why its saying that. I checked the time zone on my computer as well an its in the right time zone. So if theres any way you can help me that would be great.
    Thanks.

    hello denverniccole, websites will detect your location based on the public ip address your internet service provider assigns to you: http://www.yougetsignal.com/tools/network-location/
    there's not much you or the browser can do to change that - if you suspect that your location is wrongly determined, please contact ABC's support & explain the situation...

  • Why Would iTunes turn me off and not allow me to Purchase Content while outside the United States?

    I have been living outside of the USA for 7-months.  I have been purchasing and viewing content that is stored in my iCloud again without any issues.  Today, while attempting to purchase a movie I received an error message saying that I need to contact Support.  I chatted with a rather robotic Support Representative and after a 10 minute review of my account he stated 'all looks good on my end' then, he asked me to hold on for an additional few minutes and said that he could not tell me the reason why my account was 'frozen' but referred me to the iTunes terms and conditions.  I repeatidly asked what was wrong and he refused to answer me.  After a heated back and forth he referred me to Paragraph B in the terms and conditions and it states that content can only be used while in the USA or its possessions or territories.  I told the chat rep that I live in two countries and was curious how I would fix this situation.  The rep was mum and would not reply to me.
    Does anyone have any feedback?  I am unsure what the big deal is. I am paying for content and simply viewing it while traveling.  Why would Apple insist on such a requirement in this very global world we live in.

    They are part of the US store's terms (terms that you have agreed to) :
    The iTunes Service is available to you only in the United States, its territories, and possessions. You agree not to use or attempt to use the iTunes Service from outside these locations. Apple may use technologies to verify your compliance.
    (Other countries terms  will be similar)
    It's like that at the requirement of the content providers, they want control over where their content is available - each country therefore has to have its own store and you have to be in a country (and have a billing address in that country on your account) to use its store. That applies to both buying new content and redownloading past purchases.
    Have you not got a copy of all of your downloads on a backup ? There is no guarantee that any item will remain in the store for redownloading (you are only guaranteed one download of any item), a rights-holder could remove an item from the store at any time.

  • Why is the music on my iPod randomly not letting me play? all my good ones are the ones I purchased won't play, my storage is fine. I tap on the song but it skips to a completly different song on iPod but not laptop

    Why is the music on my iPod randomly not letting me play? all my good ones are the ones I purchased won't play, my storage is fine. I tap on the song but it skips to a completly different song on iPod but not laptop. For example both versions of Til' I Collapse by Eminem won't play on my iPod but on laptop, same with Born this Way by Lady Gaga

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Unsync all music and resync
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.

  • Why the Fibre uplink ports are down state even after giving no shutdown command at the interface

    Hi
    My Predecessors brought 2 CISCO 3750 switches and implemented LACP on these core switches. Due to looping in the network the Fibre uplink ports GigabitEthernet1/1/3 and GigabitEthernet2/1/3 are down (I think these uplink ports are mirrored in the LACP concept)
    Please see below from the configuration.
    I logged into the core switch and went to this particular interface GigabitEthernet1/1/3 and I gave the following command and still the port is in the down state after I gave no shutdown command. Do I need to give the same no shutdown command at interface GigabitEthernet2/1/3 as well ?
    Switch-Core1(config) interface GigabitEthernet1/1/3
    Switch-Core1(config-if)#no shutdown
    Switch-Core1(config-if)#
    Please see below  After no shutdown command given still these 2 Gigabit fibre uplink ports are down.
    GigabitEthernet1/0/20  unassigned      YES unset  up                    up
    GigabitEthernet1/0/21  unassigned      YES unset  down                  down
    GigabitEthernet1/0/22  unassigned      YES unset  down                  down
    GigabitEthernet1/0/23  unassigned      YES unset  down                  down
    GigabitEthernet1/0/24  unassigned      YES unset  up                    up
    GigabitEthernet1/1/1   unassigned      YES unset  up                    up
    GigabitEthernet1/1/2   unassigned      YES unset  up                    up
    GigabitEthernet1/1/3   unassigned      YES unset  down                  down
    GigabitEthernet1/1/4   unassigned      YES unset  up                    up
    Te1/1/1                unassigned      YES unset  down                  down
    Te1/1/2                unassigned      YES unset  down                  down
    GigabitEthernet2/0/1   unassigned      YES unset  up                    up
    GigabitEthernet2/0/2   unassigned      YES unset  up                    up
    GigabitEthernet2/0/3   unassigned      YES unset  up                    up
    GigabitEthernet2/0/4   unassigned      YES unset  down                  down
    GigabitEthernet2/0/5   unassigned      YES unset  up                    up
    GigabitEthernet2/0/6   unassigned      YES unset  down                  down
    GigabitEthernet2/0/7   unassigned      YES unset  down                  down
    GigabitEthernet2/0/8   unassigned      YES unset  up                    up
    GigabitEthernet2/0/9   unassigned      YES unset  up                    up
    GigabitEthernet2/0/10  unassigned      YES unset  down                  down
    GigabitEthernet2/0/11  unassigned      YES unset  down                  down
    GigabitEthernet2/0/12  unassigned      YES unset  down                  down
    GigabitEthernet2/0/13  unassigned      YES unset  down                  down
    GigabitEthernet2/0/14  unassigned      YES unset  up                    up
    GigabitEthernet2/0/15  unassigned      YES unset  up                    up
    GigabitEthernet2/0/16  unassigned      YES unset  up                    up
    GigabitEthernet2/0/17  unassigned      YES unset  up                    up
    GigabitEthernet2/0/18  unassigned      YES unset  up                    up
    GigabitEthernet2/0/19  unassigned      YES unset  down                  down
    GigabitEthernet2/0/20  unassigned      YES unset  up                    up
    GigabitEthernet2/0/21  unassigned      YES unset  down                  down
    GigabitEthernet2/0/22  unassigned      YES unset  up                    up
    GigabitEthernet2/0/23  unassigned      YES unset  down                  down
    GigabitEthernet2/0/24  unassigned      YES unset  up                    up
    GigabitEthernet2/1/1   unassigned      YES unset  up                    up
    GigabitEthernet2/1/2   unassigned      YES unset  up                    up
    GigabitEthernet2/1/3   unassigned      YES unset  down                  down
    GigabitEthernet2/1/4   unassigned      YES unset  up                    up
    Te2/1/1                unassigned      YES unset  down                  down
    Te2/1/2                unassigned      YES unset  down                  down
    Port-channel1          unassigned      YES unset  down                  down
    Port-channel2          unassigned      YES unset  down                  down
    Please  let me know if I am doing something wrong .Please post me some tutorial to sort this.

    It is possible you are overloading that little 4215. If that is the case you should also be seeing "missed packet percentage" messages in your events.
    How much traffic is your 4215 getting? Those sensors will start to drop packets for inspection at about 30 Mb/s.
    - Bob

  • Why does my google say Belgium when i am in the united states

    my google home page says Belgium when i am in the united states how do i fix this

    Clear the cache and remove cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"

  • Why isn't Firefox playing any streaming videos anymore?...On youtube or wherever I go the audio keeps going but the actual video just skips and freezes up the computer..

    Any video that is viewable on the internet(youtube, flash, etc.) does not play in Firefox. The video is shown and everything but when I click it the audio begins playing normally and the actual video itself skips horribly and my computer begins to freeze up.
    == This happened ==
    A few times a week
    == After my little brother crashed my computer a few days ago(blue screen and everything).

    Hey briannagrace96,
    Welcome to Apple Support Communities! I'd check out the following article, it looks like it applies to your situation:
    iPod: Appears in Windows but not in iTunes
    http://support.apple.com/kb/ts1363
    You'll want to go through the following troubleshooting steps, and for more detail on each step follow the link to the article above:
    Try the iPod troubleshooting assistant:
    If you have not already done so, try the steps in the iPod Troubleshooting Assistant (choose your iPod model from the list).
    If the issue remains after following your iPod's troubleshooting assistant, follow the steps below to continue troubleshooting your issue.
    Restart the iPod Service
    Restart the Apple Mobile Device Service
    Empty your Temp directory and restart
    Verify that the Apple Mobile Device USB Driver is installed
    Change your iPod's drive letter
    Remove and reinstall iTunes
    Disable conflicting System Services and Startup Items
    Update, Reconfigure, Disable, or Remove Security Software
    Deleting damaged or incorrect registry keys
    Take care,
    David

Maybe you are looking for