Dataset Viewer
Auto-converted to Parquet
question_id
int64
6
6.85k
course_id
int64
0
15.1k
course_domain
stringclasses
3 values
course_type
stringclasses
3 values
question
stringlengths
6
1.87k
choices
sequencelengths
4
4
correct_answer
stringlengths
1
393
correct_answer_idx
int64
0
3
query
stringlengths
183
2.38k
gold_index
int64
-1
-1
instruction
stringclasses
1 value
6
15,005
Computer Science
bachelor
Which of the following are correct implementation for acquire function ? Assume 0 means UNLOCKED and 1 means LOCKED. Initially l->locked = 0.
[ "A. c \n void acquire(struct lock *l)\n {\n for(;;)\n if(xchg(&l->locked, 1) == 0)\n return;\n }", "B. c \n void acquire(struct lock *l)\n {\n if(cas(&l->locked, 0, 1) == 0)\n return;\n }", "C. c \n void acquire(struct lock *l)\n {\n for(;;)\n if(cas(&l->locked, 1, 0) == 1)\n return;\n }", "D. c \n void acquire(struct lock *l)\n {\n if(l->locked == 0) \n return;\n }" ]
c void acquire(struct lock *l) { for(;;) if(xchg(&l->locked, 1) == 0) return; }
0
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Which of the following are correct implementation for acquire function ? Assume 0 means UNLOCKED and 1 means LOCKED. Initially l->locked = 0. A. c void acquire(struct lock *l) { for(;;) if(xchg(&l->locked, 1) == 0) return; } B. c void acquire(struct lock *l) { if(cas(&l->locked, 0, 1) == 0) return; } C. c void acquire(struct lock *l) { for(;;) if(cas(&l->locked, 1, 0) == 1) return; } D. c void acquire(struct lock *l) { if(l->locked == 0) return; } Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
8
15,005
Computer Science
bachelor
Suppose we run JOS and set a breakpoint at syscall (in lib/syscall.c). What are the Current Privilege Level (CPL) before invoking the syscall function and after executing the int 0x30 instruction?
[ "A. 0 3", "B. 0 0", "C. 3 0", "D. 3 3" ]
3 0
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Suppose we run JOS and set a breakpoint at syscall (in lib/syscall.c). What are the Current Privilege Level (CPL) before invoking the syscall function and after executing the int 0x30 instruction? A. 0 3 B. 0 0 C. 3 0 D. 3 3 Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
9
15,005
Computer Science
bachelor
Given that JOS has correctly initialized the IDT and installed all the interrupt handlers. Which of the following will JOS do if the CPU with CPL = 3 tries to read the memory in data segment with DPL = 0?
[ "A. Calling the Page Fault Handler.", "B. Calling the General Protection Fault handler.", "C. Shuting down the system .", "D. Reading out the memory content successfully." ]
Calling the General Protection Fault handler.
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Given that JOS has correctly initialized the IDT and installed all the interrupt handlers. Which of the following will JOS do if the CPU with CPL = 3 tries to read the memory in data segment with DPL = 0? A. Calling the Page Fault Handler. B. Calling the General Protection Fault handler. C. Shuting down the system . D. Reading out the memory content successfully. Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
30
15,005
Computer Science
bachelor
Assume a 32-bit architecture with a single-level page table. Each entry has 20 bits for PPN, 12 bits for permissions, and extra 32 bits used by the OS to store the access time of the page table entry. What is the size of page table required if a process uses all of its memory? (2 pts)
[ "A. 2 MB", "B. 4 MB", "C. 8 MB", "D. 16 MB" ]
8 MB
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Assume a 32-bit architecture with a single-level page table. Each entry has 20 bits for PPN, 12 bits for permissions, and extra 32 bits used by the OS to store the access time of the page table entry. What is the size of page table required if a process uses all of its memory? (2 pts) A. 2 MB B. 4 MB C. 8 MB D. 16 MB Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
37
15,005
Computer Science
bachelor
Can there be a race condition in a multi-threaded application running on a single-core machine and multi-core machine?
[ "A. Single-core: Yes, Multi-core: Yes", "B. Single-core: Yes, Multi-core: No", "C. Single-core: No, Multi-core: Yes", "D. Single-core: No, Multi-core: No" ]
Single-core: Yes, Multi-core: Yes
0
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Can there be a race condition in a multi-threaded application running on a single-core machine and multi-core machine? A. Single-core: Yes, Multi-core: Yes B. Single-core: Yes, Multi-core: No C. Single-core: No, Multi-core: Yes D. Single-core: No, Multi-core: No Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
47
15,005
Computer Science
bachelor
Suppose a file system used only for reading immutable files in random fashion. What is the best block allocation strategy?
[ "A. Linked-list allocation", "B. Continuous allocation", "C. Index allocation with B-tree", "D. Index allocation with Hash-table" ]
Continuous allocation
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Suppose a file system used only for reading immutable files in random fashion. What is the best block allocation strategy? A. Linked-list allocation B. Continuous allocation C. Index allocation with B-tree D. Index allocation with Hash-table Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
61
15,005
Computer Science
bachelor
Which flag prevents user programs from reading and writing kernel data?
[ "A. PTE_P", "B. PTE_U", "C. PTE_D", "D. PTE_W" ]
PTE_U
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Which flag prevents user programs from reading and writing kernel data? A. PTE_P B. PTE_U C. PTE_D D. PTE_W Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
63
15,005
Computer Science
bachelor
What data structure is used for tracking free data blocks in ext3/4 file system?
[ "A. Linked-list", "B. Bitmap", "C. Heap", "D. Stack" ]
Bitmap
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What data structure is used for tracking free data blocks in ext3/4 file system? A. Linked-list B. Bitmap C. Heap D. Stack Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
70
15,005
Computer Science
bachelor
In JOS, which of the following does NOT happen during the execution of a system call? (Including the period of entering kernel, executing kernel function, and exiting kernel.)
[ "A. The kernel pushes Env’s cs and eip register on the kernel stack.", "B. The CPU reads the interrupt handler address from IDT.", "C. The kernel executes iret to return to user mode.", "D. The kernel switches from Env's page table to the kernel's page table, by loading cr3 register." ]
The kernel switches from Env's page table to the kernel's page table, by loading cr3 register.
3
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. In JOS, which of the following does NOT happen during the execution of a system call? (Including the period of entering kernel, executing kernel function, and exiting kernel.) A. The kernel pushes Env’s cs and eip register on the kernel stack. B. The CPU reads the interrupt handler address from IDT. C. The kernel executes iret to return to user mode. D. The kernel switches from Env's page table to the kernel's page table, by loading cr3 register. Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
78
15,005
Computer Science
bachelor
Which of the execution of an application are possible on a single-core machine?
[ "A. Concurrent execution", "B. Parallel execution", "C. Both concurrent and parallel execution", "D. Neither concurrent or parallel execution" ]
Concurrent execution
0
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Which of the execution of an application are possible on a single-core machine? A. Concurrent execution B. Parallel execution C. Both concurrent and parallel execution D. Neither concurrent or parallel execution Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
86
15,005
Computer Science
bachelor
In JOS, suppose a value is passed between two Envs. What is the minimum number of executed system calls?
[ "A. 1", "B. 2", "C. 3", "D. 4" ]
2
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. In JOS, suppose a value is passed between two Envs. What is the minimum number of executed system calls? A. 1 B. 2 C. 3 D. 4 Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
87
15,005
Computer Science
bachelor
What strace tool does?
[ "A. It prints out system calls for given program. These system calls are always called when executing the program.", "B. It prints out system calls for given program. These systems calls are called only for that particular instance of the program.", "C. To trace a symlink. I.e. to find where the symlink points to.", "D. To remove wildcards from the string." ]
It prints out system calls for given program. These systems calls are called only for that particular instance of the program.
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What strace tool does? A. It prints out system calls for given program. These system calls are always called when executing the program. B. It prints out system calls for given program. These systems calls are called only for that particular instance of the program. C. To trace a symlink. I.e. to find where the symlink points to. D. To remove wildcards from the string. Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
233
15,016
Physics
online
What is true about reducing phase-encoding steps? (i.e how can we reduce phase encoding step and what is its effect)
[ "A. Increasing k-space spacing - leads to worse resolution", "B. Dropping peripheral k-space lines (dropping scan percentage) – leads to smaller FOV", "C. Half-Fourier acquisition – leads to worse resolution", "D. Reducing phase-encoding steps leads to worse SNR" ]
Reducing phase-encoding steps leads to worse SNR
3
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What is true about reducing phase-encoding steps? (i.e how can we reduce phase encoding step and what is its effect) A. Increasing k-space spacing - leads to worse resolution B. Dropping peripheral k-space lines (dropping scan percentage) – leads to smaller FOV C. Half-Fourier acquisition – leads to worse resolution D. Reducing phase-encoding steps leads to worse SNR Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
237
15,016
Physics
online
When the RF pulse stops, protons...
[ "A. Dephase according to \\(T_2^*\\) and recover along \\(\\vec B_0\\) according to \\(T_1\\)", "B. Dephase according to \\(T_1\\) and recover along \\(\\vec B_0\\) according to \\(T_2^*\\)", "C. Dephase according to \\(T_1\\) and recover along \\(\\vec B_0\\) according to \\(T_2\\)", "D. Dephase according to \\(T_2\\) and recover along \\(\\vec B_0\\) according to \\(T_1\\)" ]
Dephase according to \(T_2^*\) and recover along \(\vec B_0\) according to \(T_1\)
0
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. When the RF pulse stops, protons... A. Dephase according to \(T_2^*\) and recover along \(\vec B_0\) according to \(T_1\) B. Dephase according to \(T_1\) and recover along \(\vec B_0\) according to \(T_2^*\) C. Dephase according to \(T_1\) and recover along \(\vec B_0\) according to \(T_2\) D. Dephase according to \(T_2\) and recover along \(\vec B_0\) according to \(T_1\) Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
253
15,016
Physics
online
Diffusion is typically NOT restricted by...
[ "A. Intracellular water", "B. Extracellular water", "C. Pus", "D. Tumor cells" ]
Extracellular water
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Diffusion is typically NOT restricted by... A. Intracellular water B. Extracellular water C. Pus D. Tumor cells Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
255
15,013
Physics
online
What is one of the major problem encountered with Emission Tomography?
[ "A. Bad CNR", "B. Inefficient detection of X-rays", "C. Attenuation", "D. High cost of exam" ]
Attenuation
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What is one of the major problem encountered with Emission Tomography? A. Bad CNR B. Inefficient detection of X-rays C. Attenuation D. High cost of exam Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
256
15,013
Physics
online
Compartmental modeling and tracers studies have application in different areas such as...
[ "A. Drug kinetics in pharmacology", "B. Studies of metabolic systems", "C. Analysis of ecosystem", "D. Chemical reaction kinetics" ]
Drug kinetics in pharmacology
0
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Compartmental modeling and tracers studies have application in different areas such as... A. Drug kinetics in pharmacology B. Studies of metabolic systems C. Analysis of ecosystem D. Chemical reaction kinetics Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
258
15,013
Physics
online
What information does a Doppler shift provide?
[ "A. Flow", "B. Cardiac output", "C. Velocity", "D. Speed" ]
Velocity
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What information does a Doppler shift provide? A. Flow B. Cardiac output C. Velocity D. Speed Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
262
15,033
Physics
online
How many lines are there in the 1H spectrum of CHD3?
[ "A. 2", "B. 3", "C. 5", "D. 7" ]
7
3
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. How many lines are there in the 1H spectrum of CHD3? A. 2 B. 3 C. 5 D. 7 Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
263
15,013
Physics
online
What does the Doppler shift measure?
[ "A. The ratio of incident frequency to reflected frequency", "B. The sum of incident frequency and reflected frequency", "C. The difference between incident and reflected frequency", "D. The product of incident and reflected frequency" ]
The difference between incident and reflected frequency
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What does the Doppler shift measure? A. The ratio of incident frequency to reflected frequency B. The sum of incident frequency and reflected frequency C. The difference between incident and reflected frequency D. The product of incident and reflected frequency Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
267
15,016
Physics
online
The strength of the frequency-encoding gradient...
[ "A. ...is changed many times to generate k-space", "B. ...has no influence on the final image", "C. ...alters the bandwidth of the signal", "D. ...alters the tissue contrast" ]
...alters the bandwidth of the signal
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. The strength of the frequency-encoding gradient... A. ...is changed many times to generate k-space B. ...has no influence on the final image C. ...alters the bandwidth of the signal D. ...alters the tissue contrast Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
268
15,013
Physics
online
During fluoroscopy, what is the principal source of the dose received by the technologist (outside the primary beam)?
[ "A. Compton electrons.", "B. Photoelectrons.", "C. Compton scattered photons.", "D. Rayleigh scattering" ]
Compton scattered photons.
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. During fluoroscopy, what is the principal source of the dose received by the technologist (outside the primary beam)? A. Compton electrons. B. Photoelectrons. C. Compton scattered photons. D. Rayleigh scattering Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
270
15,033
Physics
online
The ratio T1 / T2 = 10 was measured for a 1H resonance on a 600 MHz spectrometer. What is the value of tau c?
[ "A. 0.52 ns", "B. 1.13 ns", "C. 1.38 ns", "D. 2.05 ns" ]
1.13 ns
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. The ratio T1 / T2 = 10 was measured for a 1H resonance on a 600 MHz spectrometer. What is the value of tau c? A. 0.52 ns B. 1.13 ns C. 1.38 ns D. 2.05 ns Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
271
15,013
Physics
online
Diagnostic ultrasound is defined as a sound with a frequency of:
[ "A. Greater than 20 kHz", "B. Greater than 0.2 MHz", "C. Greater than 1 MHz", "D. Less than 1 kHz" ]
Greater than 1 MHz
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Diagnostic ultrasound is defined as a sound with a frequency of: A. Greater than 20 kHz B. Greater than 0.2 MHz C. Greater than 1 MHz D. Less than 1 kHz Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
280
15,013
Physics
online
What produces a uniform density of the radiograph called image noise?
[ "A. Photoelectric effect", "B. Filter", "C. Photodisintegration", "D. Rayleigh (coherent) scattering" ]
Rayleigh (coherent) scattering
3
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What produces a uniform density of the radiograph called image noise? A. Photoelectric effect B. Filter C. Photodisintegration D. Rayleigh (coherent) scattering Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
286
15,033
Physics
online
How long does it take for the free induction decay of an NMR line with T2 = 0.5 s to decay to 1% of its initial amplitude?
[ "A. 2.30 s", "B. 2.90 s", "C. 3.20 s", "D. 3.70 s" ]
2.30 s
0
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. How long does it take for the free induction decay of an NMR line with T2 = 0.5 s to decay to 1% of its initial amplitude? A. 2.30 s B. 2.90 s C. 3.20 s D. 3.70 s Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
295
15,013
Physics
online
Which interaction between X-ray beam and matter results in the largest patient dose?
[ "A. Characteristic", "B. Compton's scatter", "C. Bremsstrahlung", "D. Photoelectric effect" ]
Photoelectric effect
3
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Which interaction between X-ray beam and matter results in the largest patient dose? A. Characteristic B. Compton's scatter C. Bremsstrahlung D. Photoelectric effect Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
305
15,016
Physics
online
Compared with SE (spin echo), GRE (gradient echo) sequences use
[ "A. Longer \\(TR\\)", "B. Shorter \\(TR\\)", "C. Longer \\(TE\\)", "D. Shorter \\(TE\\)" ]
Shorter \(TR\)
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Compared with SE (spin echo), GRE (gradient echo) sequences use A. Longer \(TR\) B. Shorter \(TR\) C. Longer \(TE\) D. Shorter \(TE\) Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
306
15,013
Physics
online
Which of the following statements is true?
[ "A. Is due to photoelectric absorption and Compton scatter.", "B. Gives the relative number of x-rays emitted at each photon energy.", "C. Depends only on the braking radiation.", "D. Is produced by electron transitions between the electron shells." ]
Gives the relative number of x-rays emitted at each photon energy.
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Which of the following statements is true? A. Is due to photoelectric absorption and Compton scatter. B. Gives the relative number of x-rays emitted at each photon energy. C. Depends only on the braking radiation. D. Is produced by electron transitions between the electron shells. Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
307
15,013
Physics
online
What are the types of coincidence events?
[ "A. True", "B. Random", "C. Scattered", "D. Multiple" ]
True
0
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What are the types of coincidence events? A. True B. Random C. Scattered D. Multiple Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
308
15,013
Physics
online
In a gamma camera, what is the component that "converts" the light signal in electronic signal?
[ "A. Dynode", "B. Photocatode", "C. Photomultiplier tube", "D. Scintillator crystal" ]
Photomultiplier tube
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. In a gamma camera, what is the component that "converts" the light signal in electronic signal? A. Dynode B. Photocatode C. Photomultiplier tube D. Scintillator crystal Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
310
15,013
Physics
online
What is the name of the Austrian mathematician who proved in 1917 that it was possible to reconstruct a three-dimensional object from the infinite set of all of its projections?
[ "A. Radon", "B. Tsien", "C. Bracewell", "D. Cormack" ]
Radon
0
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What is the name of the Austrian mathematician who proved in 1917 that it was possible to reconstruct a three-dimensional object from the infinite set of all of its projections? A. Radon B. Tsien C. Bracewell D. Cormack Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
311
15,033
Physics
online
How long (in multiples of T1) is it necessary to wait for Δn(t) to relax to 99% of Δneq??
[ "A. 2.61 T1", "B. 4.61 T1", "C. 5.02 T1", "D. 7.03 T1" ]
4.61 T1
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. How long (in multiples of T1) is it necessary to wait for Δn(t) to relax to 99% of Δneq?? A. 2.61 T1 B. 4.61 T1 C. 5.02 T1 D. 7.03 T1 Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
316
15,033
Physics
online
What is the NMR frequency of 1H in a 23.488 T magnetic field?
[ "A. 1000.0 Hz", "B. 1000.0 kHz", "C. 1000.0 MHz", "D. 1000.0 GHz" ]
1000.0 MHz
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What is the NMR frequency of 1H in a 23.488 T magnetic field? A. 1000.0 Hz B. 1000.0 kHz C. 1000.0 MHz D. 1000.0 GHz Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
317
15,013
Physics
online
Which phenomena does the term "beam hardening" describe?
[ "A. The decrease in average photon energy of a heterogeneous X-ray beam", "B. The increase in average photon energy of a homogeneous X-ray beam", "C. The increase in average photon energy of a heterogeneous X-ray beam", "D. None of the above" ]
The increase in average photon energy of a heterogeneous X-ray beam
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Which phenomena does the term "beam hardening" describe? A. The decrease in average photon energy of a heterogeneous X-ray beam B. The increase in average photon energy of a homogeneous X-ray beam C. The increase in average photon energy of a heterogeneous X-ray beam D. None of the above Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
318
15,013
Physics
online
When incoming electrons interacts with bound electrons in the X-ray target, ionization of the atom can occur...
[ "A. if the absolute energy transferred exceeds the absolute binding energy of the shell involved.", "B. as well as emission of alpha and beta particles.", "C. and gamma ray emission too.", "D. when the kinetic energy of the incoming electrons is less than the binding energy of the shell involved." ]
if the absolute energy transferred exceeds the absolute binding energy of the shell involved.
0
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. When incoming electrons interacts with bound electrons in the X-ray target, ionization of the atom can occur... A. if the absolute energy transferred exceeds the absolute binding energy of the shell involved. B. as well as emission of alpha and beta particles. C. and gamma ray emission too. D. when the kinetic energy of the incoming electrons is less than the binding energy of the shell involved. Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
321
15,013
Physics
online
How is termed the fraction of attenuated incident photons per unit thickness of a material?
[ "A. Linear attenuation coefficient", "B. Mass absorption coefficient", "C. Coefficient of scattering", "D. Mean attenuation ratio" ]
Linear attenuation coefficient
0
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. How is termed the fraction of attenuated incident photons per unit thickness of a material? A. Linear attenuation coefficient B. Mass absorption coefficient C. Coefficient of scattering D. Mean attenuation ratio Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
323
15,033
Physics
online
Predict the total number of lines in the 1H spectrum of CH3Cl
[ "A. 0", "B. 1", "C. 2", "D. 3" ]
1
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Predict the total number of lines in the 1H spectrum of CH3Cl A. 0 B. 1 C. 2 D. 3 Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
325
15,013
Physics
online
How is called the reduction of intensity when an X-ray beam interacts with matter?
[ "A. Scatter", "B. Attenuation", "C. Transmission", "D. Differential absorption" ]
Attenuation
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. How is called the reduction of intensity when an X-ray beam interacts with matter? A. Scatter B. Attenuation C. Transmission D. Differential absorption Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
338
15,033
Physics
online
Predict which of the following compounds has the highest and which the lowest 1H chemical shift: CH3Br, CH2Br2 and CHBr3. (from highest to lowest)
[ "A. CH3Br > CH2Br2 > CHBr3", "B. CHBr3 > CH2Br2 > CH3Br", "C. CH2Br2 > CHBr3 > CH3Br", "D. They have all the same 1H chemical shift" ]
CHBr3 > CH2Br2 > CH3Br
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Predict which of the following compounds has the highest and which the lowest 1H chemical shift: CH3Br, CH2Br2 and CHBr3. (from highest to lowest) A. CH3Br > CH2Br2 > CHBr3 B. CHBr3 > CH2Br2 > CH3Br C. CH2Br2 > CHBr3 > CH3Br D. They have all the same 1H chemical shift Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
340
15,013
Physics
online
X-ray detection in Emission Tomography involves...
[ "A. A beta camera composed of PMT and scintillating crystal", "B. A measure at 180 degrees simultaneously", "C. An x-ray tube and a circular detector ring", "D. Collimation, scintillation and amplification" ]
Collimation, scintillation and amplification
3
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. X-ray detection in Emission Tomography involves... A. A beta camera composed of PMT and scintillating crystal B. A measure at 180 degrees simultaneously C. An x-ray tube and a circular detector ring D. Collimation, scintillation and amplification Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
348
15,013
Physics
online
Which of the following is not directly ionizing radiation?
[ "A. Positrons", "B. \\(\\alpha-\\)particles", "C. Neutrons", "D. Protons" ]
Neutrons
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Which of the following is not directly ionizing radiation? A. Positrons B. \(\alpha-\)particles C. Neutrons D. Protons Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
349
15,016
Physics
online
When was the first MRI human scan performed?
[ "A. 1952", "B. 1965", "C. 1977", "D. 1985" ]
1977
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. When was the first MRI human scan performed? A. 1952 B. 1965 C. 1977 D. 1985 Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
360
15,033
Physics
online
The following data were measured in an inversion recovery experiment: tau [s]: 2.0 , 5.0 , 10.0 , 20.0 , 100.0 with their respective signal intensities Signal(tau): -0.702 , -0.336 , 0.107 , 0.601 , 1.000. Determine the value of T1.
[ "A. 10.5 s", "B. 12.4 s", "C. 15.6 s", "D. 18.1 s" ]
12.4 s
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. The following data were measured in an inversion recovery experiment: tau [s]: 2.0 , 5.0 , 10.0 , 20.0 , 100.0 with their respective signal intensities Signal(tau): -0.702 , -0.336 , 0.107 , 0.601 , 1.000. Determine the value of T1. A. 10.5 s B. 12.4 s C. 15.6 s D. 18.1 s Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
368
15,013
Physics
online
In Doppler effect, which incident angle (in degree) results in no shift?
[ "A. 180", "B. 90", "C. 45", "D. 0" ]
90
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. In Doppler effect, which incident angle (in degree) results in no shift? A. 180 B. 90 C. 45 D. 0 Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
377
15,033
Physics
online
What is the NMR frequency of 13C in a 23.488 T magnetic field?
[ "A. 1000.0 MHz", "B. 251.5 MHz", "C. 503.0 MHz", "D. 754.5 MHz" ]
251.5 MHz
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What is the NMR frequency of 13C in a 23.488 T magnetic field? A. 1000.0 MHz B. 251.5 MHz C. 503.0 MHz D. 754.5 MHz Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
380
15,033
Physics
online
The aromatic region of the 13C{1H} spectrum of N-methylaniline contains six lines at low temperature. How many lines might be expected at high temperature??
[ "A. 2", "B. 4", "C. 6", "D. 8" ]
4
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. The aromatic region of the 13C{1H} spectrum of N-methylaniline contains six lines at low temperature. How many lines might be expected at high temperature?? A. 2 B. 4 C. 6 D. 8 Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
384
15,033
Physics
online
What is the NMR frequency of 1H in the Earth's magnetic field (50 micro Tesla)?
[ "A. 1.065 kHz", "B. 2.129 kHz", "C. 3.194 kHz", "D. 4.258 kHz" ]
2.129 kHz
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What is the NMR frequency of 1H in the Earth's magnetic field (50 micro Tesla)? A. 1.065 kHz B. 2.129 kHz C. 3.194 kHz D. 4.258 kHz Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
385
15,033
Physics
online
How many distinct chemical shifts would you expect to find in the 13C spectrum of 2-methylbutane?
[ "A. 1", "B. 2", "C. 3", "D. 4" ]
4
3
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. How many distinct chemical shifts would you expect to find in the 13C spectrum of 2-methylbutane? A. 1 B. 2 C. 3 D. 4 Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
388
15,016
Physics
online
In order to obtain a signal in MRI experiment, what is the first step?
[ "A. Apply an RF pulse along \\(\\vec B_0\\)", "B. Change the amplitude of \\(\\vec B_0\\)", "C. Apply an RF pulse in a different direction from \\(\\vec B_0\\)", "D. Apply a magnetic field gradient" ]
Apply an RF pulse in a different direction from \(\vec B_0\)
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. In order to obtain a signal in MRI experiment, what is the first step? A. Apply an RF pulse along \(\vec B_0\) B. Change the amplitude of \(\vec B_0\) C. Apply an RF pulse in a different direction from \(\vec B_0\) D. Apply a magnetic field gradient Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
389
15,013
Physics
online
Which of the following decreases the noise of the CT image?
[ "A. Decrease in dose", "B. Decrease in slice thickness", "C. Increase in matrix size", "D. Decrease in matrix size" ]
Decrease in matrix size
3
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Which of the following decreases the noise of the CT image? A. Decrease in dose B. Decrease in slice thickness C. Increase in matrix size D. Decrease in matrix size Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
390
15,033
Physics
online
The 1H spectrum of CH2D2 contains five lines. What are their relative intensities?
[ "A. 1:2:2:2:1", "B. 1:1:1:1:1", "C. 1:2:3:2:1", "D. 1:1:2:1:1" ]
1:2:3:2:1
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. The 1H spectrum of CH2D2 contains five lines. What are their relative intensities? A. 1:2:2:2:1 B. 1:1:1:1:1 C. 1:2:3:2:1 D. 1:1:2:1:1 Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
395
15,033
Physics
online
Predict the total number of lines in the 1H spectrum of 1,2-dichloro-3,4-dibromobenzene
[ "A. 1", "B. 2", "C. 3", "D. 4" ]
4
3
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Predict the total number of lines in the 1H spectrum of 1,2-dichloro-3,4-dibromobenzene A. 1 B. 2 C. 3 D. 4 Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
400
15,033
Physics
online
NMR stands for
[ "A. Nuclear Moment of Resonance", "B. Non Magnetic Radiation", "C. Nuclear Magnetic Radiation", "D. Nuclear Magnetic Resonance" ]
Nuclear Magnetic Resonance
3
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. NMR stands for A. Nuclear Moment of Resonance B. Non Magnetic Radiation C. Nuclear Magnetic Radiation D. Nuclear Magnetic Resonance Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
401
15,016
Physics
online
>>In spin echo sequences, what do TR and TE refer to?
[ "A. TR: the spacing between successive 90-degree pulses; TE: time between the 90-degree pulse and the spin echo", "B. TR: the spacing between successive 90-degree pulses; TE: the spacing between the 90-degree pulse and the 180-degree pulse", "C. TR: time before the 90-degree pulse and the spin echo; TE: the spacing between successive 90-degree pulses", "D. TR: the spacing between the 90-degree pulse and the 180-degree pulse; TE: the spacing between successive 90-degree pulses" ]
TR: the spacing between successive 90-degree pulses; TE: time between the 90-degree pulse and the spin echo
0
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. >>In spin echo sequences, what do TR and TE refer to? A. TR: the spacing between successive 90-degree pulses; TE: time between the 90-degree pulse and the spin echo B. TR: the spacing between successive 90-degree pulses; TE: the spacing between the 90-degree pulse and the 180-degree pulse C. TR: time before the 90-degree pulse and the spin echo; TE: the spacing between successive 90-degree pulses D. TR: the spacing between the 90-degree pulse and the 180-degree pulse; TE: the spacing between successive 90-degree pulses Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
404
15,033
Physics
online
What is the duration of a 1H 90° pulse when B1 = 1.00 mT?
[ "A. 4.12 microseconds", "B. 5.87 microseconds", "C. 9.82 microseconds", "D. 12.45 microseconds" ]
5.87 microseconds
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What is the duration of a 1H 90° pulse when B1 = 1.00 mT? A. 4.12 microseconds B. 5.87 microseconds C. 9.82 microseconds D. 12.45 microseconds Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
408
15,013
Physics
online
In diagnostic X-ray systems, filters are used to "harden" the beam. This process is mainly due to:
[ "A. Coherent scattering.", "B. Photoelectric effect.", "C. Compton effect.", "D. Pair production." ]
Photoelectric effect.
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. In diagnostic X-ray systems, filters are used to "harden" the beam. This process is mainly due to: A. Coherent scattering. B. Photoelectric effect. C. Compton effect. D. Pair production. Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
409
15,013
Physics
online
What is the form of the majority of energy produced by electrons in X-rays tubes?
[ "A. Light", "B. Sound", "C. X-ray energy", "D. Heat" ]
Heat
3
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What is the form of the majority of energy produced by electrons in X-rays tubes? A. Light B. Sound C. X-ray energy D. Heat Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
626
15,076
Life Sciences Engineering
online
How does the particular dendritic conductance of CA1 pyramidal neurons influence the integration of the signals from two synapses, one close to the soma and one close to the distal dendrite, activated with a time delay?
[ "A. Both signals are integrated to generate an AP in the soma if the delay is short (up to 20 ms) and the distal synapse is activated first or very shortly after the proximal one", "B. Both signals are integrated to generate an AP in the soma even when the delay is long (up to 50 ms)", "C. Each of the two signals generate a separate AP in the soma except when the time delay is very short (less than 10 ms), in which case a single AP is generated", "D. Both signals are integrated to generate an AP in the soma if the delay is short (up to 20 ms) and the proximal synapse is activated first or very shortly after the distal one" ]
Both signals are integrated to generate an AP in the soma if the delay is short (up to 20 ms) and the distal synapse is activated first or very shortly after the proximal one
0
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. How does the particular dendritic conductance of CA1 pyramidal neurons influence the integration of the signals from two synapses, one close to the soma and one close to the distal dendrite, activated with a time delay? A. Both signals are integrated to generate an AP in the soma if the delay is short (up to 20 ms) and the distal synapse is activated first or very shortly after the proximal one B. Both signals are integrated to generate an AP in the soma even when the delay is long (up to 50 ms) C. Each of the two signals generate a separate AP in the soma except when the time delay is very short (less than 10 ms), in which case a single AP is generated D. Both signals are integrated to generate an AP in the soma if the delay is short (up to 20 ms) and the proximal synapse is activated first or very shortly after the distal one Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
627
15,076
Life Sciences Engineering
online
A neuron can be considered as a dipole. Why does the amplitude of the extracellular potential fall proportionally to the square of the distance from the dipole it originates in?
[ "A. Because the current is divided by the square of the distance to obtain the extracellular potential in the formula", "B. Because as one moves further away from the dipole, current and return current cancel each other out more and more in addition to the decrease in amplitude that is proportional to the distance", "C. Because the sum of all currents acting on an extracellular location is weighted by a multiple of the squared distance between compartment and the extracellular location", "D. It does not fall proportionally to the square of the distance, but proportionally to the distance between the dipole and the extracellular location" ]
Because as one moves further away from the dipole, current and return current cancel each other out more and more in addition to the decrease in amplitude that is proportional to the distance
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. A neuron can be considered as a dipole. Why does the amplitude of the extracellular potential fall proportionally to the square of the distance from the dipole it originates in? A. Because the current is divided by the square of the distance to obtain the extracellular potential in the formula B. Because as one moves further away from the dipole, current and return current cancel each other out more and more in addition to the decrease in amplitude that is proportional to the distance C. Because the sum of all currents acting on an extracellular location is weighted by a multiple of the squared distance between compartment and the extracellular location D. It does not fall proportionally to the square of the distance, but proportionally to the distance between the dipole and the extracellular location Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
628
15,076
Life Sciences Engineering
online
Which method can be used to link a broad range of different time and spatial scales when studying the brain?
[ "A. Patch clamp", "B. PET imaging", "C. Modeling and simulation", "D. Long-term clinical studies" ]
Modeling and simulation
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Which method can be used to link a broad range of different time and spatial scales when studying the brain? A. Patch clamp B. PET imaging C. Modeling and simulation D. Long-term clinical studies Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
629
15,076
Life Sciences Engineering
online
How are different regions of the hippocampus connected to each other?
[ "A. The connections are largely reciprocal; if region A projects to region B, region B also projects to region A", "B. The connections are mainly unidirectional along a stream", "C. The connections allow signals to spread along the longitudinal axis of the hippocampus", "D. The connections keep the signals mainly in one slide of the longitudinal axis called a lamella" ]
The connections are mainly unidirectional along a stream
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. How are different regions of the hippocampus connected to each other? A. The connections are largely reciprocal; if region A projects to region B, region B also projects to region A B. The connections are mainly unidirectional along a stream C. The connections allow signals to spread along the longitudinal axis of the hippocampus D. The connections keep the signals mainly in one slide of the longitudinal axis called a lamella Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
630
15,076
Life Sciences Engineering
online
What are fixed point attractors in nonlinear recurrent networks?
[ "A. Specific neurons that are always activated", "B. Stable patterns of activity towards which other patterns converge", "C. Memory traces, if the can be learned by the network", "D. Connections between neurons that get consolidated upon recall" ]
Stable patterns of activity towards which other patterns converge
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What are fixed point attractors in nonlinear recurrent networks? A. Specific neurons that are always activated B. Stable patterns of activity towards which other patterns converge C. Memory traces, if the can be learned by the network D. Connections between neurons that get consolidated upon recall Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
631
15,076
Life Sciences Engineering
online
What are the two main ions contributing to the generation of an action potential?
[ "A. Na+ and Cl-", "B. Ca2+ and Cl-", "C. H+ and K+", "D. Na+ and K+" ]
Na+ and K+
3
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What are the two main ions contributing to the generation of an action potential? A. Na+ and Cl- B. Ca2+ and Cl- C. H+ and K+ D. Na+ and K+ Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
632
15,076
Life Sciences Engineering
online
Which important point must be considered when populating the region to model?
[ "A. The types of cells present in the region", "B. The shape of the volume to populate", "C. The density of each cell type", "D. The location and orientation of the cells in the volume" ]
The types of cells present in the region
0
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Which important point must be considered when populating the region to model? A. The types of cells present in the region B. The shape of the volume to populate C. The density of each cell type D. The location and orientation of the cells in the volume Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
633
15,076
Life Sciences Engineering
online
What determines the firing pattern of a neuron in response to step current injections?
[ "A. The length of its axon", "B. Its expression of different voltage-gated ion channels", "C. Which neurotransmitter it expresses", "D. The post-synaptic domain of the cells that it targets" ]
Its expression of different voltage-gated ion channels
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What determines the firing pattern of a neuron in response to step current injections? A. The length of its axon B. Its expression of different voltage-gated ion channels C. Which neurotransmitter it expresses D. The post-synaptic domain of the cells that it targets Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
634
15,076
Life Sciences Engineering
online
What does simulating a neuron help to understand?
[ "A. Dendritic integration", "B. The neural code", "C. The role of the biophysical make-up of a neuron", "D. Potentially all of the above, depending on the type of model used" ]
Potentially all of the above, depending on the type of model used
3
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What does simulating a neuron help to understand? A. Dendritic integration B. The neural code C. The role of the biophysical make-up of a neuron D. Potentially all of the above, depending on the type of model used Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
635
15,076
Life Sciences Engineering
online
Which statement about CA1 pyramidal neurons are true?
[ "A. The KA density increases with the distance to the soma, the Ih density stays constant", "B. The density of both K and non-specific ion channels increases when the distance to the soma increases", "C. They receive two main independent inputs, one from the entorhinal cortex and one from the olfactory bulb that arrive at different locations", "D. They receive two main inputs that both originate from the same signal in the entorhinal cortex and arrive at different locations with a time delay" ]
The density of both K and non-specific ion channels increases when the distance to the soma increases
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Which statement about CA1 pyramidal neurons are true? A. The KA density increases with the distance to the soma, the Ih density stays constant B. The density of both K and non-specific ion channels increases when the distance to the soma increases C. They receive two main independent inputs, one from the entorhinal cortex and one from the olfactory bulb that arrive at different locations D. They receive two main inputs that both originate from the same signal in the entorhinal cortex and arrive at different locations with a time delay Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
637
15,076
Life Sciences Engineering
online
Which property of the hippocampus makes it a good model to study the nervous system?
[ "A. The connections on the hippocampus are almost unidirectional", "B. The synapses are highly plastic", "C. Hippocampal neurons can be grown in culture", "D. All of the above" ]
All of the above
3
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Which property of the hippocampus makes it a good model to study the nervous system? A. The connections on the hippocampus are almost unidirectional B. The synapses are highly plastic C. Hippocampal neurons can be grown in culture D. All of the above Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
642
15,076
Life Sciences Engineering
online
How are somatic and dendritic conductances related to the firing pattern of a cell?
[ "A. Each cell type has a fixed firing pattern that results from all individual cells of the same type having the same somatic and dendritic conductances", "B. Each combination of conductances generate a different firing behavior", "C. Specific conductances must be at certain levels in order to generating a defined firing pattern", "D. Several combinations of conductances are able to reproduce the same firing behavior" ]
Specific conductances must be at certain levels in order to generating a defined firing pattern
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. How are somatic and dendritic conductances related to the firing pattern of a cell? A. Each cell type has a fixed firing pattern that results from all individual cells of the same type having the same somatic and dendritic conductances B. Each combination of conductances generate a different firing behavior C. Specific conductances must be at certain levels in order to generating a defined firing pattern D. Several combinations of conductances are able to reproduce the same firing behavior Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
643
15,076
Life Sciences Engineering
online
How does the calculation of extracellular potentials help with experimental design?
[ "A. Mismatches between simulations and experimental data highlight mistakes in experimental data and show how experiments need to be modified in order to match the model", "B. It doesn’t help experimental design, but generates data so that experiments are not necessary anymore in order to answer biological questions", "C. Because the calculation of extracellular potentials allows separating the contribution of each neuron to the signal, it can inform on where to place electrodes to measure specific activities", "D. All of the above" ]
Because the calculation of extracellular potentials allows separating the contribution of each neuron to the signal, it can inform on where to place electrodes to measure specific activities
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. How does the calculation of extracellular potentials help with experimental design? A. Mismatches between simulations and experimental data highlight mistakes in experimental data and show how experiments need to be modified in order to match the model B. It doesn’t help experimental design, but generates data so that experiments are not necessary anymore in order to answer biological questions C. Because the calculation of extracellular potentials allows separating the contribution of each neuron to the signal, it can inform on where to place electrodes to measure specific activities D. All of the above Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
644
15,076
Life Sciences Engineering
online
What do the simple networks explaining gamma oscillations and ripples not have in common?
[ "A. The same connectivity pattern", "B. A high number of basket cells", "C. Direct auto-inhibitory feedback loops acting on single basket cells", "D. All of the above" ]
All of the above
3
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What do the simple networks explaining gamma oscillations and ripples not have in common? A. The same connectivity pattern B. A high number of basket cells C. Direct auto-inhibitory feedback loops acting on single basket cells D. All of the above Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
645
15,076
Life Sciences Engineering
online
Which statement concerning the firing pattern of neurons is true?
[ "A. There is a correlation between the firing pattern and the calcium binding protein content.", "B. There is an absolute correlation between the firing pattern and the calcium binding protein content of all interneurons.", "C. All fast-spiking cells express the potassium channel Kv3.1", "D. Basket cells are the only fast spiking cells in the hippocampu" ]
There is a correlation between the firing pattern and the calcium binding protein content.
0
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Which statement concerning the firing pattern of neurons is true? A. There is a correlation between the firing pattern and the calcium binding protein content. B. There is an absolute correlation between the firing pattern and the calcium binding protein content of all interneurons. C. All fast-spiking cells express the potassium channel Kv3.1 D. Basket cells are the only fast spiking cells in the hippocampu Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
646
15,076
Life Sciences Engineering
online
What is the effect of the particular dendritic conductance of CA1 pyramidal neurons on back-propagating APs?
[ "A. AP amplitude along the dendrites increases as the distance to the soma increases", "B. AP amplitude along the dendrites decreases as the distance to the soma increases", "C. AP amplitude stays constant along the dendrites over the distance to the soma", "D. AP amplitude along the axon decreases as the distance to the soma increases" ]
AP amplitude along the dendrites decreases as the distance to the soma increases
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What is the effect of the particular dendritic conductance of CA1 pyramidal neurons on back-propagating APs? A. AP amplitude along the dendrites increases as the distance to the soma increases B. AP amplitude along the dendrites decreases as the distance to the soma increases C. AP amplitude stays constant along the dendrites over the distance to the soma D. AP amplitude along the axon decreases as the distance to the soma increases Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
647
15,076
Life Sciences Engineering
online
How can modeling help with sparse data?
[ "A. By identifying principles allowing to predict missing data", "B. By guiding experimental design in highlighting missing data", "C. By finding connections between data types and data points allowing interpolation of missing data", "D. All of the above" ]
All of the above
3
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. How can modeling help with sparse data? A. By identifying principles allowing to predict missing data B. By guiding experimental design in highlighting missing data C. By finding connections between data types and data points allowing interpolation of missing data D. All of the above Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
648
15,076
Life Sciences Engineering
online
When do the synapses in CA3 need to be plastic?
[ "A. For pattern separation", "B. For memory retrieval", "C. For learning", "D. All of the above" ]
For learning
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. When do the synapses in CA3 need to be plastic? A. For pattern separation B. For memory retrieval C. For learning D. All of the above Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
649
15,076
Life Sciences Engineering
online
Which statement about hippocampal synaptic plasticity, network oscillations and neuromodulation is true?
[ "A. Network oscillations in the hippocampus endow it with cognitive functions like learning and memory", "B. Neuromodulation in the hippocampus gate synaptic plasticity and enhance network oscillations", "C. The oscillations observed in the hippocampus are similar to those observed in other parts of the cortex", "D. All of the above" ]
All of the above
3
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Which statement about hippocampal synaptic plasticity, network oscillations and neuromodulation is true? A. Network oscillations in the hippocampus endow it with cognitive functions like learning and memory B. Neuromodulation in the hippocampus gate synaptic plasticity and enhance network oscillations C. The oscillations observed in the hippocampus are similar to those observed in other parts of the cortex D. All of the above Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
650
15,076
Life Sciences Engineering
online
Which statements about cable theory are true?
[ "A. The conductance for each ion stays the same all along the axon and dendrites", "B. It quantifies the propagation of a signal along the axon and dendrites", "C. The change in voltage over the distance is related to the change in voltage over time", "D. The neuron is discretized to form several coupled compartments corresponding to parts of the axon and dendrites" ]
It quantifies the propagation of a signal along the axon and dendrites
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Which statements about cable theory are true? A. The conductance for each ion stays the same all along the axon and dendrites B. It quantifies the propagation of a signal along the axon and dendrites C. The change in voltage over the distance is related to the change in voltage over time D. The neuron is discretized to form several coupled compartments corresponding to parts of the axon and dendrites Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
653
15,076
Life Sciences Engineering
online
Why is a massive increase in model complexity a challenge?
[ "A. Because computational capacity has not increased enough during the last century", "B. Because existing scientific codes like NEURON are not adapted to use massively parallel systems", "C. Because neuron networks cannot be simulated using parallel systems", "D. It is not a challenge; very large models can be simulated on normal desktop computers since desktop computers have become much faster and have large storage capabilities" ]
Because existing scientific codes like NEURON are not adapted to use massively parallel systems
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Why is a massive increase in model complexity a challenge? A. Because computational capacity has not increased enough during the last century B. Because existing scientific codes like NEURON are not adapted to use massively parallel systems C. Because neuron networks cannot be simulated using parallel systems D. It is not a challenge; very large models can be simulated on normal desktop computers since desktop computers have become much faster and have large storage capabilities Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
654
15,076
Life Sciences Engineering
online
Which of the following statements about theta activity are true?
[ "A. Theta activity can be measured using EEG", "B. Theta activity are observed in the hippocampus during deep sleep", "C. Theta activity is the only oscillatory activity observed in the hippocampus", "D. Theta activity could be correlated to behavior" ]
Theta activity can be measured using EEG
0
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Which of the following statements about theta activity are true? A. Theta activity can be measured using EEG B. Theta activity are observed in the hippocampus during deep sleep C. Theta activity is the only oscillatory activity observed in the hippocampus D. Theta activity could be correlated to behavior Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
655
15,076
Life Sciences Engineering
online
Which statement about genetic metaheuristic optimization algorithms is not true?
[ "A. They generate sets of parameter values that are used to generate and evaluate the resulting neuronal behaviour", "B. The algorithms are based on biological evolution; they test the fitness of arbitrary individuals and allow the fittest to create mutated offspring", "C. The algorithms find the optimal parameter values over the whole possible parameter space", "D. The algorithms are recursive; they generate new sets of parameters based on the best ranking set of the previous iteration that are evaluated and ranked in turn" ]
The algorithms find the optimal parameter values over the whole possible parameter space
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Which statement about genetic metaheuristic optimization algorithms is not true? A. They generate sets of parameter values that are used to generate and evaluate the resulting neuronal behaviour B. The algorithms are based on biological evolution; they test the fitness of arbitrary individuals and allow the fittest to create mutated offspring C. The algorithms find the optimal parameter values over the whole possible parameter space D. The algorithms are recursive; they generate new sets of parameters based on the best ranking set of the previous iteration that are evaluated and ranked in turn Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
656
15,076
Life Sciences Engineering
online
Which statement concerning electrical types is true?
[ "A. Each morphological type can have only one electrical type", "B. Each electrical type corresponds to only one morphological type", "C. A specific morphological type can have different electrical types, and vice-versa", "D. None of the above" ]
A specific morphological type can have different electrical types, and vice-versa
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Which statement concerning electrical types is true? A. Each morphological type can have only one electrical type B. Each electrical type corresponds to only one morphological type C. A specific morphological type can have different electrical types, and vice-versa D. None of the above Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
657
15,076
Life Sciences Engineering
online
Which statement about hippocampal synaptic plasticity, network oscillations and neuromodulation is not true?
[ "A. Network oscillations in the hippocampus endow it with cognitive functions like learning and memory", "B. Only one form of synaptic potentiation and depression can be studied in the hippocampus", "C. Neuromodulation in the hippocampus gate synaptic plasticity and enhance network oscillations", "D. The oscillations observed in the hippocampus are similar to those observed in other parts of the cortex" ]
Only one form of synaptic potentiation and depression can be studied in the hippocampus
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Which statement about hippocampal synaptic plasticity, network oscillations and neuromodulation is not true? A. Network oscillations in the hippocampus endow it with cognitive functions like learning and memory B. Only one form of synaptic potentiation and depression can be studied in the hippocampus C. Neuromodulation in the hippocampus gate synaptic plasticity and enhance network oscillations D. The oscillations observed in the hippocampus are similar to those observed in other parts of the cortex Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
658
15,076
Life Sciences Engineering
online
What is the purpose of the Productivity Libraries?
[ "A. Create a bibliography of all the references used for building the model", "B. Allow simple use of specialized functionalities for complex workflows", "C. Optimize the execution of the program for the platform used", "D. Visualize the results of the simulations" ]
Allow simple use of specialized functionalities for complex workflows
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What is the purpose of the Productivity Libraries? A. Create a bibliography of all the references used for building the model B. Allow simple use of specialized functionalities for complex workflows C. Optimize the execution of the program for the platform used D. Visualize the results of the simulations Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
660
15,076
Life Sciences Engineering
online
Why is the current used to calculate the extracellular potential?
[ "A. It is not, membrane potential is used to calculate the extracellular potential", "B. Because the current generates a uniform global increase in the whole extracellular fluid, like a strong water current in a lake raise the whole surface of the water", "C. Because the extracellular fluid cannot conduct electrical current", "D. Because, like a strong localized water current downstream of a dam, electrical current generate a “bulge” in the voltage" ]
Because, like a strong localized water current downstream of a dam, electrical current generate a “bulge” in the voltage
3
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Why is the current used to calculate the extracellular potential? A. It is not, membrane potential is used to calculate the extracellular potential B. Because the current generates a uniform global increase in the whole extracellular fluid, like a strong water current in a lake raise the whole surface of the water C. Because the extracellular fluid cannot conduct electrical current D. Because, like a strong localized water current downstream of a dam, electrical current generate a “bulge” in the voltage Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
661
15,076
Life Sciences Engineering
online
How does damage to the hippocampus influence the ability to perceive time?
[ "A. It does not influence the perception of time", "B. It changes the perception of time in humans, but not animals", "C. It is not known, as we have no way to study the encoding of time in the nervous system", "D. It impairs the ability to recall the temporal order of events" ]
It impairs the ability to recall the temporal order of events
3
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. How does damage to the hippocampus influence the ability to perceive time? A. It does not influence the perception of time B. It changes the perception of time in humans, but not animals C. It is not known, as we have no way to study the encoding of time in the nervous system D. It impairs the ability to recall the temporal order of events Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
663
15,076
Life Sciences Engineering
online
How does pruning happen when reconstructing the connectome?
[ "A. Too strong connections between cells are removed", "B. Synapses are removed randomly until the model matches experimental data", "C. Too weak connections between cells are removed", "D. All of the above" ]
All of the above
3
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. How does pruning happen when reconstructing the connectome? A. Too strong connections between cells are removed B. Synapses are removed randomly until the model matches experimental data C. Too weak connections between cells are removed D. All of the above Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
664
15,076
Life Sciences Engineering
online
What is cable theory about?
[ "A. It states that the conductance for each ion stays the same all along the axon and dendrites", "B. It quantifies the propagation of a signal along the axon and dendrites", "C. It states that the change in voltage over the distance is related to the change in voltage over time", "D. It highlights the differences between an axon and an electric cable" ]
It quantifies the propagation of a signal along the axon and dendrites
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What is cable theory about? A. It states that the conductance for each ion stays the same all along the axon and dendrites B. It quantifies the propagation of a signal along the axon and dendrites C. It states that the change in voltage over the distance is related to the change in voltage over time D. It highlights the differences between an axon and an electric cable Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
665
15,076
Life Sciences Engineering
online
What are reasons to use a model?
[ "A. Replace experiments in a more time-efficient manner", "B. Integrate data, space and time scales", "C. Study a system in a data-independent way", "D. Simulate complex interactions and predict a system’s behavior" ]
Integrate data, space and time scales
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What are reasons to use a model? A. Replace experiments in a more time-efficient manner B. Integrate data, space and time scales C. Study a system in a data-independent way D. Simulate complex interactions and predict a system’s behavior Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
666
15,076
Life Sciences Engineering
online
According to the theory of complementary learning systems, which statements are true?
[ "A. The hippocampus is responsible for the learning process in memory, and the neocortex for memory recall", "B. The neocortex is specialized in slow statistical learning of general information and the hippocampus for rapid learning of arbitrary stimuli combinations", "C. The neocortex is responsible for the learning process in memory, and the hippocampus for memory recall", "D. The hippocampus is specialized in slow statistical learning of general information and the neocortex for rapid learning of arbitrary stimuli combinations" ]
The neocortex is specialized in slow statistical learning of general information and the hippocampus for rapid learning of arbitrary stimuli combinations
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. According to the theory of complementary learning systems, which statements are true? A. The hippocampus is responsible for the learning process in memory, and the neocortex for memory recall B. The neocortex is specialized in slow statistical learning of general information and the hippocampus for rapid learning of arbitrary stimuli combinations C. The neocortex is responsible for the learning process in memory, and the hippocampus for memory recall D. The hippocampus is specialized in slow statistical learning of general information and the neocortex for rapid learning of arbitrary stimuli combinations Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
667
15,076
Life Sciences Engineering
online
What are the two possible types of models explaining the formation of spatial representations in the hippocampus?
[ "A. Feedforward models explain the properties of place cells relying on the activity of the cells to project to", "B. Feedback or recurrent models rely on negative feedback of place cells to themselves to form a representation of the environment", "C. Feedforward models combine the inputs of several other cells to explain the properties of place cells", "D. Feedback or recurrent models explain the properties of place cells with the dynamics of the hippocampal network" ]
Feedforward models combine the inputs of several other cells to explain the properties of place cells
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What are the two possible types of models explaining the formation of spatial representations in the hippocampus? A. Feedforward models explain the properties of place cells relying on the activity of the cells to project to B. Feedback or recurrent models rely on negative feedback of place cells to themselves to form a representation of the environment C. Feedforward models combine the inputs of several other cells to explain the properties of place cells D. Feedback or recurrent models explain the properties of place cells with the dynamics of the hippocampal network Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
668
15,076
Life Sciences Engineering
online
Which of the following statements apply to data-driven models?
[ "A. They are built based on a specific hypothesis, to answer a specific biological question", "B. They might exclude important elements due to their minimalistic nature", "C. They can be used to test multiple hypotheses", "D. They can not identify new relationships between model variables" ]
They can be used to test multiple hypotheses
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Which of the following statements apply to data-driven models? A. They are built based on a specific hypothesis, to answer a specific biological question B. They might exclude important elements due to their minimalistic nature C. They can be used to test multiple hypotheses D. They can not identify new relationships between model variables Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
669
15,076
Life Sciences Engineering
online
What are the synaptic integration properties of a CA1 pyramidal neuron?
[ "A. It receives two main inputs at the same location on its dendrites", "B. It receives two main inputs, which are synchronized before following different pathways", "C. The inputs reach the pyramidal neuron with a delay between them", "D. Both inputs reach the dendrites of the pyramidal neuron at the same time" ]
It receives two main inputs, which are synchronized before following different pathways
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What are the synaptic integration properties of a CA1 pyramidal neuron? A. It receives two main inputs at the same location on its dendrites B. It receives two main inputs, which are synchronized before following different pathways C. The inputs reach the pyramidal neuron with a delay between them D. Both inputs reach the dendrites of the pyramidal neuron at the same time Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
670
15,076
Life Sciences Engineering
online
What determines the firing pattern of a neuron?
[ "A. The length of its axon", "B. Its neurotransmitter expression", "C. Its expression of different sodium, potassium and calcium channels", "D. The morphology of its soma" ]
Its expression of different sodium, potassium and calcium channels
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What determines the firing pattern of a neuron? A. The length of its axon B. Its neurotransmitter expression C. Its expression of different sodium, potassium and calcium channels D. The morphology of its soma Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
671
15,076
Life Sciences Engineering
online
Which of the following statement concerning release probability isnottrue?
[ "A. The depletion and replenishment rates of the vesicle pools affect the release probability", "B. A high release probability always leads to a pronounced depression of the consequent EPSPs", "C. A low release probability leads to a pronounced facilitation of the consequent EPSPs", "D. When several release sites exist between two cells, not all sites release neurotransmitter in presence of an AP" ]
A high release probability always leads to a pronounced depression of the consequent EPSPs
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Which of the following statement concerning release probability isnottrue? A. The depletion and replenishment rates of the vesicle pools affect the release probability B. A high release probability always leads to a pronounced depression of the consequent EPSPs C. A low release probability leads to a pronounced facilitation of the consequent EPSPs D. When several release sites exist between two cells, not all sites release neurotransmitter in presence of an AP Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
672
15,076
Life Sciences Engineering
online
Which statement about network oscillations is false?
[ "A. They are associated with LTP in the hippocampus", "B. They are only present in the hippocampus, not in other cortical regions", "C. They are critical for cognitive functions like learning and memory", "D. Hippocampal slices are a good basic experimental model to study network oscillations" ]
They are only present in the hippocampus, not in other cortical regions
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Which statement about network oscillations is false? A. They are associated with LTP in the hippocampus B. They are only present in the hippocampus, not in other cortical regions C. They are critical for cognitive functions like learning and memory D. Hippocampal slices are a good basic experimental model to study network oscillations Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
674
15,076
Life Sciences Engineering
online
How are different hippocampal cell types involved in modulating network oscillations?
[ "A. All cell types contribute to all types of oscillations to the same extent", "B. All cell types fire in a synchronous manner during ripple oscillations", "C. Some cell types contribute more that other to specific network oscillations", "D. Pyramidal cells are the only cell type which membrane potential does not go up and down in epochs during theta oscillations" ]
Some cell types contribute more that other to specific network oscillations
2
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. How are different hippocampal cell types involved in modulating network oscillations? A. All cell types contribute to all types of oscillations to the same extent B. All cell types fire in a synchronous manner during ripple oscillations C. Some cell types contribute more that other to specific network oscillations D. Pyramidal cells are the only cell type which membrane potential does not go up and down in epochs during theta oscillations Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
675
15,076
Life Sciences Engineering
online
Which statement about genetic metaheuristic optimization algorithms is true?
[ "A. The algorithms find the optimal parameter values over the whole possible parameter space", "B. It generates sets of parameter values (genotypes) that are used to generate and evaluate the resulting neuronal phenotype", "C. It generates a large number of random sets of parameter values that are ranked according to goodness of fit, the best fitting one is selected as the final set", "D. The algorithm uses several steps and generates new sets of parameters based on the best ranking set of the previous step" ]
It generates sets of parameter values (genotypes) that are used to generate and evaluate the resulting neuronal phenotype
1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. Which statement about genetic metaheuristic optimization algorithms is true? A. The algorithms find the optimal parameter values over the whole possible parameter space B. It generates sets of parameter values (genotypes) that are used to generate and evaluate the resulting neuronal phenotype C. It generates a large number of random sets of parameter values that are ranked according to goodness of fit, the best fitting one is selected as the final set D. The algorithm uses several steps and generates new sets of parameters based on the best ranking set of the previous step Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
678
15,076
Life Sciences Engineering
online
What are neuromodulators?
[ "A. Cell populations that initiate or block network oscillations", "B. Network oscillations that regulate synaptic plasticity", "C. Specific stimuli used to experimentally study network oscillations", "D. Chemical brain messengers like hormones or neuropeptides that modulate network activity" ]
Chemical brain messengers like hormones or neuropeptides that modulate network activity
3
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. What are neuromodulators? A. Cell populations that initiate or block network oscillations B. Network oscillations that regulate synaptic plasticity C. Specific stimuli used to experimentally study network oscillations D. Chemical brain messengers like hormones or neuropeptides that modulate network activity Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
679
15,076
Life Sciences Engineering
online
How is space encoded in the hippocampus?
[ "A. Grid cells represent space in a coordinate system", "B. Head direction cells encode in which cardinal direction the animal is facing", "C. The activity of space cells correlates with the position and direction of the animal", "D. The activity of some hippocampal cells correlate with the color of the environment of the animal" ]
Grid cells represent space in a coordinate system
0
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses. How is space encoded in the hippocampus? A. Grid cells represent space in a coordinate system B. Head direction cells encode in which cardinal direction the animal is facing C. The activity of space cells correlates with the position and direction of the animal D. The activity of some hippocampal cells correlate with the color of the environment of the animal Answer:
-1
The following are multiple choice questions (with answers) about knowledge and skills in advanced master-level STEM courses.
End of preview. Expand in Data Studio
README.md exists but content is empty.
Downloads last month
3