Need help with rank-marks

I got this task, but don't know how to do it. Can someone help me?

  • Ranks method will return an array of characters, which are the grades corresponding to the whole of brands in the table of marks. The notes are assigned using the following lower limits for the corresponding marks: for category A, the lower limit is 90; for category B is 75; for category C, it's 60; for category D, it is 50; It's class E, 45; and F is the score for all other brands. A better solution for this method would not have values for the coded hard lower limit, but would use a table for these values, which would allow for the category to change limits.
  • The gradeDistn method accepts an array of characters, which are assigned ranks for the array of brands, such as returned by the method of grades . The gradeDistn method returns an array of integers containing the distribution of ranks, which corresponds to the number of occurrences of each grade in the marks awarded. The characters used for grades have been set. The returned array should provide the distribution order of category A to category F.

This is my code (brands is give in the code):

public class ProcessMarks {}

private static final int NMARKS = 125;

private double final static average = 65.0;

public private static final double std = 15.0;

public static int [] getMarks() {}

Random rand = new Random(1001L);

int brand;

int [] theMarks = new int [NMARKS];

int n = 0;

While (n < NMARKS) {}

brand = (int) Math.round (std * rand.nextGaussian () + average);

If (score > = 0 & & mark < = 100)

theMarks [n ++] = marks;

}

TheMarks return;

}

public static int gradeDistn() {}

int a, b, c, d, e, f;

a = b = c = d = e = f = 0;

int [] getMarks() = grade;

for (int i = 0; i < grade.length; i ++) {}

If (grade [i] > = 90) {}

a = a + 1;

}

ElseIf (grade [i] > = 75) {}

b = b + 1;

}

ElseIf (grade [i] > = 60) {}

c = c + 1;

}

ElseIf (grade [i] > = 50) {}

d = d + 1;

}

ElseIf (grade [i] > = 45) {}

e = e + 1;

}

else {}

f = f + 1;

}

}

How to return a, b, c, d, e, f?

}

Public Shared Sub main (String [] args) {}

System.out.println ("A:" + a);

System.out.println ("B" + b);

System.out.println ("C:" + c);

System.out.println ("D:" + d);

System.out.println ("E:" + e);

System.out.println ("F:" + f);

}

Result should achieve:

A: 10
B: 30
C: 105
D: 75
E: 35

F: 10

joker3000 wrote:

I got this task, but don't know how to do it. Can someone help me?

How to return a, b, c, d, e, f?

the way of obvisual to do so is using a card (for example a hash table).

But IMHO, you should follow a more OO as corner and create a custom class of quality who knows when starting a brand and knows also the neighbouring grade handmade brand more if it doen't belong to the real category...

You need an instance of this class for each grade.

The class gets method (int mark) in which objects compared the mark given with ist minPoints and increments the number when the brand is pretty good.

The rank of class also overrides the toString method which is pronts ist name and its number.

Then your method would return a list of objects of quality which you could get out in a loop or just simply passing to System.out.println ()...

class Grade {
  private final String name;
  private final int minPoints = 0;
  private final Grade lesserGrade; // each grade knows about the next worse
  private int count =0;
  public Grade (String name, int minPoints, Grade lesserGrade){
  this.name = name;
  this.minPoints = minPoints;
  this.lesserGrade=lesserGrade;
  }

  /** if mark is lower that this grades minPoints the next worse grade tries to count it.*/
  public void count(int mark){
    if (mark >= minPoints) {
       count++;
    } else{ // when mark is not good enough for this grade try the next worse ...
     lesserGrade.count(mark);
  // this is some kind of recursion although calls are not on same object.
    }
  }
  public String toString(){...}
}
public List gradeDistn(){
  Grade grade=null;
  List gradeList = new ArrayList();

  // there is no worse grade that the worst, so its OK to pass null...
  grade = new Grade("F",0,grade);
  gradeList.add(grade); 

  grade = new Grade("E",45,grade);
  gradeList.add(0, grade);  

  grade = new Grade("D",50,grade);
  gradeList.add(0, grade);
  // add all grades the same way

  for(int mark : getMarks()){
    grade.count(mark); // all the magic is done in the Grade class...
  }
  return gradeList;
}

Good bye

DPT

Tags: Java

Similar Questions

  • Need help with RANK() on data ZERO

    Hi all

    I am using Oracle 10 g and running a query with RANK(), but it is not a desired output. Pleas HELP!

    I have a STATUS table, which shows the history of the State of the command... I have a requirement to indicate the order and the last date of State (max). If there is no date NULL for a command can show NULL.

    STATUS
    ------------
    ORD_NO | STAT | DT
    ---------------------------------------------
    1. Open |
    1. Pending |
    2. Open |
    2. Pending |
    3. Open | 01/01/2009
    3. Pending | 06/01/2009
    3. Close |
    4. Open | 02/03/2009
    4. Close | 04/03/2009
    Result should be (max date for each ORD_NO NULL otherwise):
    ORD_NO | DT
    ---------------------------------------------
    1.
    2.
    3.
    4. 04/03/2009
    ----------------------------------------------
    CREATE THE TABLE Status (NUMBER of ORD_NO, STAT VARCHAR2 (10), DT DATE);
    INSERT INTO the status of the VALUES (1, 'Open', NULL);
    INSERT INTO the status of VALUES (1, 'Waiting', NULL);
    INSERT INTO the status of VALUES (2, 'Open', NULL);
    INSERT INTO the status of VALUES (2, 'Waiting', NULL);
    INSERT INTO the status of VALUES (3, 'open', 1 JAN 2009');
    INSERT INTO the status of VALUES (3, 'pending', 6 JAN 2009');
    INSERT INTO status VALUES (3, 'Close', NULL);
    INSERT INTO the status of VALUES (4, 'open', 2 MAR 2009');
    INSERT INTO status VALUES (4, 'Close', 4 MAR 2009');
    COMMIT;

    I tried using the RANK function to rank all orders by date. So accustomed ORDER BY cluse to date down the order dates thinking null would be on top and is grouped by each ORD_NO.

    SELECT ORD_NO, DT, RANK() OVER (ORDER BY DT DESC ORD_NO PARTITION)
    STATUS;

    .. but the result was something...
    ORD_NO | DT | RANKING
    ---------------------------------------------
    *1 | | 1 *.
    *1 | | 1 *.
    *2 | | 1 *.
    *2 | | 1 3 | 1
    3. 06/01/2009 | 2
    3. 01/01/2009 | 3
    4. 2009-03-04 | 1
    4. 02/03/2009 | 2
    ----------------------------------------------

    I don't know why, is not the first two ORD_NOs has no group and why the ranking of 1 assigned to them. I'm assuming something like:
    ORD_NO | DT | RANKING
    ---------------------------------------------
    *1 | | 1 *.
    *1 | | 0 h
    *2 | | 1 *.
    *2 | | 1 *.
    3 | | 1
    3. 06/01/2009 | 2
    3. 01/01/2009 | 3
    4. 2009-03-04 | 1
    4. 02/03/2009 | 2
    ----------------------------------------------

    Please guide me if I am missing something here?

    Concerning
    Sri

    Hello

    I think the last stat for 1 and 2 is ongoing unopened.

    Salim cordially.

    SQL> SELECT   ord_no, MAX (stat)KEEP (DENSE_RANK LAST ORDER BY dt) stat,
      2           MAX (dt)KEEP (DENSE_RANK LAST ORDER BY dt) dt
      3      FROM status
      4  GROUP BY ord_no;
    
        ORD_NO STAT       DT
    ---------- ---------- ----------
             1 Pending
             2 Pending
             3 Close
             4 Close      2009-03-04
    
    SQL> 
    

    Published by: Salim champion 2009-05-05 13:09

  • Need help with google ranking

    If I want to watch my site ive created in google is to see this:

    Woning huren in Paramaribo, Suriname

    hureninparamaribo.nl /.

    U good bij ons een in Suriname hurenvakantiehuis. Deze woning is good in room Paramaribocentrum van het. Of woning is een rüstige wijk good ...

    UU has said een + 1 belangrijkste

    As you can see before the URL is no WWW. When I click on the link, the only thing I see is a small form.  Y at - there someone who can tell me where I can change this?

    Kind regards Brian

    Great! Thank you..

    Date: Wednesday, May 9, 2012 06:15:57-0600

    From: [email protected]

    To: [email protected]

    Topic: Need help with google ranking

    Re: Need help with google ranking

    created by Ken Binney in Dreamweaver - discover complete discussion

    Hello, Brian - the problem is the file extension, you use on your pages in the folder root of your remote site you have a page with only a form named:http://www.hureninparamaribo.nl/index.html and you have this other page with all your content named:http://www.hureninparamaribo.nl/index.htm your server displays the html file then delete the index.html page form rename the index.html page content

    Replies to this message received to everyone subscribed to this topic, not directly to the person who posted the message. To post a reply, or reply to this email or visit the message page: http://forums.adobe.com/message/4390439#4390439

    To unsubscribe from this thread, please visit the page message to http://forums.adobe.com/message/4390439#4390439. In the Actions box to the right, click on stop Notifications by e-mail.

    Start a new discussion in Dreamweaver, by e-mail or at the Adobe Forums

    For more information on maintaining your email forum notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Need help with the launching track pack for forza code 4

    Bought new Forza 4 and the lancer Track Pack code does not work, how do I get a code that is generated in the form I've already paid for it. Rank of loads of numbers and sent 10 s of emails but cant seem to get help.

    This is the help I get when the cat to an Ambassador xbox on xbox.com

    Terry wrote:
    Need help with the launching track pack for forza code 4
    The Xbox Ambassador says:
    Location of Ambassador of the community...
    The Xbox Ambassador says:
    Location of Ambassador of the community...
    The Xbox Ambassador says:
    Your question will be answered by an Ambassador of the Xbox. You have been connected to the Ambassador as a user Xbox [3]
    The Xbox Ambassador says:
    Hello
    Terry wrote:
    Hello
    The Xbox Ambassador says:
    Hey
    Terry wrote:
    just to be on the phone to xbox live support and was told to come here
    The Xbox Ambassador says:
    ok\
    The Xbox Ambassador says:
    What is your problem?
    Terry wrote:
    I bought the 4 for forza ansd 360 new sealed Christmas...
    Terry wrote:
    has got 2 codes that accompanies the game but the pack track code does not work
    The Xbox Ambassador says:
    Wow good
    Terry wrote:
    whenever I put in the code it says code redeemed
    The Xbox Ambassador says:
    I think the code is used. You must return to the retailer
    Terry wrote:
    I tried to, but since I already opened the case they will not accept
    The Xbox Ambassador says:
    Oh. No,
    Terry wrote:
    the code had been used or defective as I am the only person who has touched the game once opened, tried to enter the code when it is open
    The Xbox Ambassador says:
    Maybe it was auto bought?
    Terry wrote:
    so, how do I get another code generated track Pack if defective?
    The Xbox Ambassador says:
    I do not know.
    Terry wrote:
    bought the game new, so I get the track pack
    The Xbox Ambassador says:
    Oh. It's bad.
    The Xbox Ambassador says:
    I think that if you Exchange 1 code it will buy it
    Terry wrote:
    car pack code worked, starter pack did not work
    The Xbox Ambassador says:
    Oh.
    The Xbox Ambassador says:
    It's a bad
    The Xbox Ambassador says:
    BTW you have an evolution of the tests?
    Terry wrote:
    Yes, I want to? but more anxious to get a code object generated for this pack
    The Xbox Ambassador says:
    Hey if I help can u give me this game too?
    Terry wrote:
    ?????????????????
    Terry wrote:
    So is it possible to get a code for that time?
    The Xbox Ambassador says:
    Hey
    The Xbox Ambassador says:
    Yes.
    The Xbox Ambassador says:
    you need to contact them
    The Xbox Ambassador says:
    and tell them that the code is used.
    Terry wrote:
    I was told to come here? where can I go to get the code?

    Hi Terryg76,

    ·         What version of the operating system is installed on the computer?

    I suggest you to contact the game manufacturer for more help and information.

  • I have a mess of error. about microsoft Isatap adapter... plug and play id root\ * Isatap\0002 error tv-configmgrerr31 need help with drivers

    need help with this.is there a link for the drivers. The only changes to my system is a new modom.netgear wireless g54.thank you

    Hello

    (1) what is the complete error message you receive?

    (2) when exactly you get this error message?

    (3) how long have you been faced with this problem?

    You can ignore this error message. This error message does not indicate a problem with the adapter. The adapter will continue to function correctly.

    See the article below

    On a Windows Vista-based computer or on a Windows Server 2008-based computer, the Microsoft ISATAP map appears with a yellow exclamation mark next to it in Device Manager, and you also receive an error message
    http://support.Microsoft.com/kb/932520

  • Need help with slui message with the Validation Code: 50

    OT: need help with the message 'victim' slui...

    Diagnostic report (1.9.0027.0):
    -----------------------------------------
    Validation of Windows data-->

    Validation code: 50
    Code of Validation caching online: 0xc004c4a2
    Windows product key: *-* - YMK9F - 7Q3XK-X7D3P
    Windows product key hash: 9WDJkbD1PdUJ + GCdK63bG2yus5g =
    Windows product ID: 00371-702-8613485-06367
    Windows product ID type: 5
    Windows license type: retail
    The Windows OS version: 6.1.7601.2.00010100.1.0.048
    ID: {60986DD4-5ADA-464C-A590-469385BD5D3A} (1)
    Admin: Yes
    TestCab: 0x0
    LegitcheckControl ActiveX: N/a, hr = 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Product name: Windows 7 Professional
    Architecture: 0 x 00000009
    Build lab: 7601.win7sp1_gdr.150928 - 1507
    TTS error:
    Validation of diagnosis:
    Resolution state: n/a

    Given Vista WgaER-->
    ThreatID (s): n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002

    Windows XP Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    File: No.
    Version: N/a, hr = 0 x 80070002
    WgaTray.exe signed by: n/a, hr = 0 x 80070002
    WgaLogon.dll signed by: n/a, hr = 0 x 80070002

    OGA Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002
    OGAExec.exe signed by: n/a, hr = 0 x 80070002
    OGAAddin.dll signed by: n/a, hr = 0 x 80070002

    OGA data-->
    Office status: 109 n/a
    OGA Version: N/a, 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Office Diagnostics: 025D1FF3-364-80041010_025D1FF3-229-80041010_025D1FF3-230-1_025D1FF3-517-80040154_025D1FF3-237-80040154_025D1FF3-238-2_025D1FF3-244-80070002_025D1FF3-258-3

    Data browser-->
    Proxy settings: N/A
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Win32)
    Default browser: C:\Program Files (x 86) \Mozilla Firefox\firefox.exe
    Download signed ActiveX controls: fast
    Download unsigned ActiveX controls: disabled
    Run ActiveX controls and plug-ins: allowed
    Initialize and script ActiveX controls not marked as safe: disabled
    Allow the Internet Explorer Webbrowser control scripts: disabled
    Active scripting: allowed
    Recognized ActiveX controls safe for scripting: allowed

    Analysis of file data-->

    Other data-->
    Office details: {60986DD4-5ADA-464C-A590-469385BD5D3A}1.9.0027.06.1.7601.2.00010100.1.0.048x 64*-*-*-*-X7D3P5S-1-5-21-4040712825-3780279311-4191590923the system manufacturer,System Product NameAmerican Megatrends Inc. 00371-702-8613485-06367 0802 20110601000000.000000 + 000F3A53C07018400FE04090409Central Standard Time(GMT-06:00)03109

    Content Spsys.log: 0 x 80070002

    License data-->
    The software licensing service version: 6.1.7601.17514

    Name: Windows 7 Professional edition
    Description: operating system Windows - Windows (r) 7, retail channel
    Activation ID: c1e88de3-96c4-4563-ad7d-775f65b1e670
    ID of the application: 55c92734-d682-4d71-983e-d6ec3f16059f
    Extended PID: 00371-00212-702-861348-00-1033-7601.0000-1142014
    Installation ID: 022214046070387640229264400212325972472065330163335456
    Processor certificate URL: http://go.microsoft.com/fwlink/?LinkID=88338
    Machine certificate URL: http://go.microsoft.com/fwlink/?LinkID=88339
    Use license URL: http://go.microsoft.com/fwlink/?LinkID=88341
    Product key certificate URL: http://go.microsoft.com/fwlink/?LinkID=88340
    Partial product key: X7D3P
    License status: Notification
    Reason for the notification: 0xC004F200 (non-genuine).
    Remaining Windows rearm count: 4
    Trust time: 12/01/2016 11:28:57

    Windows Activation Technologies-->
    HrOffline: 0x00000000
    HrOnline: 0xC004C4A2
    Beyond: 0 x 0000000000000000
    Event timestamp: 1:11:2016 12:55
    ActiveX: Registered, Version: 7.1.7600.16395
    The admin service: recorded, Version: 7.1.7600.16395
    Output beyond bitmask:

    --> HWID data
    Current HWID of Hash: QAAAAAEAAwABAAEAAQADAAAABwABAAEAln3OI0bUDFRsO24dgCKo58SW2JyUY/1mMckmPrb67HxoDsAKMMl2Vg ==

    Activation 1.0 data OEM-->
    N/A

    Activation 2.0 data OEM-->
    BIOS valid for OA 2.0: Yes, but no SLIC table
    Windows marker version: N/A
    OEMID and OEMTableID consistent: n/a
    BIOS information:
    ACPI Table name OEMID value OEMTableID value
    APIC1425 APIC 060111
    FACP 060111 FACP1425
    HPET 060111 OEMHPET
    MCFG 060111 OEMMCFG
    LASRYVITRAGE OEMB1425 060111
    ASPT 060111 PerfTune
    OEMOSFR OSFR 060111
    SSDT DpgPmm CpuPm

    Hello

    Thanks to everyone who responded to my question.

    Turns out it would not activate the system properties page.

    He did, however, turn on the tool online browser without a

    hitch. Yes, problem solved.

    Jon

  • I'm suddenly needing help with my browser Firefox (6.0.2)

    Hello
    I'm suddenly needing help with my browser Firefox (6.0.2)

    (OS: I use Windows XP).

    When I open the browser, I don't see is a totally white screen of white, with all the toolbars at the top.

    I know that my physical connections are very good: I have tested the modem, turned the pc market etc and I can also receive/send emails.

    This problem started today, September 8, 2011 and has never happened before.

    Is it a coincidence that Firefox itself to day before I disconnected yesterday evening? Could this be something to do with this particular new update?

    I also noticed that just before I "opened" Firefox, I now get a small box indicating:

    [JAVASCRIPT APPLICATION]
    Handl exc in Ev: TypeError: this oRoot.enable is not a function

    This never appeared before - I hope that it offers a clue has what is wrong.

    The browser not be stuck in Mode safe, said by the way.

    Of course, I can't find solutions to the problem on the internet, I don't physically see all Web sites!
    (A friend sends this request in my name from their pc)

    Any light you can throw on this problem of confusion would be much appreciated. I'd rather not have to uninstall and reinstall Firefox if possible.

    If the only option is to uninstall Firefox and reinstall from your site, I'm also in trouble (I can not see the internet or download).
    In this case, would you be able to send the .exe file as an attachment to my e-mail address? In the affirmative, please let me know and I'll give you more details.

    Thanks in advance.

    One possible cause is security software (firewall) that blocks or limits Firefox or plugin-container process without informing you, possibly after the detection of changes (update) for the Firefox program.

    Delete all rules for Firefox in the list of permissions in the firewall and leave your firewall again ask permission to get full unlimited access to the internet for Firefox and the plugin-container and the update process.

    See:

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions of the origin of the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > appearance/themes).

  • Need help with installation on Photosmart C7280 all-in-one

    I had my printer is installed and has been using the printer for 3 wireless laptops in my house.  Now, I can't even find my backup drive, so I have need help with downloading the software to use my printer and also get to use wireless.   I don't know what happened, but the fax for this printer is listed, but not the printer itself.   Help, please!

    Click here to download the software for your printer:

    http://h10025.www1.HP.com/ewfrf/wc/softwareCategory?product=3204785 & LC = on & CC = US & DLC = in & lang = to & CC = US

    has chosen the appropriate operating system that corresponds to your computer and download the full software features.

  • HP laptop: need help with internet and search for things

    whenever I'm on chrome internet explore google ect and go to tab it is says unknown error or no internet connection or anything and just takes me chrome ect. I need help with this im involved in a byod class and my computer won't let me on what whatever usually it just starts out black and white and the seeds I my search request

    Yes it's a Windows 10 and it arrived already installed I'll take the other info now

  • Need help with the installation of an adapter of Palit GeForce 9500GT Super chart - 512 MB in a M2N68 (narrated

    Need help with the installation of an adapter of graphics Super Palit GeForce 9500GT - 512 MB - DDR2 SDRAM in a M2N68 motherboard (narra6). Should I disable the onboard graphics in the bios? When the card is installed, no VGA work outs and the PC does not start. Checked and recontroler implementation of the card in the PCI slot. PC is a desktop HP G5200uk PC. Windows 7 operating system.

    Hello

    The link below is a guige to install a video card in your Pc.  In particular, it seems that you will have to perhaps specify the location of the new card in the bios and save this change before you install the new card - see step 4 in the guide on the link below.  If your new card fits into the PCI Express x 16 slot, you will need to define PCI Express in the bios and save the changes.

    http://support.HP.com/us-en/document/c01700855

    Kind regards

    DP - K

  • need help with my window is in thai and I do not understand to all.how to convert to English?

    need help with my window is in thai and I don't quite understand.
    How to convert to English? I tried for days but still it cannot be changed.
    because I can't read thai... Please help me step by step...

    my pc is touchsmart 9100 windows 7 Professional.

    Not a single word is in English if I go to the "region and language" to change.

    Everthing is in thai in the system.

    Hello

    Where have you bought the PC?

    What is the operating system installed?

    Best regards

    ERICO

  • I need help with an installation failure to interpret and troubleshoot a Setup log.

    Background: A few years ago, many editors of cinema used Final Cut Pro 6 (also contained in Final Cut Studio 2) for their editing projects.  Shared Apple Final Cut X uses a different format that is not compatible with FCP6.  Sometimes, these editors are called to work on a few historical projects that have been published in FCP6 and need this version to run now.

    Starting with OS X Lion, FCP6 would install not in Lion and thereafter.

    According research by Jeremy Johnston as noted on his blog, he discovered that Apple has inserted a file in the folder CoreServices in the Library folder of the system folder that causes versions the version Final Cut Pro X (and other older Apple programs in the same situation) do not settle.  He suggested changes to this file that would seek to prevent interfering with the installation of FCP6 in Lion, many users of final cut PRO 6 were successful in their efforts to install in Lion and work with it.

    Later in a discussion update on installing FCP6 in Mavericks, HawaiianHippie determined that the simplest way to perform the installation of FCP6 was simply copy this file and remove it from the system folder, install FCP6 and then restore the copied file:

    https://discussions.Apple.com/message/26309669#26309669

    I used this method with success to install FCS2 in Yosemite:

    [click on images to enlarge]

    However, in my attempts to install FCS2 in El Capitan, it fails in the last 5% to install the first DVD:

    First of all, I need advice on how to display an extremely large Setup log in this thread (on MacRumors, it is a method to insert a 'code' in a small box that can be the object of a scrollbar if necessary to read all along).  I am unable to find such a method to post here.

    Then once approved, I need help to determine which component is causing the installation to fail and perhaps this element can be omitted from the installation:

    If this element is not required, then maybe FCP6 can be installed successfully without it.  And if that omitted element is necessary, perhaps a manual method to install it can be determined by pacifists.

    It is my goal to help those who need to install and use FCP6 on their new Macs running El Capitan.

    Here is the post on MacRumors with pre-installed Setup log:

    http://forums.MacRumors.com/threads/i-need-help-with-an-installation-failure-to-interpret-and-troubleshoot-an-Installer-log.1954786/#post-22541389

  • Need help with the port forwarding for a XBox remote Streaming

    I have a router R6200v2 and need help with port forwarding.

    I came across this set of instructions for setting up stream port forwarding XBox remotely from anywhere

    http://kinkeadtech.com/2015/07/how-to-stream-Xbox-one-to-Windows-10-from-anywhere-with-Internet/

    I have no idea when it comes to such things and I want to make sure I do it correctly without messing up my existing home network.

    Port Forwarding and triggering Port pages setup look very different from what the guy uses. Can someone walk me through what I do to set up please?

    Hi @varxtis,

    You must enter them in the field for a start external Port and external completion Port. You will need to send individually except for the range of 49000-65000. The steps are as follows.

    1. create a Service name (it could be something else that you cannot use the same service name twice. Ex. XBOX1, XBOX2 and so forth.)

    2. Select the type of service (TCP, UDP or both)

    3 entry 5050 times a start external Port and external endpoints.

    4. Select the IP address of your XBOX.

    5. Select apply.

    6 do the same for other port numbers. To the beach, use 49000 for the external departure Port and for the external completion Port 65000.

    Kind regards

    Dexter

    The community team

  • Need help with network home using Airport extreme

    I need help with my home network.  I'm not very aware when it comes to all things network.  Here's how my network is currently set up.

    Cable modem to Airport Extreme for Gigabit Switch.  Cables come out of the switch to all areas of the House.  I have 2 other extreme airport connected in other rooms of the House directly on the wall that dates back to the switch.  I hope I am explaining that properly.

    My problem is that this seems to have caused some of my connections cable does not work.  When everything is configured, it has worked well.  All connections in the House worked.  Then we have disconnected one of the extreme airport and moved to another location in the House to have the best wifi coverage.  Since that time, a lot of the ethernet wall plugs are not working.  For example, when I plug in my Macbook Pro in making ethernet in my kitchen, it says connected but it has an assigned ip address and cannot connect to the internet.

    Any help you can provide would be great.

    I would like to get the return tech to help you to...

    But it is likely that something (or someone) has tampered with the settings.

    The layout is fine... but you can cause problems with the network by creating a loop.

    This can happen because the AE you moved is connected wrongly... somewhere in the network it is connected to the switch again.

    Or AE is set to expand wireless... It's FAKE... It will loop the network on the back main EI wireless.

    Unplug the two AE you have that function as extensions...

    Turning off everything else... then it works again...

    Do it in this order.

    Modem... Wait 2 min

    AE... Wait 2 min

    Switch.

    Now check that the network is working properly... power of customers in various locations and make sure everything is good.

    If so, then manually reset the two AE of factory and redo their installation.

  • Need help with my Y40-80? power management

    I get message to the center of the Action as follows:

    Compatibility problem between your power management system and Windows

    Your power management system is not compatible with this version of Windows.

    The name of the model of your power management system is ACPI Lenovo compatible virtual controller.

    Can anyone help please. I have windows running Y40-80 8.1 is a clean install of windows 8.1 x 64 all drivers are up to this day, just need help with the question above thank you

    Lenovo today released a new bios update for Y40-80 laptops, I did the update and, so far, the error message that I posted above has not appeared again so set the mite of update of the bios not sure yet, I'll keep up to date on this subject and write again soon

Maybe you are looking for