Saturday, December 22, 2012

URDU in India


Source : http://www.mainstreamweekly.net/article1094.html

MAINSTREAM, VOL XLVII, NO 1, DECEMBER 20, 2008

Status of Urdu in India

BASED ON ANALYSIS OF LANGUAGE CENSUS 2001
On December 13, 2007 the Census of India has released the Language Data of Census 2001, after an incomprehensible delay of more than six years. It is yet to be published in book form but it is available on the official website of the Registrar General of India (censusindia.gov.in) and on CD. The Census covers 22 Scheduled Languages and 86 Non-Scheduled Languages.

Poetry of pain


A play depicting the life of Faiz Ahmad Faiz through his verses provided thrilling fare for theatre goers
It was a most thrilling evening in the theatre, an evening celebrating the poetry of Faiz Ahmad Faiz, one of the most outstanding Urdu poets. The play “Bol Ke Lab Aazad Hain Tere” was staged on the occasion by Abhigyan Natya Association at Shri Ram Centre this past week, as part of the Modern Theatre Festival organised by the Sahitya Kala Parishad, Delhi.
Written by Parvez Ahmed, a senior journalist, novelist and playwright, the title of the play is drawn from Faiz Ahmad Faiz’s famous poem written when he was in prison. The playwright has created a narrator who also participates in the dramatic action. This storytelling device provides the narrative uninterrupted flow. The main focus is on Faiz’s poetry. Pakistan’s political history and the events in the personal life of Faiz which inspired the poet to compose poems form the backdrop of the play. Some of the memorable pieces are those written when he was behind bars. These poems are a call to all oppressed humanity to rise unitedly against tyrants.
In fact, we have witnessed several plays and dramatised versions of Faiz’s poetry in the past. The musical play “Dard Aayega Dabe Paon” by Sheela Bhatia is considered a classical production. During his centenary celebrations last year a number of plays were staged. More recent plays written by Danish Iqbal — “Kuchh Ishq Kiya Kuch Kaam” and “Chand Roz Aur Meri Jaan — are significant works that have enriched Urdu theatre in the Capital.

National Seminar on Urdu litterateur Dr. Abu Muhammad Sahar in Bhopal


By Pervez Bari, TwoCircles.net,
Bhopal: A two-day National Seminar on the life and literary pursuits of Urdu litterateur late Dr. Abu Muhammad Sahar of Bhopal (1928-2002), who was a critic, linguist and poet, is being held here on December 22 and 23 at the Madhya Pradesh Urdu Academy’s premises in the Mulla Ramoozi auditorium.
Dr. Aziz Qureshi, the Governor of Uttarkhand, will be the chief guest at the inaugural function of the seminar which would be presided over by Dr. Khwaja Ikramuddin, Director of National Council for Promotion of Urdu Language, (NCPUL), New Delhi. Prof. Akhtarul-Wasey, Director of Dr. Zakir Husain Institute of Islamic Studies, Jamia Millia Islamia, New Delhi, would be the guest of honour on the occasion.


Dr. Abu Muhammad Sahar
The keynote address of the seminar will be delivered by Dr. Mukhtar Shamim in the inaugural session. Mr. Owais Arab, president of Association of Indian Muslims, (AIM), Bhopal, will give the welcome address.
The valedictory function of the seminar on December 23 will be presided over by well-known Urdu critic Prof. Afaq Ahmad and Mr. Habeeb Ahmad (both from Bhopal). The seminar is being organised by AIM in collaboration with NCPUL, Madhya Pradesh Urdu Academy and Chitransh ADPG College, Bhopal, which have jointly sponsored it.

Govt committed for promotion of Urdu: Akhilesh


Lucknow: Uttar Pradesh Chief Minister Akhilesh Yadav on Thursday asserted that his government will take all necessary steps for the development of Urdu language.

"Urdu is an important language which enhances social harmony and is also being used in official work. Government has taken several steps for its development in the past and will take more such decisions in coming months. It has also increased the budget for development of Urdu," Akhilesh said.

Wednesday, December 19, 2012

Question and Answers of "C" Language (Module VI) One Year Diploma Course (Part-VII)



61. What do the ‘c’ and ‘v’ in argc and argv stand for?

Ans: The c in argc(argument count) stands for the number of command line argument the program is
invoked with and v in argv(argument vector) is a pointer to an array of character string that contain the arguments.

62. IMP>what are C tokens?


Ans: There are six classes of tokens: identifier, keywords, constants, string literals, operators and other separators.


63. What are C identifiers?

Ans: These are names given to various programming element such as variables, function, arrays.It is a combination of letter, digit and underscore.It should begin with letter. Backspace is not allowed.


64. Difference between syntax vs logical error?

Ans:
Syntax Error 
1-These involves validation of syntax of language.
2-compiler prints diagnostic message.

Logical Error
1-logical error are caused by an incorrect algorithm or by a statement mistyped in such a way
that it doesn’t violet syntax of language.
2-difficult to find.


65. What is preincrement and post increment?


Ans: ++n (pre increment) increments n before its value is used in an assignment operation or any
expression containing it. n++ (post increment) does increment after the value of n is used.


66. Write a program to interchange 2 variables without using the third one.


Ans:
a ^= b; ie a=a^b
b ^= a; ie b=b^a;
a ^= b ie a=a^b;
here the numbers are converted into binary and then xor operation is performed.
You know, you’re just asking “have you seen this overly clever trick that’s not worth applying on
modern architectures and only really applies to integer variables?”


67. What is the maximum combined length of command line arguments including the space between adjacent arguments?


Ans: It depends on the operating system.

68. What are bit fields? What is the use of bit fields in a Structure declaration?

Ans: A bit field is a set of adjacent bits within a single implementation based storage unit that we
will call a “word”.
The syntax of field definition and access is based on structure.
Struct {
unsigned int k :1;
unsigned int l :1;
unsigned int m :1;
}flags;
the number following the colon represents the field width in bits.Flag is a variable that contains three bit fields.


69. What is a preprocessor, what are the advantages of preprocessor?

Ans: A preprocessor processes the source code program before it passes through the compiler.
1- a preprocessor involves the readability of program
2- It facilitates easier modification
3- It helps in writing portable programs
4- It enables easier debugging
5- It enables testing a part of program
6- It helps in developing generalized program


70. What are the facilities provided by preprocessor?
Ans:
1-file inclusion
2-substitution facility
3-conditional compilation

Question and Answers of "C" Language (Module VI) One Year Diploma Course (Part-V)


40. What is dynamic memory allocation?

Ans: A dynamic memory allocation uses functions such as malloc() or calloc() to get memory dynamically. If these functions are used to get memory dynamically and the values returned by these function are assigned to pointer variables, such a way of allocating memory at run time is known as dynamic memory allocation.


41. What is the purpose of realloc?


Ans: It increases or decreases the size of dynamically allocated array. The function realloc (ptr,n) uses two arguments. The first argument ptr is a pointer to a block of memory for which the size is to be altered. The second argument specifies the new size. The size may be increased or decreased. If sufficient space is not available to the old region the function may create a new region.

42. What is pointer to a pointer?


Ans: If a pointer variable points another pointer value. Such a situation is known as a pointer to a pointer.
Example:
int *p1,**p2,v=10;
P1=&v; p2=&p1;
Here p2 is a pointer to a pointer.


43. What is an array of pointers?


Ans: if the elements of an array are addresses, such an array is called an array of pointers.

44. Difference between linker and linkage?


Ans: Linker converts an object code into an executable code by linking together the necessary built in
functions. The form and place of declaration where the variable is declared in a program determine the linkage of variable.


45. Is it possible to have negative index in an array?


Ans: Yes it is possible to index with negative value provided there are data stored in this location. Even if it is illegal to refer to the elements that are out of array bounds, the compiler will not produce error because C has no check on the bounds of an array.

46. Why is it necessary to give the size of an array in an array declaration?


Ans: When an array is declared, the compiler allocates a base address and reserves enough space in
memory for all the elements of the array. The size is required to allocate the required space and hence size must be mentioned.


47. What modular programming?


Ans: If a program is large, it is subdivided into a number of smaller programs that are called modules or subprograms. If a complex problem is solved using more modules, this approach is known as modular programming.

48. What is a function?


Ans: A large program is subdivided into a number of smaller programs or subprograms. Each subprogram
specifies one or more actions to be performed for the larger program. Such sub programs are called functions.


49. What is an argument?


Ans: An argument is an entity used to pass data from the calling to a called function.

50. What are built in functions?


Ans: The functions that are predefined and supplied along with the compiler are known as built-in functions. They are also known as library functions.

Tuesday, December 18, 2012

Question and Answers of "C" Language (Module VI) One Year Diploma Course (Part-IV)


31. What is near pointer?

Ans: A near pointer is 16 bits long. It uses the current content of the CS (code segment) register (if
the pointer is pointing to code) or current contents of DS (data segment) register (if the pointer is pointing to data) for the segment part, the offset part is stored in a 16 bit near pointer. Using near pointer limits the data/code to 64kb segment.

32. In C, why is the void pointer useful? When would you use it?


Ans: The void pointer is useful because it is a generic pointer that any pointer can be cast into and
back again without loss of information.


33. What is a NULL Pointer? Whether it is same as an uninitialized pointer?

Ans: Null pointer is a pointer which points to nothing but uninitialized pointer may point to anywhere.


34. Are pointers integer?

Ans: No, pointers are not integers. A pointer is an address. It is a positive number.


35. What does the error ‘Null Pointer Assignment’ means and what causes this error?

Ans: As null pointer points to nothing so accessing a uninitialized pointer or invalid location may cause an error.


36. What is generic pointer in C?

Ans: In C void* acts as a generic pointer. When other pointer types are assigned to generic pointer,
conversions are applied automatically (implicit conversion).


37. Are the expressions arr and &arr same for an array of integers?

Ans: Yes for array of integers they are same.


38. IMP>How pointer variables are initialized?

Ans: Pointer variables are initialized by one of the following ways.
I. Static memory allocation
II. Dynamic memory allocation


39. What is static memory allocation?

Ans: Compiler allocates memory space for a declared variable. By using the address of operator, the
reserved address is obtained and this address is assigned to a pointer variable. This way of assigning pointer value to a pointer variable at compilation time is known as static memory allocation.


40. What is dynamic memory allocation?

Ans: A dynamic memory allocation uses functions such as malloc() or calloc() to get memory dynamically. If these functions are used to get memory dynamically and the values returned by these function are assigned to pointer variables, such a way of allocating memory at run time is known as dynamic memory allocation.

Question and Answers of "C" Language (Module VI) One Year Diploma Course (Part-III)


21. Out of fgets() and gets() which function is safe to use and why?

Ans: fgets() is safer than gets(), because we can specify a maximum input length. Neither one is completely safe, because the compiler can’t prove that programmer won’t overflow the buffer he pass to fgets ().

22. Difference between strdup and strcpy?


Ans: Both copy a string. strcpy wants a buffer to copy into. strdup allocates a buffer using malloc().
Unlike strcpy(), strdup() is not specified by ANSI .

23. What is recursion?
Ans: A recursion function is one which calls itself either directly or indirectly it must halt at a definite point to avoid infinite recursion.


24. Differentiate between for loop and a while loop? What are it uses?

Ans: For executing a set of statements fixed number of times we use for loop while when the number of
iterations to be performed is not known in advance we use while loop.


25. What is storage class? What are the different storage classes in C?

Ans: Storage class is an attribute that changes the behavior of a variable. It controls the lifetime, scope and linkage. The storage classes in c are auto, register, and extern, static, typedef.


26. What the advantages of using Unions?

Ans: When the C compiler is allocating memory for unions it will always reserve enough room for the
largest member.


27. What is the difference between Strings and Arrays?
Ans: String is a sequence of characters ending with NULL .it can be treated as a one dimensional array
of characters terminated by a NULL character.



28. What is a far pointer? Where we use it?

Ans: In large data model (compact, large, huge) the address B0008000 is acceptable because in these
model all pointers to data are 32bits long. If we use small data model(tiny, small, medium) the above address won’t work since in these model each pointer is 16bits long. If we are working in a small data model and want to access the address B0008000 then we use far pointer. Far pointer is always treated as a 32bit pointer and contains a segment address and offset address both of 16bits each. Thus the address is represented using segment : offset format B000h:8000h. For any
given memory address there are many possible far address segment : offset pair. The segment register contains the address where the segment begins and offset register contains the offset of data/code from where segment begins.


29. What is a huge pointer?

Ans: Huge pointer is 32bit long containing segment address and offset address. Huge pointers are
normalized pointers so for any given memory address there is only one possible huge address segment: offset pair. Huge pointer arithmetic is doe with calls to special subroutines so its arithmetic slower than any other pointers.



30. What is a normalized pointer, how do we normalize a pointer?

Ans: It is a 32bit pointer, which has as much of its value in the segment register as possible. Since
a segment can start every 16bytes so the offset will have a value from 0 to F. for normalization convert the address into 20bit address then use the 16bit for segment address and 4bit for the offset address. Given a pointer 500D: 9407,we convert it to a 20bitabsolute address 549D7,Which then normalized to 549D:0007.

Monday, December 17, 2012

Question and Answers of "C" Language (Module VI) One Year Diploma Course (Part-II)



11. Difference between pass by reference and pass by value?


Ans: Pass by reference passes a pointer to the value. This allows the callee to modify the variable directly.Pass by value gives a copy of the value to the callee. This allows the callee to modify the value without modifying the variable. (In other words, the callee simply cannot modify the variable, since it lacks a reference to it.)

12. What is static identifier?


Ans: A file-scope variable that is declared static is visible only to functions within that file. A
function-scope or block-scope variable that is declared as static is visible only within that scope. Furthermore, static variables only have a single instance. In the case of function- or block-scope variables, this means that the variable is not “automatic” and thus retains its value across function invocations.


13. Where is the auto variables stored?


Ans: Auto variables can be stored anywhere, so long as recursion works. Practically, they’re stored on
the stack. It is not necessary that always a stack exist. You could theoretically allocate function invocation records from the heap.


14. Where does global, static, and local, register variables, free memory and C Program instructions get stored?


Ans: Global: Wherever the linker puts them. Typically the “BSS segment” on many platforms.
Static: Again, wherever the linker puts them. Often, they’re intermixed with the globals. The only difference between globals and statics is whether the linker will resolve the symbols across compilation units.Local: Typically on the stack, unless the variable gets register allocated and never spills.Register: Nowadays, these are equivalent to “Local” variables. They live on the stack unless they get register-allocated.


15. Difference between arrays and linked list?


Ans: An array is a repeated pattern of variables in contiguous storage. A linked list is a set of
structures scattered through memory, held together by pointers in each element that point to the next element. With an array, we can (on most architectures) move from one element to the next by adding a fixed constant to the integer value of the pointer. With a linked list, there is a “next” pointer in each structure which says what element comes next.


16. What are enumerations?


Ans: They are a list of named integer-valued constants. Example:enum color { black , orange=4,
yellow, green, blue, violet };This declaration defines the symbols “black”, “orange”, “yellow”, etc. to have the values “1,” “4,” “5,” … etc. The difference between an enumeration and a macro is that the enum actually declares a type, and therefore can be type checked.


17. Describe about storage allocation and scope of global, extern, static, local and register variables?
Ans:
Globals have application-scope. They’re available in any compilation unit that includes an
appropriate declaration (usually brought from a header file). They’re stored wherever the linker puts them, usually a place called the “BSS segment.”
Extern? This is essentially “global.”
Static: Stored the same place as globals, typically, but only available to the compilation unit that contains them. If they are block-scope global, only available within that block and its subblocks.
Local: Stored on the stack, typically. Only available in that block and its subblocks.
(Although pointers to locals can be passed to functions invoked from within a scope where that local is valid.)
Register: See tirade above on “local” vs. “register.” The only difference is that
the C compiler will not let you take the address of something you’ve declared as “register.”


18. What are register variables? What are the advantages of using register variables?

Ans: If a variable is declared with a register storage class,it is known as register variable.The
register variable is stored in the cpu register instead of main memory.Frequently used variables
are declared as register variable as it’s access time is faster.



19. What is the use of typedef?

Ans: The typedef help in easier modification when the programs are ported to another machine.
A descriptive new name given to the existing data type may be easier to understand the code.


20. Can we specify variable field width in a scanf() format string? If possible how?

Ans: All field widths are variable with scanf(). You can specify a maximum field width for a given
field by placing an integer value between the ‘%’ and the field type specifier. (e.g. %64s). Such a specifier will still accept a narrower field width.
The one exception is %#c (where # is an integer). This reads EXACTLY # characters, and it is the
only way to specify a fixed field width with scanf()

Question and Answers of "C" Language (Module VI) One Year Diploma Course (Part-I)


1. What does static variable mean?

Ans: Static variables are the variables which retain their values between the function calls. They are initialized only once their scope is within the function in which they are defined.

2. What is a pointer?


Ans: Pointers are variables which stores the address of another variable. That variable may be a scalar (including another pointer), or an aggregate (array or structure). The pointed-to object may be part of a larger object, such as a field of a structure or an element in an array.


3. What are the uses of a pointer?


Ans: Pointer is used in the following cases
i) It is used to access array elements
ii) It is used for dynamic memory allocation.
iii) It is used in Call by reference
iv) It is used in data structures like trees, graph, linked list etc.


4. What is a structure?


Ans: Structure constitutes a super data type which represents several different data types in a single unit. A structure can be initialized if it is static or global.


5. What is a union?


Ans: Union is a collection of heterogeneous data type but it uses efficient memory utilization technique by allocating enough memory to hold the largest member. Here a single area of memory contains values of different types at different time. A union can never be initialized.


6. What are the differences between structures and union?


Ans: A structure variable contains each of the named members, and its size is large enough to hold all the members. Structure elements are of same size.
A union contains one of the named members at a given time and is large enough to hold the largest member. Union element can be of different sizes.


7. What are the differences between structures and arrays?


Ans: Structure is a collection of heterogeneous data type but array is a collection of homogeneous data types.
Array 
1-It is a collection of data items of same data type.
2-It has declaration only
3-.There is no keyword.
4- array name represent the address of the starting element.
Structure
1-It is a collection of data items of different data type.
2- It has declaration and definition
3- keyword struct is used
4-Structure name is known as tag it is the short hand notation of the declaration.


8. In header files whether functions are declared or defined?


Ans: Functions are declared within header file. That is function prototypes exist in a header file,not function bodies. They are defined in library (lib).


9. What are the differences between malloc () and calloc ()?


Ans: Malloc Calloc 1-Malloc takes one argument Malloc(a);where a number of bytes 2-memory allocated contains garbage values
1-Calloc takes two arguments Calloc(b,c) where b no of object and c size of object
2-It initializes the contains of block of memory to zerosMalloc takes one argument, memory allocated contains garbage values.
It allocates contiguous memory locations. Calloc takes two arguments, memory allocated contains all zeros, and the memory allocated is not contiguous.


10. What are macros? What are its advantages and disadvantages?


Ans: Macros are abbreviations for lengthy and frequently used statements. When a macro is called the entire code is substituted by a single line though the macro definition is of several lines.
The advantage of macro is that it reduces the time taken for control transfer as in case of
function.
The disadvantage of it is here the entire code is substituted so the program becomes
lengthy if a macro is called several times.

Venue for the Exam Centre of 1402 on Saturday 29.12.2012


ALL the Students of One Year Diploma Course are here by informed examination of our centre  code 1402 for the One Year Diploma in Computer Application Business Accounting and Multilingual DTP of NCPUL, scheduled to be held on Saturday 29th December 2012 will be held at following venue: 
AL-AMEEN
New Horizon School Complex
North of Humayun’s Tomb
Hazart Nizamuddin East
New Delhi -110 013
Ph no. 09891910282

For any clarification please contact the above mentioned phone no.

Thanking you

For Al-Ameen Institute of Information Technology



(Naveen Raj Bhatia)
Centre In-charge (1402)

Sunday, December 16, 2012

About BPP Course of IGNOU


Admission Notice for Jan 2013 Session

Admission Notice to One Year Diploma in Computer Application and Multilingual Desk Top Publishing (CABA and MDTP) for January 2013 Session.


Saturday, December 15, 2012


NOTICE
Theory Exam 
 
All the student’s are here by informed that the THEORY EXAMINATION will held on Saturday 15th Dec 2012 and  PRACTICAL EXAMINATION Monday 17th Dec 2012, for batch July 2012 to June 2013 as per following schedule:





DATE
MODULE EXAM
ROLL NO
BATCH TIMING
15th  Dec 2012
(SATURDAY)
M3:FINANCIAL ACCOUNTING WITH TALLY & PERSONALITY DEVELOPEMENT
01  - 50
09:00 A.M  -  11:00 A.M.
15th Dec 2012
(SATURDAY)
M3:FINANCIAL ACCOUNTING WITH TALLY & PERSONALITY DEVELOPEMENT
       51 onwards
11:00 A.M.  – 01:00 P.M.

Practical Exam 
 
 



PRACTICAL EXAM
M3:FINANCIAL ACCOUNTING WITH TALLY & PERSONALITY DEVELOPEMENT




17th Dec 2012
(MONDAY)
Roll No
Timinig
01 - 20
10:00  –  11:00
21 - 40
11:00  –  12:00
41 - 60
12:00 –   01:00
61 - 80
02:00  –  03:00
81 - 104
03:00 -   04:00


                                                                                                                                                                                                                                                                                                                                                                Naveen Raj Bhatia

(Centre in charge)

Notice for January 2012 NCPUL Students - Module Exam


NOTICE
Theory Exam 
All the student’s are here by inform that the THEORY EXAMINATION will held on Saturday 15th Dec 2012 and  PRACTICAL EXAMINATION Monday 17th Dec  2012, Monday for batch Jan 2012 to Dec 2012 as per schedule displayed below:





DATE
MODULE EXAM
ROLL NO
BATCH TIMING
15th Dec 2012
(SATURDAY)
M6:”C” PROGRAMING LANGUAGE
01  - 36
02:00 P.M -  04:00 P.M.

Practical Exam   
 


M6: ”C” PROGRAMING LANGUAGE
17th Dec 2012
(MONDAY)
ROLL NO
PRACTICAL TIME
01 - 36
04:00 P.M  –  05:00 P.M

                                                                                                                                                                                                                                                                                                                                                                 Naveen Raj Bhatia

(Centre in charge)

Monday, December 10, 2012

Notice Regarding CABA MDTP Examination (Dec 2012)


Notice Regarding CABA MDTP Examination (Dec 2012) Schedule


All students are hereby informed that the examination of CABA-MDTP course has been scheduled on 29th Dec, 2012, Saturday as per following schedule.



SR NO
SEMESTER NO
TIME
1.
Semester 1
9:00 A.M to 12:00 Noon
2.
Semester 2
2:00 P.M to 05:00 P.M



VENUE FOR EXAM CENTRE:

NEW HORIZON SCHOOL,
NORTH OF HUMANYU’S TOMB,
NEZMUDDIN EAST,
NEW DELHI-110013



IMPORTANT INSTRUCTION:

1.         Candidate should bring the Admit Card & I Card in the examination.
2.     Candidate should be seated inside the examination hall 15min. before the start of examination.
3.      Candidate coming to the examination hall after 30 minutes of the commencement of the examination will not be permitted to enter the hall.
4.       Candidate once seated will be permitted to leave the examination hall only 1 hour 30  from the commencement of the examination.
5.        Please append candidates signature and write candidate answer sheet nos. at appropriate place in the attendance during the examination, otherwise candidates answer book will not be evaluated and will be treated as absent.
6.         Candidate are prohibited from bringing textbooks, notes and programmable calculations in the examination hall. Pagers and mobile Phones are not permitted.
7.         For Practical Examination, confirm the date and time from your Centre In charge.
8.     In case of any discrepancy in admit card, please contact the Examination In charge immediately.






(Centre In charge)