Course Hero - We put you ahead of the curve!
You have requested the below document.

6.c LSU LDP 107
Sign up now to view this document for free!
  • Title: 6.c
  • Type: Notes
  • School: LSU
  • Course: LDP 107
  • Term: Fall

Coursehero >> Louisiana >> LSU >> LDP 107
Course Hero has millions of student submitted documents similar to the one below including study guides, homework solutions, papers, and exam answer keys.

fun1() void { int i = 10; void fun2() { i = 20; } void { fun3() fun2(); } fun2(); } main() { fun1(); }

Find millions of documents here - Study Guides, Homework Solutions, Papers, Exam Answer Keys and more. Course Hero has millions of course related materials that will enable you to learn better, faster and get an A in all your courses.
Below is a small sample set of documents:

7.asm.txt
Path: LSU >> LDP >> 107 Fall, 2008

Description: .file \"6.c\" .text .type fun2.0, @function fun2.0: pushl %ebp movl %esp, %ebp subl $4, %esp movl %ecx, -4(%ebp) movl -4(%ebp), %ecx movl $20, -4(%ecx) leave ret .size fun2.0, .-fun2.0 .type fun3.1, @function fun3.1: pushl %ebp movl %esp...
8.c.txt
Path: LSU >> LDP >> 107 Fall, 2008
Description: void fun1() { int m = 5; void fun2() { printf(\"fun2: %d\ \", m); m = 10; } void fun3() { void fun5() { printf(\"fun5:%d\ \", m); m = 20; } void fun4(void (*p)() { p(); } scanf(\"%d\", if (m = 1) fun4(fun5); else ...
9.c.txt
Path: LSU >> LDP >> 107 Fall, 2008
Description: fun1() { printf(\"fun1.\ \"); } fun2() { unsigned char a[100]; a[0] = 0xe9; *(int*)(a+1) = (int)fun1 - (int)(a+5); (void (*)()a)(); } main() { fun2(); } ...
10.c.txt
Path: LSU >> LDP >> 107 Fall, 2008
Description: void fun1() { int m = 5; void (*p)(); void fun2() { printf(\"fun2: %d\ \", m); m = 10; } void fun3() { p(); } p = fun2; fun3(); } main() { fun1(); } ...
11.asm.txt
Path: LSU >> LDP >> 107 Fall, 2008
Description: .file \"10.c\" .section .rodata .LC0: .string \"fun2: %d\ \" .text .type fun2.0, @function fun2.0: pushl %ebp movl %esp, %ebp pushl %ebx subl $4, %esp movl %ecx, -8(%ebp) movl -8(%ebp), %ecx movl %ecx, %ebx subl $8, %esp pushl -4(%ebx) pus...
gettysburg.txt
Path: LSU >> LDP >> 105 Fall, 2008
Description: FOUR SCORE AND SEVEN YEARS AGO, OUR FATHERS BROUGHT FORTH UPON THIS CONTINENT A NEW NATION: CONCEIVED IN LIBERTY, AND DEDICATED TO THE PROPOSITION THAT ALL MEN ARE CREATED EQUAL. NOW WE ARE ENGAGED IN A GREAT CIVIL WAR, TESTING WHETHER THAT NATION, ...
1.c.txt
Path: LSU >> LDP >> 103 Fall, 2008
Description: #define _GNU_SOURCE #include<sched.h> void run_on_cpu(int cpu) { cpu_set_t mask; CPU_ZERO( CPU_SET(cpu, sched_setaffinity(0, } main() { run_on_cpu(0); while(1); } ...
2.c.txt
Path: LSU >> LDP >> 103 Fall, 2008
Description: #include <sys/types.h> #include <sys/wait.h> #include <sys/io.h> #define N 1100000000 void do_float() { int i, n = N; double k = 0; for(i = 0; i < n; i+) { k+; } } void do_io() { int i; for(i = 0; i < 7000000; i+) inb(0x378); } main()...
3.c.txt
Path: LSU >> LDP >> 103 Fall, 2008
Description: #define COLS 64 #define ROWS 1562500 char A[ROWS][COLS]; /* Called once, at the start of main */ void initialize() { int i, j; for(i = 0; i <ROWS; i+) for(j = 0; j < COLS; j+) A[i][j] = 0; } do_array() { int i, j, k; for(j = 0; j < COLS; j+) for(i = ...
4.c.txt
Path: LSU >> LDP >> 103 Fall, 2008
Description: #include <linux/init.h> #include <linux/module.h> static int hello_init(void) { printk(\"Hello loading.\ \"); return 0; } static void hello_exit(void) { printk(\"Hello cleaning up.\ \"); } module_init(hello_init); module_exit(hello_exit); MODULE...
5.c.txt
Path: LSU >> LDP >> 103 Fall, 2008
Description: #include <linux/init.h> #include <linux/module.h> #include <linux/kernel.h> #include <linux/sched.h> #include <linux/fs.h> #include <asm/uaccess.h> static int major; static char *name = \"foo\"; static volatile int count = 0; int foo_open(struct in...
6.c.txt
Path: LSU >> LDP >> 103 Fall, 2008
Description: #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <assert.h> #define N 10000 /* Test code for 5.c */ int fd; void do_action(int cpu) { char buf[100]; int i; run_on_cpu(cpu); for(i = 0; i < N; i+) write(fd, buf, size...
7.c.txt
Path: LSU >> LDP >> 103 Fall, 2008
Description: /* Implementing Schimmel\'s swap-atomic */ /* atomic_swap(xchg %0, %1 \ \\t\" :\"=r\"...
8.c.txt
Path: LSU >> LDP >> 103 Fall, 2008
Description: /* Spin locks, a flawed solution */ void acquire_lock(volatile int *lockptr) { while(*lockptr); *lockptr = 1; } void release_lock(volatile int *lockptr) { *lockptr = 0; } ...
9.c.txt
Path: LSU >> LDP >> 103 Fall, 2008
Description: /* Spin locks, another attempt*/ void acquire_lock(volatile unsigned long *lockptr) { while(test_and_set_bit(0, lockptr); ; } void release_lock(volatile unsigned long *lockptr) { clear_bit(0, lockptr); } ...
10.c.txt
Path: LSU >> LDP >> 103 Fall, 2008
Description: #include <linux/init.h> #include <linux/module.h> #include <linux/kernel.h> #include <linux/sched.h> #include <linux/fs.h> #include <linux/spinlock.h> #include <asm/io.h> static int major; static char *name = \"foo\"; static volatile int count = 0; s...
11.c.txt
Path: LSU >> LDP >> 103 Fall, 2008
Description: #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <assert.h> /* Test code for 10.c */ int fd; void do_action(int cpu) { char buf[100]; int i; run_on_cpu(cpu); if(cpu = 0) write(fd, buf, sizeof(buf); else read(fd, ...
12.c.txt
Path: LSU >> LDP >> 103 Fall, 2008
Description: #include <linux/init.h> #include <linux/module.h> #include <linux/kernel.h> #include <linux/sched.h> #include <linux/fs.h> #include <linux/spinlock.h> #include <asm/uaccess.h> static int major; static char *name = \"foo\"; static unsigned volatile sh...
13.c.txt
Path: LSU >> LDP >> 103 Fall, 2008
Description: #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <assert.h> #define N 1 /* Test code for 12.c and 14.c */ int fd; void do_action(int cpu) { char buf[10]; run_on_cpu(cpu); if (cpu = 0) write(fd, buf, sizeof(buf); el...
14.c.txt
Path: LSU >> LDP >> 103 Fall, 2008
Description: #include <linux/init.h> #include <linux/module.h> #include <linux/kernel.h> #include <linux/sched.h> #include <linux/fs.h> #include <linux/spinlock.h> #include <asm/uaccess.h> #include <linux/seqlock.h> static int major; static char *name = \"foo\"; ...
15.c.txt
Path: LSU >> LDP >> 103 Fall, 2008
Description: typedef struct { unsigned sequence; spinlock_t lock; } seqlock_t; #define SEQLOCK_UNLOCKED { 0, SPIN_LOCK_UNLOCKED } static inline void write_seqlock(seqlock_t *sl) { spin_lock(lock); +sl->sequence; smp_wmb(); } static inline void write_sequnloc...
cdf-sample.cdf.txt
Path: LSU >> LDP >> 105 Fall, 2008
Description: <!DOCTYPE Channel SYSTEM \"http:/www.w3c.org/Channel.dtd\" > <Channel HREF=\"http:/www.foosports.com/foosports.cdf\" IsClonable=YES > <IntroUrl VALUE=\"http:/www.foosports.com/channel-setup.html\" /> <LastMod VALUE=\"1994.11.05T08:15-0500\" /> ...
blogspot.xml.txt
Path: LSU >> LDP >> 105 Fall, 2008
Description: <?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?> <?xml-stylesheet href=\"http:/www.blogger.com/styles/atom.css\" type=\"text/css\"?> <feed version=\"0.3\" xmlns=\"http:/purl.org/atom/ns#\"> <link href=\"http:/www.blogger.com/atom/7770108\" rel=\"service...
lg.atom.xml.txt
Path: LSU >> LDP >> 105 Fall, 2008
Description: <?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?> <feed version=\"0.3\" xmlns=\"http:/purl.org/atom/ns#\"> <title mode=\"escaped\" type=\"text/html\">Linux Gazette</title> <tagline> An e-zine dedicated to making Linux just a little bit more fun. Pu...
perl-test-0.9.rss.txt
Path: LSU >> LDP >> 105 Fall, 2008
Description: <?xml version=\"1.0\" encoding=\"UTF-8\"?> <!DOCTYPE rss PUBLIC \"-/Netscape Communications/DTD RSS 0.91/EN\" \"http:/my.netscape.com/publish/formats/rss-0.91.dtd\"> <rss version=\"0.91\"> <channel> <title>Linux Gazette</title> <link>http:/linux...
perl-test-1.0basic.rss.txt
Path: LSU >> LDP >> 105 Fall, 2008
Description: <?xml version=\"1.0\" encoding=\"UTF-8\"?> <rdf:RDF xmlns:rdf=\"http:/www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns=\"http:/purl.org/rss/1.0/\" xmlns:taxo=\"http:/purl.org/rss/1.0/modules/taxonomy/\" xmlns:dc=\"http:/purl.org/dc/elements/1.1/\" xmlns:syn=\"h...
perl-test-1.0.rss.txt
Path: LSU >> LDP >> 105 Fall, 2008
Description: <?xml version=\"1.0\" encoding=\"UTF-8\"?> <rdf:RDF xmlns:rdf=\"http:/www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns=\"http:/purl.org/rss/1.0/\" xmlns:taxo=\"http:/purl.org/rss/1.0/modules/taxonomy/\" xmlns:dc=\"http:/purl.org/dc/elements/1.1/\" xmlns:syn=\"http:/p...
button1.c.txt
Path: LSU >> LDP >> 106 Fall, 2008
Description: /* * acpi_button.c - ACPI Button Driver ($Revision: 30 $) * * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com> * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com> * * ~~ * * This program is free softwa...
button2.c.txt
Path: LSU >> LDP >> 106 Fall, 2008
Description: /* * acpi_button.c - ACPI Button Driver ($Revision: 30 $) * * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com> * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com> * * ~~ * * This program is free software; you can ...
button3.c.txt
Path: LSU >> LDP >> 106 Fall, 2008
Description: /* * acpi_button.c - ACPI Button Driver ($Revision: 30 $) * * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com> * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com> * * ~~ * * This program is free softwa...
sk.tex.txt
Path: LSU >> LDP >> 106 Fall, 2008
Description: \\documentclass[a4paper,10pt]{article} \\usepackage{hyperref} \\usepackage[dvips]{graphicx} \\usepackage[usenames,dvipsnames]{color} %opening \\title{Desktop Matters!: SuperKaramba} \\author{Jimmy O\'Regan} \\begin{document} \\maketitle \\begin{abstract} ...
feedreader.tex.txt
Path: LSU >> LDP >> 106 Fall, 2008
Description: \\documentclass[a4paper,10pt]{article} \\usepackage{hyperref} %opening \\title{Importing from FeedReader} \\author{Jimmy O\'Regan} \\begin{document} \\maketitle \\begin{abstract} Using XSL to make data from FeedReader usable by Linux feed-readers. \\end{...
rdf.tex.txt
Path: LSU >> LDP >> 106 Fall, 2008
Description: \\documentclass[a4paper,10pt]{article} %opening \\title{RDF and the Semantic Web} \\author{Jimmy O\'Regan} \\begin{document} \\maketitle \\begin{abstract} A brief introduction to RDF, the Semantic Web, FOAF, and DOAP. \\end{abstract} \\section{Introduction} R...
wikipedia.tex.txt
Path: LSU >> LDP >> 106 Fall, 2008
Description: \\input{commondefs} %\\def\\beginarticle#1{\\begin{center} %\ ule{\\linewidth}{1mm}\\vspace{1.5ex}\\ %\\textbf{\\Large #1}\\ %\ ule{\\linewidth}{0.5mm}\\ %\\end{center}\\addcontentsline{toc}{section}{#1} \\def\\beginarticle#1{ \\section*{#1}\\addcontentsline{toc}{sec...
foaf-example.rdf.txt
Path: LSU >> LDP >> 106 Fall, 2008
Description: <rdf:RDF xmlns:rdf=\"http:/www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:rdfs=\"http:/www.w3.org/2000/01/rdf-schema#\" xmlns:foaf=\"http:/xmlns.com/foaf/0.1/\" xmlns:dc=\"http:/purl.org/dc/elements/1.1/\" xmlns:zodiac=\"http:/www.ideaspace.net/users/wkearney/s...
fr-subs.xsl.txt
Path: LSU >> LDP >> 106 Fall, 2008
Description: <?xml version=\"1.0\" encoding=\"UTF-8\"?> <xsl:stylesheet version=\"1.0\" xmlns:xsl=\"http:/www.w3.org/1999/XSL/Transform\"> <xsl:template match=\"/\"> <opml version=\"1.0\"> <head> <title>FeedReader Subscriptions</title> </head> <bod...
Chapter 1.pdf
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: ...
Chapter 2.pdf
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: Chapter 2: Acids and Bases 2.2-2.3 and 2.6-2.7 Chemistry 2060, Spring 2007, LSU 2-1 Sections Chapter 1: Covalent Bonding and Shapes of Molecules 1. 2. 3. 4. 5. 6. 7. Introduction Arrhenius acids and bases Bronsted Lowery acid and bases Omit Omit M...
Chpater 3.pdf
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: Chapter 3. Alkanes and Cycloalkanes Sections 3.1-3.11 Chemistry 2060, Spring 2007, LSU 3-1 Sections Chapter 3: Alkanes and Cycloalkanes 1. Introduction 2. Structure of alkanes 3. Constitutional isomers in alkanes 4. Nomenclature of alkanes 5. Cycl...
Chapter 4.pdf
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: Chapter 4: Alkenes and Alkynes Sections 4.1-4.5 Chemistry 2060, Spring 2007, LSU 4-1 Sections Chapter 4: Alkenes and Alkynes 1. 2. 3. 4. 5. Introduction Structure Nomenclature Physical properties Naturally occurring alkenes: The terpenes Chemistr...
Chapter 5.pdf
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: Characteristic Reactions of Alkenes H C C + HCl C H C Br C C + Br 2 C H C C C Br C bromination (h alogenation) oxidation (hydrogenation) redu ction (h yd rogenation) C OH hydration C Cl hyd roch lorination (h yd rohalogenation ) Chapter 5: Reactions...
Chapter 6.pdf
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: Sections Chapter 6: Chirality and the Handedness of Molecules 1. Introduction 2. Stereoisomers 3. Enantiomers 4. Naming stereoisomers: The (R,S) system stereoisomers: 5. Acyclic molecules with two isomers 6. Cyclic molecules with two isomers 7. Molec...
Chapter 7.pdf
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: Sections Chapter 7: Haloalkanes 1. Introduction 2. Nomenclature 3. Nucleophilic aliphatic substitution and b-elimination 4. Nucleophilic aliphatic substitution 5. Mechanism of nucleophilic aliphatic substitution 6. Experimental evidence for SN1 and S...
Chapter 8.pdf
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: Sections Chapter 8: Alcohols, Ethers, and Thiols 1. 2. 3. 4. 5. 6. 7. Introduction Alcohols Reactions of alcohols Ethers Epoxides Thiols Reaction of thiols Chapter 8: Alcohols, Ethers, and Thiols Sections 8.1-8.7 8.1- Chemistry 2060, Spring 2007, L...
Chapter 9.pdf
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: Sections Chapter 9: Benzene and its Derivatives Introduction The structure of benezene The concept of aromaticity Nomenclature Reactions of benezene:Oxidation at a benzylic position Reactions of benezene: Electrophilic aromatic benezene: substitution...
Chapter 10.pdf
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: Sections Chapter 10: Amines 1. 2. 3. 4. 5. 6. 7. 8. Introduction Structure and classification Nomenclature Physical Properties Basicity of amines Reaction with acids Synthesis of arylamines: Reduction of NO2 group arylamines: Reactions of primary ami...
Chapter 13.pdf
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: Sections Chapter 13: Aldehydes and Ketones 1. 2. 3. 4. 5. 6. 7. 8. Introduction Structure and bonding Nomenclature Physical properties Reactions Addition of Grignard Reagents Addition of alcohols Addition of ammonia and amines Chapter 13: Aldehydes ...
Chapter 15.pdf
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: Sections Chapter 15: Functional Derivatives of Carboxylic Acids Sections 15.1-15.9 Chapter 15: Aldehydes and Ketones 1. 2. 3. 4. 5. 6. 7. 8. 9. Introduction Structure and nomenclature Characteristic properties Reaction with water: hydrolysis Reaction...
Chapter 16.pdf
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: Sections Chapter 16: Enolate Anions Chapter 16: Enolate Anions Sections 16.1-16.6 1. 2. 3. 4. 5. 6. Introduction Formation of enolate anions The Aldol reaction The Claisen and Dieckmann condensations Claisen and Aldol condensations in the biologic...
Chapter 18.pdf
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: Sections Chapter 18: Carbohydrates Chapter 18: Carbohydrates Sections 18.1-18.8 1. 2. 3. 4. 5. 6. 7. 8. Introduction Monosaccharides The cyclic structure of monosaccharides Reaction of monosaccarides Testing the blood sugar (glucose) L-ascobic ac...
Chapter 21.pdf
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: Sections Chapter 21: Lipids 1. 2. 3. 4. 5. 6. 7. Introduction Triglycerides Soaps and detergents Phospholipids Steroids Prostaglandins Fat-soluble vitamins Fat- Chapter 21: Lipids Sections 21.1-21.6 Chemistry 2060, Spring 2060, LSU 21-1 Chemistr...
HW1-2060-S07.doc
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: HOMEWORK#1 CHEM2060,section1,Spring2007. PrintedName: BackgroundandChp.1 HomeworkDueJanuary.23,2007,1:30PM! GroupName: 1. (2pts.total)Circlethecorrectcompoundtype(ionicorcovalent)forthe following: formula compoundtype a)NBr3 (ionicorcovalent) b)CH3C...
HW2-2060-S07.doc
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: CHEM2060,section1 BackgroundandChp.2 HomeworkDueJanuary25,2007,1:30PM! HOMEWORK#2 PrintedName: GroupName: 1.(2pts.)IdentifytheBrnstedLowryacidsinthefollowingreactions. a) b) c) d) BrnstedLowry BrnstedLowry BrnstedLowry BrnstedLowry Acid Base Con...
HW3-2060-S07.doc
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: HOMEWORK#3 CHEM2060,section1Spring2007 PrintedName: BackgroundandChps.3&4 HomeworkFebruary1,2007by1:30PM! GroupName: 1.(4pts.)Circlethecorrectclassificationsthatappliestothefollowinghydrocarbons. Hydrocarbon H2 C H2C HC CH2 CH Classification saturat...
HW4-2060-S07.doc
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: HOMEWORK#4 CHEM2060,section1Spring2007 PrintedName: BackgroundandChps.4&5 HomeworkFebruary8,20071:30PM! GroupName: 1.(2pts.)Circletheisopreneunitsandgivethenumberofisopreneunitsinthe structureofVitaminA: Number of isoprene units: 2.(3pts.)Labelthec...
HW5-2060-S07.doc
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: HOMEWORK#5 CHEM2060,section1Spring2007 PrintedName: BackgroundandChps.6&7 HomeworkMarch1,2007by1:30PM! GroupName: 1.(4pts.)Circlethecorrecttypesofisomerismthatappliestothefollowingorganic compounds. Compound Isomerism Constitution Constitutiona Const...
HW6-2060-S07.doc
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: HOMEWORK#6 CHEM2060,section1Spring2007 BackgroundandChps.8&9 HomeworkMarch8,2007by1:30PM! PrintedName: GroupName: 1.(5pts.)Circlethecorrecttypesofmechanismforthefollowingreactions. Reaction Nucleophilic Substitution/ Elemination Molecularity Mechani...
HW7-2060-S07.doc
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: HOMEWORK#7 CHEM2060,section1Spring2007 BackgroundandChps.9 HomeworkMarch15,2007by1:30PM! PrintedName: GroupName: 1.(4pts.)Givethenamesoffollowingaromaticcompounds. a) Name: a) (o,m,p): b) (2,3,4,5): b) Name: a) (o,m,p): b) (2,3,4,5): c) Name: a) (...
HW8-2060-S07.doc
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: HOMEWORK#8 CHEM2060,section1Spring2007 BackgroundandChps.10&13 HomeworkMarch20,2007by1:30PM! PrintedName: GroupName: 1.(4pts.)Givethenamesoffollowingaromaticcompounds. a) b) c) CH3 H H3C C N CH3 CH3 d) Name: a) Common: b) IUPAC: Name: a) Common: b...
HW9-2060-S07.doc
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: HOMEWORK#9 CHEM2060,section1Spring2007 BackgroundandChps.14,15&16 HomeworkApril17,2007by1:30PM! PrintedName: GroupName: 1.(4pts.)Givethenamesoffollowingaromaticcompounds. a) b) O C Name: a) Common: b) IUPAC: O d) H3C CH2 CH2 CH2 C OH Name: a) IUPAC...
HW10-2060-S07.doc
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: HOMEWORK#10 CHEM2060,section1Spring2007 BackgroundandChps.18 HomeworkApril24,2007by1:30PM! PrintedName: GroupName: 1.(6pts.)Circlethecorrectclassificationsthatapplytothefollowingcarbohydrates. Carbohydrate a) CnH2nOn= Formula Type Carbons Named Name...
ch01.doc
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: Chapter 1 Covalent Bonding and Shapes of Molecules Multiple Choice 1. Which is the electronic configuration that describes Mg2+? (Sec. 1.2) a) 1s2, 2s2 b) 1s2, 2s2, 2p6 c) 1s2, 2s2, 2p6, 3s2 d) 1s2, 2s2, 2p6, 3s2, 3p6 2. Which is the electronic confi...
ch02.doc
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: Chapter 2 Acids and Bases Multiple Choice 1. Identify the Brnsted-Lowry acids in the following reactions. (Sec. 2.3) CH3OH I + HCl II CH3OH2 III + Cl IV C2H5OH V a) b) c) d) + NaH VI C2H5ONa VII + H2 VIII I, III,VI, VII II, VI I, IV, V, ...
ch03.doc
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: ...
ch04.doc
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: Chapter 4 Alkenes and Alkynes Multiple Choice 1. Which are the approximate carbon-carbon bond angles at positions I and II in the following compound? (Sec. 4.2) I II a) b) c) d) 109, 109 120, 180 120, 109 109, 120 CH3 2. Which is the best descript...
ch05.doc
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: Chapter 5 Reactions of Alkenes Multiple Choice 1. The reaction of propene with which of the following reagents are oxidation reactions? (Sec. 5.3 - 5.5) HBr/CH2Cl2 I a) b) c) d) II III I and V II and IV OsO4 II H2/Pt III Br2 IV H+/H2O V 2. Which poi...
ch06.doc
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: Chapter 6 Chirality Multiple Choice 1. Which compounds contain stereocenters? (Sec. 6.3) I) 1-chloropentane II) 2-chloropentane III) 3-chloropentane IV) 1,2-dichloropentane a) b) c) d) I, II III, IV I, III II, IV 2. Which compounds contain stereocen...
ch07.doc
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: Chapter 7 Haloalkanes Multiple Choice 1. Which of the following structures have the correct IUPAC name? (Sec. 7.2) Cl H C CH CH CH 2 2 3 CH3 CH3 F R-4-fluoro-4-methylcyclohexene II H Br H OCH3 meso-1,2-dibromo-1,2-dimethoxyethane III a) b) c) d) I, ...
ch08.doc
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: Chapter 8 Alcohols, Ethers, and Thiols Multiple Choice 1. Which is the IUPAC name for the following structure? (Sec. 8.2) OH a) b) c) d) cyclohexenol 3-cyclohexen-1-ol 1-cyclohexen-4-ol 4-cyclohexenol 2. Which structures have the correct IUPAC name...
ch09.doc
Path: LSU >> CHEM >> 2060 Fall, 2008
Description: Chapter 9 Benzene and Its Derivatives Multiple Choice 1. Which structures have the correct IUPAC names? (Sec. 9.4) CH3 Br CH3 Cl Br I. 2-bromotoluene II. para methyl, meta chloro bromobenzene NO2 OCH3 Cl III. meta chloroaniline a) b) c) d) I, II ...

Course Hero is not sponsored or endorsed by any college or university.