当前位置:首页 » 课程设计 » 2009年4月自考课程与教学论

2009年4月自考课程与教学论

发布时间: 2021-02-06 16:47:35

1. 自考课程与教学论简答题

我们在学信网可以套取真实可查的自考统招大专本科研究生学历编号,我就是做套号学历的,欢迎采纳
【山+是+吧+巴+似+而+留+删-酒+期】

2. 09年4月自考计算机基础与程序设计试题及答案

全国年4月自考计算机基础与程序设计试题
课程代码:02275
一、单项选择题(本大题共20小题,每小题1分,共20分)
在每小题列出的四个备选项中只有一个是符合题目要求的,请将其代码填写在题后的括号内。错选、多选或未选均无分。
1.衡量存储器的基本单位是( )
A. bit B. byte
C. KB D. word
2.Windows操作系统是( )
A. 单用户、单任务 B. 单用户、多任务
C. 多用户、单任务 D. 多用户、多任务
3.组成微机主存储器的是( )
A. CD—ROM和RAM B. 硬盘和RAM
C. 硬盘和CD—ROM D. ROM和RAM
4.下列数据中最大数是( )
A. (1010010)2 B. (123.4)8
C. (84.5)10 D. (55)16
5.在Turbo C 2.0中,运行一个程序后,要查看运行结果可按键( )
A. Alt+F1 B. Alt+F5
C. Alt+F9 D. Alt+F10
6.下列是合法C语言常量的是( )
A. e B. 7E4.0
C. E4 D. -9.13E-30
7.设有int a=3,b=-4,c=5;表达式(a<b)?a:b&&c<0的值是( )
A. 0 B. 1
C. 3 D. 4
8.以指数形式输出实型数的格式说明符是( )
A. %u B. %x
C. %f D. %e
9.下列程序的输出结果是( )
main( )
{ int x=5,y;
if(x<0)y=-1;
if(x==0)y=0;
y=1;
printf(″%d″,y);
}
A. -5 B. -1
C. 0 D. 1
10.下列程序段的输出结果是( )
i=1;
while(i<3){
j=1;
while(j<=i){
printf(″%d″,i+j);
j++;
}
i++;
printf(″\n″);
}
A. 2 3 3 4 B. 2 3 4
C. 2 3 D.2
3 4 3 4
11.已知str1和str2是字符数组名,下面函数中能正确地完成字符串输出的是( )
A. puts (str1,str2) B. puts (str2)
C. putchar (strl) D. putchar (str1,str2)
12.下列关于函数的说明中不正确的是( )
A. 函数名后面可以不要一对圆括号
B. 函数参数类型必须作说明
C. 函数形参个数可以是一个、多个或没有
D. 空函数被调用时不做任何工作
13.若有定义:int a[5];则a数组中首元素的地址可以表示为( )
A. &a B. a+1
C. a D. &a[1]
14.设有char s=″\ta\017bc″;则指针变量s指向的字符串在内存中所占的字节数是
( )
A. 5 B. 6
C. 7 D. 9
15.下列关于结构体类型的定义正确的是( )
A. struct tree B. struct tree
{ int branch; { int branch;
char name[20]; char name[20],
char relation; char relation,
}; };
C. struct tree D. struct tree
{ int branch { int branch;
char name[20] char name[20];
char relation char relation;
} }
16.下列各个位运算符的优先级从左到右依次降低的是( )
A. | & ˆ > > B. ˆ & > > |
C. ~ > > ˆ | D. ~ > > | ˆ
17.设有说明:int u=1,v=3,w=5;表达式:v &~~u|w的值是( )
A. 3 B. 5
C. 6 D. 8
18.设有下列程序:( )
#include″stdio.h″
main( )
{
unsigned x=8,y=2;
printf(″%d\n″,y|~(x&y));
}
该程序的运行结果是
A. -1 B. 0xff
C.127 D. 65535
19.若有定义∶# define P(x) x x x+1和说明语句:int a=2;则表达式P(2)的值是( )
A. 6 B. 8
C. 9 D. 10
20.在语句fgets(str,n,p);中,下列说法不正确的是( )
A. str是字符指针 B. 一次可以读n个字符
C. str是字符数组名 D. 一次可以读n-1个字符
二、多项选择题(本大题共5小题,每小题2分,共10分)
在每小题列出的五个备选项中至少有两个是符合题目要求的,请将其代码填写在题后的括号内。错选、多选、少选或未选均无分。
21.下列关于计算机的叙述中正确的是( )
A. CPU是计算机系统的部件
B. I/O设备不是计算机系统的部件
C. 计算机区别于其他计算工具的本质特点是能存储数据
D. “裸机”是指不配置任何软件的计算机
E. 计算机指令是控制计算机进行操作的命令
22.设有int a=3,b=-5;下列表达式的值等于1的有( )
A. a&&b<0 B. fabs(b)-a-1>0
C. a>b&&b<0 D. (a,2,-5)==(b,2,a)
E. a+b<0
23.下列关于break、goto、continue语句的说法中正确的是( )
A. break语句能够用于循环语句中
B. break语句不能用于switch语句中
C. goto语句可以用于直接从多层循环中退出
D. continue语句可用于跳出循环体
E. continue语句不能用于switch语句中
24.若有定义:int y[4][4],( p)[4];及赋值p=y;则下列语句中可以输出数组元数y[2][0]的值的语句是( )
A. printf (″%d\n″,&y[2][0]); B. printf (″%d\n″, y[2][0]);
C. printf (″%d\n″,p[2][0]); D. printf (″%d\n″, y[2]);
E. printf (″%d\n″, ( (y+2));
25.设有关于结构体类型的定义:
struct worker
{
int id;
char name;
float salary;
} wl={102035,″Lihua″,2560.50}, p;
下列选项中语句语法正确的有( )
A. p=wl; B. p=&wl;
C. p->id=wl->id D. p->id=wl.id;
E. p.salary=wl.salary;
三、简答题(本大题共4小题,每小题4分,共16分)
26.有无default对switch语句有什么不同的影响?
27.写出do-while语句的一般形式及其执行过程。
28.定义 char a[ ]=″I am a student.″, str=a;等价于
char a[ ]= ″I am a student.″, str;
str=a;
吗?为什么?
29.设有说明:
struct vegetable
{
char part;
char color;
} clove;
char part _ of _ vegetable [3]={″AA″,″BB″,″CC″};
char seven _ color={″11″,″22″,″33″,″44″,″55″,″66″,″77″};
请分别写出将clove的成员part指向″BB″,成员color指向″55″的C语句。
四、阅读分析题(本大题共6小题,每小题5分,共30分)
30.阅读分析下面程序后,写出程序的运行结果。
# include ″stdio.h″
main ( )
{
int a=978,x,y,z,i,j,w;
x=a/100;
y=(a-100 x)/10;
z=a-10 y-100 x;
i=y>z? z:y;
j=y<=z? z:y;
w=100 x+10 i+j;
printf(″%d,%d,%d,%d\n″,x,y,z,w);
}
31.阅读分析下面程序后,写出程序的运行结果。
# include ″stdio.h″
main( )
{
int n,m;
for(n=1;n<=5;n++)
{
for(m=1;m<=4;m++)
printf(″%4d″,m n);
printf(″\n″);
}
}
32.阅读分析下面程序后,写出程序的运行结果。
#include″stdio.h″
main ( )
{
int arr[10],i,k=0;
for(i=0;i<10;i++)
arr[i]=i;
for(i=1;i<=4;i++)
{
k+=arr[i]+i;
printf(″%5d″,k);
}
}
33.阅读分析下面程序后,写出程序的运行结果。
#include″stdio.h″
int fun(int x)
{
int p;
if(x==0||x==1)
return(3);
p=x-fun(x-2);
printf(″%5d″,p);
return (p);
}
main( )
{
fun(9);
}
34.阅读下面程序,分析cat函数的功能并写出程序的运行结果。
#include″stdio.h″
void cat(char s,char t)
{
while( s) s++;
while(( s++= t++)!=′\0′);
}
main( )
{
char sl[80]=″computer″,s2[80]=″Pentium_″;
cat(s2,s1);
printf(″% s\n″,s2);
}
35.阅读分析下面部分程序:
struct cjd
{
char name[9];
float score[2][2];
} x;
float t[2][2]={70.5,65.0,83.0,92.5};
int j,k;
请用for循环将t数组中的元素依次赋给结构变量x中score数组的对应元素。
五、程序设计题(本大题共2小题,每小题12分,共24分)
36.请编程从键盘上输入十个整数,计算其中大于零的奇数的平均值,并输出这些大于零的奇数以及它们的平均值。
37.有若干个学生(不超过50人)的某一门课的成绩放在文件c:\cj.dat中,要求编程统计出90~100分,80~89分,70~79分,60~69分,0~59分的人数各有多少人。

3. 自考教育学本科到底有哪些科目需要考

自考教育一般都是专升本,教育专升本考试科目包括00018 计算机应用基础,中小学教育管理/ 00465 心理卫生与心理辅导,教育学(二),英语(二)/ 00467 课程与教学论/ 02111 教育心理学。

其中英语(二)科目可以用三科校考代替,免考;同一时间有多科考试安排的,选择其中一科报考。

一、报名条件:专科、高中、中职中专和技校毕业生及在籍学生,均可报名,免试入学。

二、学制、学习形式:学制两年,学习形式为业余。


(3)2009年4月自考课程与教学论扩展阅读

考试时间

全国自学考试时间一般如下:自考每年开设4次(各省市开考的次数由省级考办决定),考试时间分别为1月、4月、7月和10月,自2015年起大部分地区已将考试次数调整为4月和10月两次,详细情况请咨询所在地自考办。

报考之初,首先要查看当年自己所在省市都在什么时间考哪些课程,来确定自己要报考的科目。

考试计划

高等教育自学考试的开考专业,一般应在普通高等学校的专业目录中选择确定。

专业考试计划的内容包括:指导思想、培养目标与基本要求、学历层次与规格、考试课程与学分、实践性环节学习考核要求、主要课程说明、指定或推荐教材及参考书、其他必要的说明等。专业考试计划实行课程学分制。

4. 09年4月自考英语国家概况试卷及答案

全国2009年4月高等教育自学考试
英语国家概况试题
课程代码:00522

I. Read the following unfinished statements or questions carefully. For each unfinished statement or question, four suggested answers marked A, B, C and D are given. Choose the one that you think best completes the statement or answers the question. Write the letter of the answer you have chosen in the corresponding space on the answer sheet. (50 points, 1 point for each)
1. Strictly speaking, “the British Isles” refers to_______.
A. Great Britain B. Ireland
C. the United Kingdom D. Great Britain and Ireland
2. Which of the following kings was responsible for the complete establishment of the feudal system in England?
A. Edward I B. Henry II
C. Alfred the Great D. William the Conqueror
3. The spirit of the Great Charter was ______.
A. a limitation of the powers of the king B. a guarantee of the freedom of the serfs
C. a limitation of the powers of the Church D. a declaration of equality among all people
4. Which of the following is NOT true about the result of the Black Death?
A. Much land was left untended.
B. There was a terrible shortage of labour.
C. The surviving peasants had lost their power of bargaining.
D. Landowners tended to change from arable to sheep-farming.
5. The War of Roses that took place from 1455 to 1485 was fought between ______.
A. Britain and France B. the Parliament and the Crown
C. the working people and the aristocrats D. two branches of the Plantagenet family
6. The English Renaissance was largely literary, and it achieved its finest expression in the so-called ______.
A. Romantic poetry B. Romantic fiction
C. Elizabethan poetry D. Elizabethan drama
7. British constitutional monarchy is a system under which the powers of the ______ are limited by Parliament or the constitution.
A. church B. king or queen
C. government ministers D. Bishop’s court
8. The Tories in Britain were the forerunners of ______, which still bears this nickname today.
A. the Labor Party B. the Liberal Party
C. the Conservative Party D. the Social Democratic Party
9. Which of the following was NOT included in the six-point demand of the Chartist Movement?
A. Equal electoral districts B. Voting by secret ballot
C. The vote for all alt males D. The vote for all alt females
10. During the First World War, Britain was allied with ______.
A. Turkey B. the Central Powers
C. France and Russia D. Germany and Austria-Hungary
11. Who was the man that led Britain in the crisis of the Second World War?
A. George VI B. Theodore Roosevelt
C. Neville Chamberlain D. Sir Winston Churchill
12. The new policies adopted by Mrs. Thatcher and Conservative Government after the 1979 election was known as ______.
A. Thatcherism B. the New Deal
C. New Frontier D. Keynesianism
13. Over the past one thousand years, the British ______ has been broken only once between 1649 and 1660.
A. Cabinet B. Parliament
C. Monarchy D. Privy Council
14. Who has the power to appoint the Prime Minister in Britain?
A. The Queen B. The Parliament
C. The House of Lords D. The Church of England
15. In Britain, a full meeting of ______ is called only when a Sovereign dies or announces his or her intention to marry.
A. the Privy Council B. the Parliament
C. the House of Commons D. the House of Lords
16. Which of the following is NOT involved in the British judicial responsibilities?
A. Attorney General B. Ministry of Justice
C. The Lord Chancellor D. The Home Secretary
17. Bank holidays in Britain refer to ______.
A. official public holidays B. holidays for the banks only
C. public holidays except for the banks D. holidays for the financial institutions only
18. Which statement about the British universities is NOT true?
A. They enjoy academic freedom.
B. They cannot appoint their own staff.
C. They are governed by royal charters.
D. They provide their own courses and award their own degrees.
19. ______, the most popular sport in England as well as in Europe, has its traditional home in England where it was developed in the 19th century.
A. Basketball B. Tennis
C. Football D. Baseball
20. London’s Metropolitan Police Force is directly under the control of _______.
A. the Prime Minister B. the Lord Chancellor
C. the Home Secretary D. the Attorney General
21. Which statement about the Puritans is NOT true?
A. The Puritans did not allow religious dissent.
B. The Puritans were poor artisans and unskilled peasants.
C. They were dissatisfied with the political corruption in England.
D. They went to the United States to establish what they considered the true church.
22. The largest racial and ethnic minority in the U.S. is the ______, which accounts over 12.1% of the population.
A. blacks B. Asians
C. Indians D. Hispanics
23. The three well-known authors who penned the Federalist Papers are ______.
A. Thomas Jefferson, James Madison and John Jay
B. George Washington, James Madison and John Jay
C. Alexander Hamilton, James Madison and John Jay
D. Alexander Hamilton, James Madison and John Adams
24. When Abraham Lincoln was elected president, the southern states broke away and formed a new nation called ______.
A. the Southern States of America B. the Federalist States of America
C. the Confederate States of America D. the Anti-confederate States of America
25. With the development of instry and extension of railroad network in the early 20th century in the U.S.A., there appeared ______.
A. a rapid growth of cities B. an influx of foreign goods
C. an increase of urban ghettos D. a great increase in the number of farms
26. In the early 19th century, ______ actively used the Sherman Antitrust Act to stop monopolistic business mergers in the United States.
A. J.P. Morgan B. Woodrow Wilson
C. Henry Rockefeller D. Theodore Roosevelt
27. The Red Scare in 1919 and 1920 was a typical example of American ______.
A. religious intolerance B. intolerant nationalism
C. Progressive Movement D. deregulation of big trusts
28. In the early 1930s, the American foreign policy was isolationist, but the ______ suddenly changed the whole situation, which propelled the U.S. into the Second World War.
A. Pearl Harbor attack B. bombing of Guam island
C. seizing of American merchant ships D. sinking of American passenger ships
29. In 1962, President ______ finally decided on the use of naval force to prevent military material and arms from entering Cuba and demanded Soviet removal of the missiles there.
A. Nixon B. Truman
C. Johnson D. Kennedy
30. In 1853, in the ______, another 30,000 square miles of Mexican land were added to the territory of the U.S.A.
A. Atlantic Purchase B. Mexican Purchase
C. Gadsden Purchase D. Louisiana Purchase
31. The four problems that face the economy of the United States are______.
A. unemployment, inflation, financial crisis and trade deficit
B. unemployment, inflation, financial deficit and trade deficit
C. mortgage losses, inflation, financial deficit and trade deficit
D. unemployment, market failures, financial deficit and trade deficit
32. Which statement about the U.S. Constitution is NOT true?
A. It is the supreme law of the land.
B. It is the oldest written constitution in the world.
C. It was adopted in 1781 at the Second Continental Congress.
D. It provides the basis for political stability, economic growth and social progress.
33. The American President usually takes an oath of office, administered by the ______ of the United States in January.
A. Chief Justice B. House Speaker
C. Secretary of State D. Senate Majority Leader
34. The U.S. Constitution provides that the ______ shall be President of the Senate.
A. Vice President B. Secretary of State
C. Senate Majority Leader D. Senate Minority Leader
35. Which one of the following is NOT government-run at the U.S. federal level?
A. Motor vehicle B. The road system
C. National defense D. The postal service
36. It is generally agreed that U.S. higher ecation began with the______.
A. Civil War B. Independence War
C. founding of Harvard College D. founding of Princeton University
37. Formal ecation in the United States consists of ______.
A. kindergarten, junior and senior ecation
B. junior, elementary and secondary ecation
C. elementary, secondary and higher ecation
D. kindergarten, secondary and higher ecation
38. In his Old Man and the Sea, Ernest Hemingway ______.
A. expresses the idea of facing defeat courageously
B. shows the basic goodness and wisdom of ordinary people
C. praises the ideas of equality and democracy and the joy of common people
D. describes the sharp contrast of wealth and poverty in Chicago and New York
39. In the early part of the 19th century, ______ was the center of American writing.
A. Boston B. Detroit
C. New York City D. Philadelphia
40. The most important patriotic holiday in the U.S. is ______.
A. Halloween B. Veterans’ Day
C. Thanksgiving Day D. Independence Day
41. The capital city of Ireland is ______.
A. Cork B. Dublin
C. Galway D. Waterford
42. Historically, Ireland has been free of ethnic conflicts because of its ______.
A. racial unity B. racial homogeneity
C. multi-culturalism D. high rate of emigration
43. Ireland has the following demographic features EXCEPT ______.
A. a late marriage age
B. an excess of females in the population
C. a high proportion of bachelors and spinsters of all ages
D. a low birthrate compounded by a century of emigration
44. Which of the following is a typical bilingual city in Canada?
A. Ottawa B. Calgary
C. Toronto D. Vancouver
45. Which of the following statements about immigration in Canada is NOT true?
A. It is estimated that one-third of Canadians were born in other countries.
B. Immigration has always been an important source of its population growth.
C. Immigration has played an important role in the development of its economy.
D. in the past Britain and Western Europe were the principal sources of Canadian immigration.
46. In terms of land area, Canada is the ______ largest country in the world.
A. second B. third
C. fourth D. fifth
47. The head of state of Australia is ______.
A. the Governor B. the President
C. the Prime Minister D. the Queen of England
48. ______ is the only city on the western coast of Australia with a population of over one million.
A. Perth B. Sydney
C. Brisbane D. Melbourne
49. A ______, where two parts of the earth’s crust meet, runs the length of New Zealand.
A. fault line B. built area
C. dormant volcano D. geothermal area
50. The Treaty of Waitangi in 1840 was an agreement between ______.
A. the Maori whalers and the British Crown
B. the Maori people and the British missionaries
C. the Maori traders and the British missionaries
D. the chiefs of the Maori people and the British Crown
II. Give a one-sentence answer to each of the following questions. Write your answer in the corresponding space on the answer sheet. (30 points, 3 points for each)
51. What are the main functions of the British Parliament?
52. What were the two countries Elizabeth I successfully played off against each other for nearly 30 years?
53. What was the outcome of the English Civil War?
54. What are the three main Christian festivals in the U.K.?
55. What were the three cornerstones of American postwar economic boom?
56. What was the most important document proced between China and the United States when President Nixon visited China in 1972?
57. What is the most central function of the U.S. Congress?
58. What are the two major parties that dominate American politics at the federal, state and local levels?
59. What are the two official languages used in Ireland?
60. Who are the native people living in Australia?
III. Explain each of the following terms in English. Write your answer in the corresponding space on the answer sheet in around 40 words. (20 points, 5 points for each)
61. Open University
62. The Speaker (of the House of Commons in Britain)
63. Muckrakers
64. The stock market crash of 1929

5. 2009年4月全国自考马克思主义基本原理概论答案

02年开始自学考试,国家就不准把标准级考试的答案公布网上,私自上传的也有.
就等2个星期后 网上会公布答案.如果你真想知道答案.可以去一些自考书店购买试卷.附录一定有答案存在的.

6. 求考试代码00467自考科目《课程与教学论》下载自考试题

我可以帮到你的

7. 课程与教学论,考试分析题

课程与教学论专业2015年考研招生简章招生目录【专业代码:】
初试科目
①101思想政治理论
②201英语一
③311教育学专业基础综合(300分题)

8. 有没有人手上有自考<课程与教学论>的相关资料呀

你可以自己到淘宝上搜呀!我也自考呢,书都是淘宝的店主给我找的,一整套都找齐了,你只要告诉店主你考的是什么专业就行了!

9. 求2009年4月自考现代管理学试题及答案

要找2009年4月自考现代管理学试题及答案吗,那你去上学吧资料分享中心去找找看看,那里应该有的

10. 自考教育学中的课程与教学论几年考一次

不知道你是哪里人,地域区别每个地方都不一样,以我为例,我这边是一年考两次,公共课程的话是每次都可以报名考试,专业课比如就拿基础会计学这门课程来说,是4月份考,那么2011年4月你可以考试,10月就没有这个课程了,只能是次年4月再考。也就是一年一次,这是按我这边一年考2吃为例,如果你在的地区一年自考有4次考试的话,就不存这样的问题,一年同一个专业可以考两次。希望可以帮助到你。

热点内容
幼师专业怎么样 发布:2021-03-16 21:42:13 浏览:24
音乐小毛驴故事 发布:2021-03-16 21:40:57 浏览:196
昂立中学生教育闸北 发布:2021-03-16 21:40:47 浏览:568
建筑业一建报考条件 发布:2021-03-16 21:39:53 浏览:666
2017年教师资格注册结果 发布:2021-03-16 21:39:49 浏览:642
中国教师资格证查分 发布:2021-03-16 21:39:41 浏览:133
踵什么成语有哪些 发布:2021-03-16 21:38:20 浏览:962
东营幼师专业学校 发布:2021-03-16 21:35:26 浏览:467
机械电子研究生课程 发布:2021-03-16 21:33:36 浏览:875
杭州朝日教育培训中心怎么样 发布:2021-03-16 21:33:28 浏览:238