본문 바로가기

Python_Matter

(328)
Python Learn the basics Quiz 96 Q> You have a device that uses a Seven-segment display to display 2 digit numbers. (7 세그먼트 디스플레이를 사용하여 두 자리 숫자를 표시하는 장치가 있습니다.) However, some of the segments aren't working and can't be displayed. (그러나 일부 세그먼트가 작동하지 않아 표시 할 수 없습니다.) You will be given information on the lit and broken segments. (조명 및 깨진 세그먼트에 대한 정보가 제공됩니다.) You won't know whether the broken segment is lit or not. (깨진 세그먼트가 켜져 있는지..
Python Learn the basics Quiz 95 Q> It was Sheldon's version and his best number. (셀던의 버전과 최고의 번호였습니다.) But you have the coding skills to prove that there is a better number, or prove Sheldon sheldon right. (그러나 더 나은 숫자가 있다는 것을 증명할 수있는 코딩 기술을 가지고 있거나 Sheldon Sheldon이 맞다는 것을 증명할 수 있습니다.) You can return any number, but use the code to prove your number is the best! (번호를 반환 할 수 있지만 번호를 증명하는 코드를 사용하십시오!) This mission is pretty simp..
Python Learn the basics Quiz 94 Q> Nicola regularly inspects the local networks for security issues. (Nicola는 정기적으로 로컬 네트워크에서 보안 문제를 검사합니다.) He uses a smart and aggressive program which takes control of computers on the network. (그는 네트워크상의 컴퓨터를 제어하는 ​​똑똑하고 공격적인 프로그램을 사용합니다.) This program attacks all connected computers simultaneously, then uses the captured computers for further attacks. (이 프로그램은 연결된 모든 컴퓨터를 동시에 공격 한 다음 캡처 된 컴..
Python Learn the basics Quiz 93 Q> On the chest keypad is a grid of numbered dots. (가슴 키패드에는 번호가 매겨진 점들로 구성된 격자가 있습니다.) The grid is comprised of a square shaped array of dots and contains lines that connect some pairs of adjacent dots. (그리드는 정사각형 모양의 도트 배열로 구성되며 인접한 도트 쌍을 ​​연결하는 선을 포함합니다.) The answer to the code is the number of squares that are formed by these lines. (코드에 대한 대답은이 선들에 의해 형성된 제곱의 수입니다.) For example, in the figu..
Python Learn the basics Quiz 92 Q> You are the owner of a cafe where 3 chefs work: a JapaneseCook, RussianCook and ItalianCook. (당신은 3 명의 요리사가 일하는 카페의 주인 인 JapaneseCook, RussianCook 및 ItalianCook입니다.) Each of them can prepare the national food and beverage: (그들 각각은 국가 음식과 음료를 준비 할 수 있습니다 : ) - JapaneseCook: Sushi and Tea;(초밥과 차; ) - RussianCook: Dumplings and Compote;( 만두와 콩트) - ItalianCook: Pizza and Juice.(피자와 주스. Your task ..
Python Learn the basics Quiz 91 Q> When it comes to city planning it's import to understand the borders of various city structures. (도시 계획에 관해서는 다양한 도시 구조의 경계를 이해하는 것이 수입입니다.) Parks, lakes or living blocks can be represented as closed polygon and can be described using cartesian coordinates on a map . (공원, 호수 또는 살아있는 블록은 닫힌 다각형으로 표현할 수 있으며지도의 직교 좌표를 사용하여 설명 할 수 있습니다.) We need functionality to determine is a point (a building o..
Python Learn the basics Quiz 90 Q> An IP network is a set of routers that communicate routing information using a protocol. (IP 네트워크는 프로토콜을 사용하여 라우팅 정보를 전달하는 라우터 세트입니다.) A router is uniquely identified by an IP address. (라우터는 IP 주소로 고유하게 식별됩니다. ) In IPv4, an IP address consists of 32 bits, canonically represented as 4 decimal numbers of 8 bits each. The decimal numbers range from 0 (00000000) to 255 (11111111). (IPv4에서 IP 주소는 ..
Python Learn the basics Quiz 89 Q> Friday 13th or Black Friday is considered as unlucky day. (금요일 13 일 또는 검은 금요일은 불행한 날로 간주됩니다.) Calculate how many unlucky days are in the given year. (주어진 해에 얼마나 많은 불행한 날이 오는지 계산하십시오.) Find the number of Friday 13th in the given year. (해당 연도의 13 번째 금요일 수를 찾습니다.) Input: Year as an integer. (정수로 표시된 연도입니다.) Output: Number of Black Fridays in the year as an integer. (연중 흑인 금요일 수를 정수로 나타냅니다.) Exam..