• AI글쓰기 2.1 업데이트
  • 통합검색(266)
  • 리포트(214)
  • 논문(37)
  • 시험자료(7)
  • 자기소개서(4)
  • 방송통신대(4)
판매자 표지는 다운로드시 포함되지 않습니다.

"error correction code." 검색결과 61-80 / 266건

  • 단일 비트플립 오류정정 기능을 갖는 증강된 Quantum Short-Block Code (Augmented Quantum Short-Block Code with Single Bit-Flip Error Correction)
    한국전자통신학회 박동영, 서상민, 김백기
    논문 | 10페이지 | 무료 | 등록일 2025.03.13 | 수정일 2025.03.28
  • 삼성 전자(화상면접자료)
    block codes (2)*Parameters of block codes (3)Ex) d = 3, 4  t = 1 : single error correcting (SEC) codes d ... = 5, 6  t = 2 : double error correcting (DEC) codes d = 7, 8  t = 3 : triple error correcting ... .*ContributionsMathematical Backgrounds Error correcting codes Finding “good codes” Analyze given codes Several
    Non-Ai HUMAN
    | 자기소개서 | 13페이지 | 5,000원 | 등록일 2020.05.24 | 수정일 2020.11.24
  • absolute C++ 5th edition 1,2장 연습문제 풀이
    ■ 교재 1장과 2장의 연습문제 풀이하여 제출1. Chapter 11. Give the declaration for two variables called feet and inches. Both variables are of type int and both are to be initialized to zero in the declaration. Give both initialization alternatives.▷소스 코드2. Give the declaration for two variables called count and distance. count is of type int and is initialized to zero. distance is of type double and is initialized to 1.5. Give both initialization alternatives.▷소스 코드3. Write a program that contains statements that output the values of five or six variables that have been defined, but not initialized. Compile and run the program. What is the output? Explain.▷소스 코드▷실행 결과4. Convert each of the following mathematical formulas to a C++ expression.▷소스 코드5. What is the output of the following program lines when they are embedded in a correct program that declares all variables to be of type char?a = 'b';b = 'c';c = a;cout < a < b < c < 'c';Output : bcbc6. What is the output of the following program lines when they are embedded in a correct program that declares number to be of type int?number = (1/3) * 3;cout < "(1/3) * 3 is equal to " < number;Output : (1/3) * 3 is equal to 0[int type 이므로 0*3=0]7. Write a complete C++ program that reads two whole numbers into two variables of type int and then outputs both the whole number part and the remainder when the first number is divided by the second. This can be done using the operators / and %.The answer to the question ofLife, the Universe, and Everything is 42.▷소스 코드▷실행 결과8. Given the following fragment that purports to convert from degrees Celsius to degrees Fahrenheit, answer the following questions:double c = 20;double f;f = (9/5) * c + 32.0;a. What value is assigned to fb. Explain what is actually happening, and what the programmer likely wanted.c. Rewrite the code as the programmer intended.b. 수정된 소스코드9. Give an output statement that will produce the following message on the screen.▷소스 코드10. Give an input statement that will fill the variable theNumber (of type int) with a number typed in at the keyboard. Precede the input statement with a prompt statement asking the user to enter a whole number.▷소스 코드11. What statements should you include in your program to ensure that when a number of type double is output, it will be output in ordinary notation with three digits after the decimal point?▷소스 코드12. Write a complete C++ program that writes the phrase Hello world to the screen. The program does nothing else.▷소스 코드13. Give an output statement that produces the letter 'A', followed by the newline character, followed by the letter 'B', followed by the tab character, followed by the letter 'C'.▷소스 코드14. The following code intends to input a user’'s first name, last name, and age.However, it has an error. Fix the code.string fullName;int age;cout < "Enter your first and last name." < endl;cin >> fullName;cout < "Enter your age." < endl;cin >> age;cout < "You are " < age < " years old, " < fullName < endl;▷수정된 소스 코드▷수정된 소스 코드15. What will the following code output?string s1 = "5";string s2 = "3";string s3 = s1 + s2;cout < s3 < endl;Output :53[숫자를 각각 string형으로 인식]2. Chapter 21. Determine the value, true or false, of each of the following Boolean expressions, assuming that the value of the variable count is 0 and the value of the variable limit is 10. Give your answer as one of the values true or false.a. (count = = 0) && (limit < 20)ANSWER : trueb. count = = 0 && limit < 20ANSWER : truec. (limit > 20) || (count < 5)ANSWER : trued. !(count = = 12)ANSWER : truee. (count = = 1) && (x < y)ANSWER : falsef. (count < 10) || (x < y)ANSWER : trueg. !( ((count < 10) || (x < y)) && (count >= 0) )ANSWER : falseh. ((limit / count) > 7) || (limit < 20)ANSWER : error [0(count)으로 나누었음]i. (limit < 20) || ((limit / count) > 7)ANSWER : falsej. ((limit / count) > 7) && (limit < 0)ANSWER : error [0(count)으로 나누었음]k. (limit < 0) && ((limit / count) > 7)ANSWER : false [앞 조건식이 false이므로 뒤 조건식을 판단하지 않음]l. (5 && 7) + (!6)ANSWER : true [결과가 0이 아니면 무조건 true]2. You sometimes see numeric intervals given as2
    Non-Ai HUMAN
    | 리포트 | 18페이지 | 2,500원 | 등록일 2020.10.10
  • 논리회로실험 예비보고서5
    and correct errors, and to credit properly the contributions of others;8. to treat fairly all persons ... this code of ethics.[실험5-Decoder & Encoder]1. 실험 목적디코딩(decoding)과 인코딩(encoding)의 코드 변환 동작에 관해 실험하고 그 ... -BCD 코드 : 코드란 특정한 형태의 정보를 다른 방법으로 표현하는 규칙으로 BCD 코드는 Binary-Coded Decimal code의 줄인말이다. 자기 보수 코드는 각
    Non-Ai HUMAN
    | 리포트 | 10페이지 | 1,500원 | 등록일 2020.09.18
  • 소프트웨어공학 프로젝트 최종 레포트 예시(Software Engineering, SE)
    ReliabilityBefore releasing, this program should be tested about lots of situations.When a user uploads the correct ... correct results with the user's postureshould be at least 90%.Users should not be logged out ... without request while using the system.This program should reduce code duplication less than 25% for not
    Non-Ai HUMAN
    | 리포트 | 19페이지 | 1,500원 | 등록일 2020.07.08 | 수정일 2020.09.01
  • 공룡 운영체제 3장 연습문제
    reated correctly the else statement will be executed. once the else statement is executed the code inside ... there will be two instances of the program running.The child process will inherit the code, global ... main(){pid t pid;/* fork a child process */pid = fork();if (pid < 0) { /* error occurred */fprintf(s
    Non-Ai HUMAN
    | 리포트 | 8페이지 | 1,000원 | 등록일 2019.06.01
  • 판매자 표지 자료 표지
    Design (15,k) linear block codes and compare their performance to the uncoded case
    를 의미한다. 이번 프로젝트는 (15,11) Linear Blcok Code, (15,8) Linear Blcok Code를 사용하였을 때 두 codeerror c ... 있으며로 위 code는 Single Error Correction code이다.이때 WER는 전체 확률에서 오류가 발생하지 않을 확률과 오류를 정정할 수 있는 확률을 빼주면 된다 ... bit error, 44개의 3bit error, 22개의 4bit error, 4개의 5bit error를 correct 할 수 있다. dmin = 4인 경우 15개의 1bit
    Non-Ai HUMAN
    | 리포트 | 12페이지 | 2,000원 | 등록일 2017.05.30
  • 아주대학교 논리회로실험 실험5 예비보고서
    acknowledge and correct errors, and to credit properly the contributions of others;8. to treat fairly all ... 코드(BCD code)로 변환시키는 10진-BCD인코더 등이 잘 알려져 있다.예를 들어 0∼9의 수를 나타내는 10개의 입력단자가 있고 그 가운데 1개에, 예를 들면 5를 나타내 ... this code of ethics.위 IEEE 윤리헌장 정신에 입각하여 report를 작성하였음을 서약합니다.과목명: 논리회로실험EXPERIMENT 5- Decoder
    Non-Ai HUMAN
    | 리포트 | 6페이지 | 1,500원 | 등록일 2019.02.20
  • 디지털논리회로실험(Verilog HDL) - SR Latch, Level-Sensitive D-latch, D Flip-Flop
    to verify its correct operation.(3) CodeFigure 5에 구현된 회로를 그대로 구현. D_latch의 코드는 part2에서 구현된 것과 동일 ... , do what we want?-How did someone come up with that circuit?Maybe just trail and error, a bit of ... Verilog file with the code and include it in the project.? Compile the code. Use the Quartus RTL
    Non-Ai HUMAN
    | 리포트 | 12페이지 | 1,000원 | 등록일 2019.08.29
  • 채혈하는 방법 예비 레포트
    kin. Collect tubes using the correct order of draw, and invert each tube containing any additive ... the correct information. The minimal amount of information that must be on each tube is as follows :a ... ollectione. Collector’s initials or code numberNOTE : Compare the labeled tube with the patient’s
    Non-Ai HUMAN
    | 리포트 | 4페이지 | 2,000원 | 등록일 2019.08.01
  • 논리회로실험 예비보고서8
    and correct errors, and to credit properly the contributions of others;8. to treat fairly all persons ... this code of ethics.[실험8-Counter]1. 실험 목적·카운터의 동작원리와 특성을 이해한다.·2진 시스템에서의 숫자표시와 2진 카운터에 대해 이해한다.·카운터 ... accepting a personal obligation to our profession, its members and the communities we serve, do hereby c
    Non-Ai HUMAN
    | 리포트 | 7페이지 | 1,500원 | 등록일 2020.09.18
  • 아주대학교 신호 및 시스템 Matlab 과제 3
    riticism of technical work, to acknowledge and correct errors, and to credit properly the contributions ... development and to support them in following this code of ethics.위 IEEE 윤리헌장 정신에 입각하여 report를 작성하였음을 서약합니다.학 ... 될 것이며, 그 함수를 FFT 한 후 IFFT 하면 원래의 함수가 복원될 것이다.? 실행 결과? 코드코드설명clear all % 전에 사용한 모든 변수를 제거한다.close
    Non-Ai HUMAN
    | 리포트 | 6페이지 | 1,500원 | 등록일 2019.08.02 | 수정일 2019.09.02
  • 아주대학교 논리회로실험 실험6 예비보고서
    acknowledge and correct errors, and to credit properly the contributions of others;8. to treat fairly all ... this code of ethics.위 IEEE 윤리헌장 정신에 입각하여 report를 작성하였음을 서약합니다.과목명: 논리회로실험EXPERIMENT 6- Decoder ... accepting a personal obligation to our profession, its members and the communities we serve, do hereby
    Non-Ai HUMAN
    | 리포트 | 7페이지 | 1,500원 | 등록일 2019.02.20
  • 프로그래밍 기초 및 실습 프로젝트 보고서
    and correct errors, and to credit properly the contributions of others;8. to treat fairly all persons ... this code of ethics.위 IEEE 윤리헌장 정신에 입각하여 report를 작성하였음을 서약합니다.학 부: 전자공학부제출일:과목명: 프로그래밍 기초 및 실습교수명:학 번 ... accepting a personal obligation to our profession, its members and the communities we serve, do hereby c
    Non-Ai HUMAN
    | 리포트 | 25페이지 | 1,000원 | 등록일 2019.05.14
  • 아주대학교 논리회로실험 실험8 예비보고서
    acknowledge and correct errors, and to credit properly the contributions of others;8. to treat fairly all ... this code of ethics.위 IEEE 윤리헌장 정신에 입각하여 report를 작성하였음을 서약합니다.학 부: 전자공학과과목명: 논리회로실험EXPERIMENT 8 ... accepting a personal obligation to our profession, its members and the communities we serve, do hereby
    Non-Ai HUMAN
    | 리포트 | 7페이지 | 1,500원 | 등록일 2019.02.20
  • 논리회로실험 예비보고서3
    REPORTIEEE Code of Ethics(출처: http://www.ieee.org)We, the members of the IEEE, in recognition of the importance of our technologies in affecting the quality of life throughout the world, and in accepting a personal obligation to our profession, its members and the communities we serve, do hereby commit ourselves to the highest ethical and professional conduct and agree:1. to accept responsibility in making decisions consistent with the safety, health and welfare of the public, and to disclose promptly factors that might endanger the public or the environment;2. to avoid real or perceived conflicts of interest whenever possible, and to disclose them to affected parties when they do exist;3. to be honest and realistic in stating claims or estimates based on available data;4. to reject bribery in all its forms;5. to improve the understanding of technology, its appropriate application, and potential consequences;6. to maintain and improve our technical competence and to undertake technological tasks for others only if qualified by training or experience, or after full disclosure of pertinent limitations;7. to seek, accept, and offer honest criticism of technical work, to acknowledge and correct errors, and to credit properly the contributions of others;8. to treat fairly all persons regardless of such factors as race, religion, gender, disability, age, or national origin;9. to avoid injuring others, their property, reputation, or employment by false or malicious action;10. to assist colleagues and co-workers in their professional development and to support them in following this code of ethics.[실험3-가산기&감산기]1. 실험 목적Logic gate를 이용해서 디지털 시스템의 기본 요소인 가산기와 감산기를 구성해보고기본 구조 및 동작원리를 이해한다.2. 실험에 대한 이론·가산기 : 두 개 이상의 입력을 이용하여 이들의 합을 출력하도록 하는 조합논리회로로, 반가산기와 전가산기로 나눌 수 있다.-반가산기2개의 비트 A와 B를 더해 합 S와 올림수 C를 출력하는 조합논리회로로 올림수와 합에 대한 부울 대수식을 표현하면C=A BULLETB,S=A OPLUSB와 같다.-전가산기2개의 비트 A, B와 하나의 자리올림수C _{i`n}를 더해 합 S와C _{out}를 출력하는 조합논리회로로C _{out}와 합에 대한 부울 대수식을 표현하면C _{out} =C _{i`n} (A OPLUSB)+AB,S=A OPLUSB OPLUSC _{i`n}와 같다.→반가산기는 XOR 게이트와 AND 게이트로 구성되며 전가산기는 반가산기 2개와 OR 게이트로 구성된다.·감산기 : 두 개 이상의 입력을 이용하여 이들의 차을 출력하도록 하는 조합논리회로로, 반감산기와 전감산기로 나눌 수 있다.-반감산기2개의 비트 X와 Y를 뺄셈하여 차 D와 빌림수 B를 출력하는 조합논리회로로 빌림수와 차에 대한 부울 대수식을 표현하면B =X prime BULLETY,D=X OPLUSY와 같다.-전감산기2개의 비트 X, Y와 빌림수B _{o}(아래자리에서 요구한 자리내림수)를 더해 차 D와 B를 출력하는 조합논리회로로 B와 차에 대한 부울 대수식을 표현하면D=X OPLUSY OPLUSB _{o},B=X primeY+(X OPLUSY)B _{o}와 같다.3. 실험부품-5V 전압원-저항-발광다이오드-IC>74HC04 : 2 input NOT gate>74HC08 : 2 input AND gate>74HC32 : 2 input OR gate>74HC86 : 2 input XOR gate4. 실험절차 및 예상결과-실험1) 반가산기 구성XOR(ic 7486) gate와 AND(ic 7408) gate를 이용하여 위의 회로를 구성하고 모든 입력 조합에 대해 올바른 결과가 나오는지 확인한다.·예상결과 : 실험1은 반가산기의 계산법과 진리표를 통해 부울 대수식을 만들어서 회로를 설계하고 모든 입력 조합에 대해 올바른 결과가 나오는 지 확인해보는 실험이었다. 올림수 C와 합 S에 대해 각 조합에 대해 연산을 해본 결과C=A BULLETB,S=A OPLUSB의 식을 얻을 수 있었고 따라서 아래와 같은 결과를 예상할 수 있다.ABSC*************101-실험2) 전가산기 구성두 개의 반가산기와 OR(ic 7432) gate를 이용하여 위의 회로를 구성하고 모든 입력 조합에 대해 올바른 결과가 나오는지 확인한다.·예상결과 : 실험2는 전가산기의 계산법과 진리표를 통해 부울 대수식을 만들어서 회로를 설계하고 모든 입력 조합에 대해 올바른 결과가 나오는 지 확인해보는 실험이었다.C _{out}와 합 S에 대해 각 조합에 대해 연산을 해본 결과C _{out} =C _{i`n} (A OPLUSB)+AB,S=A OPLUSB OPLUSC _{i`n}의 식을 얻을 수 있었고 따라서 아래와 같은 결과를 예상할 수 있다.ABC _{i`n}SC _{out}0000000110010100110110010101011100111111-실험3) 반감산기 구성XOR(ic 7486) gate와 AND(ic 7408) gate, NOT(ic 7404) gate를 이용하여 위의 회로를 구성하고 모든 입력 조합에 대해 올바른 결과가 나오는지 확인한다.·예상결과 : 실험3은 반감산기의 계산법과 진리표를 통해 부울 대수식을 만들어서 회로를 설계하고 모든 입력 조합에 대해 올바른 결과
    Non-Ai HUMAN
    | 리포트 | 8페이지 | 1,500원 | 등록일 2020.09.18
  • 채혈하기 결과 레포트
    tubes using the correct order of draw, and invert each tube containing any additive immediately after c ... single venipuncture. Its purpose is to avoid possible test result error because of cross-c ... waste? Label the tubes with the correct information. The minimal amount of information that must be on
    Non-Ai HUMAN
    | 리포트 | 4페이지 | 2,000원 | 등록일 2019.08.01
  • 아주대학교 신호 및 시스템 Matlab 과제 2
    . to seek, accept, and offer honest criticism of technical work, to acknowledge and correct errors ... o-workers in their professional development and to support them in following this code of ethics.위 ... 결과값이 나올 것이다.? 실행 결과? 코드코드설명clear all % 전에 사용한 모든 변수를 제거한다.close all % 전에 열려있는 모든 Figure를 제거한다.clc
    Non-Ai HUMAN
    | 리포트 | 10페이지 | 1,500원 | 등록일 2019.08.02 | 수정일 2019.09.02
  • 전회실험2 예보
    and correct errors, and to credit properly the contributions of others;8. to treat fairly all persons ... this code of ethics.[실험2-전압-전류 변환회로]1. 실험에 대한 이론-전압증폭기 : 비반전 연산증폭기의 회로로 안정된 전압 이득, 고입력, 저출력 임피던스를 가진다 ... accepting a personal obligation to our profession, its members and the communities we serve, do hereby c
    Non-Ai HUMAN
    | 리포트 | 8페이지 | 2,000원 | 등록일 2020.09.26
  • 전회실험3 예보
    and correct errors, and to credit properly the contributions of others;8. to treat fairly all persons ... this code of ethics.[실험3. 적분회로]1. 실험에 대한 이론-미분기 : 아래 왼쪽 회로는 미분기 회로이다. 커패시터 C대신 저항을 넣으면 기본반전 증폭기가 된다. 이 ... accepting a personal obligation to our profession, its members and the communities we serve, do hereby c
    Non-Ai HUMAN
    | 리포트 | 5페이지 | 2,000원 | 등록일 2020.09.26
해캠 AI 챗봇과 대화하기
챗봇으로 간편하게 상담해보세요.
2026년 03월 04일 수요일
AI 챗봇
안녕하세요. 해피캠퍼스 AI 챗봇입니다. 무엇이 궁금하신가요?
8:39 오전
문서 초안을 생성해주는 EasyAI
안녕하세요 해피캠퍼스의 20년의 운영 노하우를 이용하여 당신만의 초안을 만들어주는 EasyAI 입니다.
저는 아래와 같이 작업을 도와드립니다.
- 주제만 입력하면 AI가 방대한 정보를 재가공하여, 최적의 목차와 내용을 자동으로 만들어 드립니다.
- 장문의 콘텐츠를 쉽고 빠르게 작성해 드립니다.
- 스토어에서 무료 이용권를 계정별로 1회 발급 받을 수 있습니다. 지금 바로 체험해 보세요!
이런 주제들을 입력해 보세요.
- 유아에게 적합한 문학작품의 기준과 특성
- 한국인의 가치관 중에서 정신적 가치관을 이루는 것들을 문화적 문법으로 정리하고, 현대한국사회에서 일어나는 사건과 사고를 비교하여 자신의 의견으로 기술하세요
- 작별인사 독후감