Plus Two (XII) Computer Application (Commerce) SCERT Focus area based Class Notes
|
XII Computer Application Focus area based class notes by Malappuram District Panchayath(Malayalam Version) |
XII Computer Application Focus area based class notes by Malappuram District Panchayath(English Version) |
XII Computer Application Focus area based class notes by Joy John |
Plus Two (XII) Computer Application (Commerce) Class Notes and Previous Questions by Anil Kumar
|
Chapter 1 : An Overview of C++ |
Chapter 2 : Arrays |
Chapter 3 : Functions |
Chapter 4 : Web Technology |
Chapter 5 : Web Designing using HTML |
Chapter 6 : Client Side Script using Javascript |
Chapter 7 : Web Hosting |
Chapter 8 : Database Management System |
Chapter 9 : Structured Query Language-SQL |
Chapter 10 : Enterprise Resource Planning-ERP |
Chapter 11 : Trends and Issues in ICT |
Plus Two Computer Application-Previous Questions |
Plus Two (XII) Computer Application (Commerce) Class Notes by Joy John& Sreej
|
Chapter 1: Review of C++ Programming |
Chapter 2: Arrays |
Chapter 3: Functions |
Chapter 4: Web Technology: Study Note 1 | Study Note 2 |
Chapter 5: Web Designing Using HTML |
Chapter 6: Client Side Script using JavaScript: Study Note 1 | Study Note 2 |
Chapter 7: Web Hosting: Study Note 1 | Study Note 2 |
Chapter 8: Database Management System: Study Note 1 | Study Note 2 |
Chapter 9 : Structured Query Language-SQL |
Chapter 10 : Enterprise Resource Planning-ERP: Study Note 1 | Study Note 2 | Study Note 3 |
Chapter 11 : Trends and Issues in ICT: Study Note 1 | Study Note 2 |
Plus Two (XII) Computer Application (Commerce) Class Notes by Anish Kumar
|
XII-Computer Application - Commerce Study Notes (Chapter 1) |
XII-Computer Application - Commerce Study Notes (Chapter 1-Mock Test Tool) |
XII-Computer Application - Sample Programs (Chapter 1) |
XII-Computer Application - Question Bank (Chapter 1) |
XII-Computer Application - Arrays -Notes (Chapter 2) |
XII-Computer Application - Arrays -Mock Test (Chapter 2) |
XII-Computer Application - Arrays -Sample Programs(Chapter 2) |
XII-Computer Application - Functions-Notes(Chapter 3) |
XII-Computer Application - Functions-Previous Questions(Chapter 3) |
XII-Computer Application - Functions-Mock Test(Chapter 3) |
XII-Computer Application - Review Questions (Chapter 2 & 3) |
XII-Computer Application - Web Technology-Notes(Chapter 4) |
XII-Computer Application- Web Designing Using HTML-Notes(Chapter 5) |
XII-Computer Application-Client Side Scripting Using Java Script-Notes(Chapter 6) |
XII-Computer Application-Java Script sample programs |
XII-Computer Application-Client Side Scripting Using Java Script-Notes Prepared by Bindu George,St.Ignatius HSS,Ernakulam(Chapter 6) |
XII-Computer Application-Web Hosting-Notes(Chapter 7) |
XII-Computer Application-Web Hosting-Notes(Malayalam-Chapter 7 by Priya GHSS Purathur) |
XII-Computer Application-Web Hosting-Power Point Presentation (Chapter 7) |
XII-Computer Application-Database Management System(Chapter 8) |
XII-Computer Application-SQL-Structured Query Language(Chapter 9) |
XII-Computer Application-ERP-Enterprise Resource Planning(Chapter 10) |
XII-Computer Application-Trends and Issues in ICT(Chapter 11) |
XII-Computer Application-Chapter 7,10,11 Notes by Sreej, Govt HSS,Kadakkal |
Plus Two (XII) Computer Application (Commerce) Short Notes by Thomas Vargeese,GHSS Kadamanitta
|
XII-Computer Application(Comm) -Short Notes (Chapter 1-Eng & Malayalam) |
XII-Computer Application(Comm) -Short Notes (Chapter 2-Eng & Malayalam) |
XII-Computer Application(Comm) -Short Notes (Chapter 3-Eng & Malayalam) |
XII-Computer Application(Comm) -Short Notes (Chapter 4-Eng & Malayalam) |
XII-Computer Application(Comm) -Short Notes (Chapter 5-Eng & Malayalam) |
XII-Computer Application(Comm) -Short Notes (Chapter 6-Eng & Malayalam) |
XII-Computer Application(Comm) -Short Notes (Chapter 7-Eng & Malayalam) |
XII-Computer Application(Comm) -Short Notes (Chapter 8-Eng & Malayalam) |
XII-Computer Application(Comm) -Short Notes (Chapter 9-Eng & Malayalam) |
XII-Computer Application(Comm) -Short Notes (Chapter 10 and 11-Eng & Malayalam) |
XII-Computer Application(Comm) -Quick Revision Notes (All in One) |
Plus Two(XII) Computer Appliccation(Commerce)- Quick Notes(Kaithang) by Pathanamthitta District Panchayath |
XII-Computer Application(Comm) -Previous Question Papers(Chapterwise) |
XII-Computer Application(Comm) -Previous Question Papers(Solved-Chapterwise) |
Plus Two (XII) Computer Application (Commerce) Short Notes by Abdul Sameer
|
XII-Computer Application(Commerce) -Short Notes (All Chapter) |
XI/XII Computer Application-Lab Work
|
Computer Application Lab Work-Guidelines |
Plus One (XI) Computer Application (Commerce) Class Notes
|
XI Computer Application Class Notes & Mock Test Tool |
Plus One (XI) /Plus Two(XII) Computer Application (Commerce) Presentation Files
|
XI/XII Computer Application Presentation Slides |
Edumate 2017 Question Bank for Plus Two SCERT |
|
Plus One (XI) /Plus Two(XII) Computer Application (Humanities) Study Notes |
കമ്പ്യൂട്ടർ അപ്ലിക്കേഷൻ ന്റെ കൂടുതൽ നോട്ട് തരണം
ReplyDeleteSir labil cheyyikkenda programme , code , software ithu koode upload cheyyamo
ReplyDelete@maajinidhin's
ReplyDeleteHi
Delete@maajinidhin's
ReplyDeleteATHU ENTHAYALUM PARAJU THARANAM SIR
pls upload +2 computer science notes also
ReplyDeletethanks for the CA uploads
Correction in the following program please note
ReplyDelete12) Write a program to produce the following output
using nested loop
A
A B
A B C
A B C D
A B C D E
corrected program is
#include
using namespace std;
int main()
{
int i,j;
char ch;
for(i=1;i<=5;i++)
{
ch=65;
for(j=1;j<=i;j++)
{
cout<<"\t"<<ch;
ch++;
}
cout<<"\n";
}
}
program to find sum of digits of an integer
ReplyDelete#include
using namespace std;
int main()
{
int n,rem,s=0,i;
cout<<"Enter a positive integer";
cin>>n;
i=n;
while(n>0)
{
rem=n%10;
s=s+rem;
n=n/10;
}
cout<<s;
}
by modifying the statement s=s+rem; by s=s*10+rem; we can reverse the number;
Sir ithu ellam important ano
DeleteNjan examinu e not vechanu prepare cheyune athu
DeleteThank you Sir,for your correction.I have corrected the program 12 and has uploaded a new one.I had taken hours for preparing study materials.Few errors may occur.I am still a Learner.Hoping that these materials will help many.
ReplyDeleteThis comment has been removed by the author.
ReplyDeletesir, please upload the lab practical programs(thanks for sample programs).
ReplyDeletesir, please upload other chapters notes also.
ReplyDeleteAnish sir.. plustwo chaptersinte note koodathe plusone chaptersite notukalum udan pratheekshikkunnu... :)
ReplyDeletePrograms using "function"s kuduthal tharaamo....??
ReplyDeleteThank you anish sir for your notes...
ReplyDeleteI WANT NOTES FROM LAST CHAPTER
ReplyDeletePlease upload notes of other chapters ( Computer Applications-Humanities)
ReplyDeleteyes
Delete#include
ReplyDeleteusing namespace std;
int main()
{
for(char i='A';i<='E';i++)
{
cout<<"\n";
for(char j='A';j<=i;j++)
{
cout<<j;
}
}
}
This will also give same o/p
no
Deletesir please uplode nots in malayalam
ReplyDeletewe want SQL Notes
ReplyDeleteഉടനെ തയ്യാറാക്കുന്നതാണ്
ReplyDeleteGREAT NOTES PRIYA MADAM
ReplyDeleteThomas sir , i want malayalam short note about enterprise resource planning ,can you help me?sir
ReplyDeletehello. can you please tell me about the weightage for each chapters in computer - +2 commerce.It's quite urgent. please do consider.
ReplyDeleteyes,essay type questions are from which chapters?
DeleteAbdul sameer sir , thank u 4 ur short notes. can u prepare such notes for humanities first year students
ReplyDeleteplease give plus two computer application notes in malayalam
ReplyDeleteplease make available more computer application(plus two) notes in malayalam
ReplyDeletegood notes i like it it help me to get more marks
ReplyDeleteThank s
ReplyDelete
ReplyDeleteReally nice information you had posted. Its very informative and definitely it will be useful for many people
iOS Training in Chennai
Android Training in Chennai
php Training in Chennai
+ 2 കമ്പ്യൂട്ടർ ആപ്ളിക്കേഷന്റെ ( humanities) എല്ലാ Chapter റേയും മലയാളം reference വേണം. eg: Web hosting ന്റെ മലയാളം reference പോലെ
ReplyDeletesir please post weightage of computer application for this exam
ReplyDeleteI’ve been browsing on-line greater than three hours today, but I never discovered any attention-grabbing article like yours. It is beautiful worth sufficient for me. Personally, if all webmasters and bloggers made good content material as you did, the net will be a lot more helpful than ever before.
ReplyDeleteiOS Training in Chennai
Android Training in Chennai
php Training in Chennai
This article is very much helpful and i hope this will be an useful information for the needed one. Keep on updating these kinds of informative things...
ReplyDeleteFitness SMS
Fitness Text
Salon SMS
Salon Text
Investor Relation SMS
Investor Relation Text
Sir pls upload +2 humanities computer application notes......
ReplyDeleteI hopes it will be soon
Humanities computer application ille..........
ReplyDeletesir Plz upload +2 computer application notes in PSEB
ReplyDeletejournalism note ഇടണഠ
ReplyDeleteI found this blog after a long time which is really helpful to let understand different approaches. I am going to adopt these new point to my career and thankful for this help.
ReplyDeleteติว sat
Amazing article. Your blog helped me to improve myself in many ways thanks for sharing this kind of wonderful informative blogs in live. I have bookmarked more article from this website. Such a nice blog you are providing ! Kindly Visit Us @ Best Travels in Madurai | Tours and Travels in Madurai
ReplyDeleteComputer application Malayalam .note
ReplyDeleteComputer application Malayalam .note
ReplyDeletehayyuentemmo....poli sanam,,,mind blowing....
ReplyDelete