respected sir, i did my MCA in 2013 when i am going to attend
to an interview i was asked about my project how will i
explain my project could please help me in this and my project
title is "Social Networking Site For Social Responsibility"
Answer / kar4u
Starting with your project name...
then team size
duration of project
then explain about project..
like wat are the benfits of your topic(project)
&&& so...
Is This Answer Correct ? | 4 Yes | 0 No |
What is the match merge ? compare data step match merge with proc sql merge - how many types are there ? data step vs proc sql
Is the following code legal? struct a { int x; struct a *b; }
how to delete an element in an array
main() { printf("%x",-1<<4); }
main() { int i; i = abc(); printf("%d",i); } abc() { _AX = 1000; }
main() { int (*functable[2])(char *format, ...) ={printf, scanf}; int i = 100; (*functable[0])("%d", i); (*functable[1])("%d", i); (*functable[1])("%d", i); (*functable[0])("%d", &i); } a. 100, Runtime error. b. 100, Random number, Random number, Random number. c. Compile error d. 100, Random number
write the function. if all the character in string B appear in string A, return true, otherwise return false.
Write, efficient code for extracting unique elements from a sorted list of array. e.g. (1, 1, 3, 3, 3, 5, 5, 5, 9, 9, 9, 9) -> (1, 3, 5, 9).
13 Answers Intel, Microsoft, TCS,
How we print the table of 2 using for loop in c programing?
main() { struct student { char name[30]; struct date dob; }stud; struct date { int day,month,year; }; scanf("%s%d%d%d", stud.rollno, &student.dob.day, &student.dob.month, &student.dob.year); }
main() { char a[4]="HELLO"; printf("%s",a); }
Write a C program to print look and say sequence? For example if u get the input as 1 then the sequence is 11 21 1211 111221 312211 12112221 .......(it counts the no. of 1s,2s etc which is in successive order) and this sequence is used in run-length encoding.