Click Here to Get Worlds Smallest Email Id (Better than Gmail & Yahoo!)

JobsAssist.com - Jobs Resources & Placement Papers
Get Vyom Interview Success Kit Now!
» Now 9,000 Questions & Answers !!
» 10,000+ Pages | Written by 58 Subject Experts | 81 Question Categories
» Every Successful Candidate has this!
Special

Get Salary before getting a Job!
Click here


Main Menu

JobsAssist.com Home Home
 Freshers Jobs Freshers Jobs
Latest Freshers Jobs Latest Jobs
Add Freshers Jobs to My Yahoo My Yahoo!
Free Vyom Career Magazine Free Career Mag
 IT Companies Placement Papers IT Placement Papers
 Govt. Sector Companies Placement Papers Govt. Sector Papers
 5000 IT Companies Directory IT Directory
 Free Magazines Free Magazines
 Consultants Directory Consultants
 Training Institutes Directory Training Inst.
 Interview Questions Interview Questions
 Motivational Quotes Motivational Quotes
 Call Center Information Call Center Info
 Final Year Projects Final Year Projects
 Jobs Discussion Forums Jobs Forum
 Vyom Resume Submitter Resume Submitter
 Free Resume Builder Downloads Free Resume Builders
 Contact Us Contact Us


Resume Submitter

Vyom Network
    Vyom Resources
    Source Codes
    Online Exams
    Discussions World
    Free eBooks
    20,000 Downloads

HOT Resources
Free Career eMagazine

  Advertise for FREE!

HOT eBook

Search JobsAssist.com
Google



Your Ad Here

Welcome to JobsAssist.com - Single Stop for Complete Career Resources


Home » Placement Papers » GlobalEdge Placement Papers » GlobalEdge Placement Paper 1

Join VYOM-JOBS and receive latest 2008 Placement Papers for FREE


GlobalEdge Placement Paper 1


Error icon Receive Genuine Job Information & latest Walk-in details in your mailbox everyday! Join our Yahoo! Group by entering your email in the form below:


Search Jobs:
(For Example: Software Testing Jobs, BPO Jobs, J2EE Jobs, etc.)
Click here to register on India's Fastest growing Job site.


GlobalEdge Sample Paper


1. What is the output of the following code ?

int main( )
{
for( ; ;);
printf("Hello\n");
return 0;
}

a. give compilation error
b. prints Hello infinite times
c. Runs in an infinite loop without printing anything.
d. prints Hello once.

Ans: c


2. Output of the code?
FUNC (int *p)
{
p = (int *)malloc(100);
printf("p:%x",p);
}

int main( )
{
int *ptr;
FUNC(ptr);
printf("Ptr:%x",ptr);
return 0;
}

a. Both printf statements prints same values.
b. Both print different values.
c. Gives compile time error.
d. Gives run time error.

Ans: b

3. Output of the code?
int main()
{
char a[] = "world";
printf("%d %d\n",strlen(a),sizeof(a));
return 0;
}

a. 5,5
b. 6,5
c. 5,6
d. 6,6

Ans: c

4. What is the output generated?

main()
{
char *s = "Hello";
printf("%s",1(s));
}

a. Hello
b. ello
c. e
d. none of these.

Ans: b


5. Interpret the given declaration 

char ( * ( f ( ) ) [ ] )( )

a. f is a pointer to function returning char 
b. f is a pointer to an array of function returning a char
c. Invalid declaration
d. f is a function returning pointer to array[] of pointer to function returning char.

Ans : d





1. A binary tree of height h, h > 0 has 

a. at least h and atmost 2*h-1 elements in it.
b. at least 2^h and atmost (2^h)+1 elementz in it.
c. at least 2^h -1 and atmost h^2 elements in it.
d. at least h and atmost (2^h) - 1 elements in it.

Ans: d

2. Thrashing is

a. flooding of pages in the memory.
b. increase in removal of pages from memory.
c. increase in page faults leading to decrease in CPU utilization.
d. removal of unused pages from memory making space for new ones.

Ans: c

3. Recursive Descent parser is a type of

a. Bottom up parser.
b. Top Down parser.
c. None of these.
d. Bottom down parser.

Ans: b

4. alloca() allocates memory from 

a. Heap.
b. Reserved memory.
c. Data segment.
d. Stack.

Ans: d

5. What is the octal equivalent of decimal (5468). 

a. 12360.
b. 12560.
c. None of these.
d. 12650. 

Ans : c

 


GloabalEdge Sample paper

1. main()
{ int i; 
i=(2,3); 
printf("%d",i); 
}

a)2 b)3 c)Compiler error d)Syntax error. 

ans : 3

2. main(){ 
char str[]="GESL"; 
printf("%d %d",sizeof(str),strlen(str));
}

a)5,5 b)4,4 c)5,4 d)4,5 
ans: 5, 4

3. main(){ for(i=0;i++;i<100) printf("hello world\n"); }

a)100 times b)0 times c)Infinite loop d)None of the above. 


ans: 0 times.

4. main(){ for(i=1;i++;i<100) printf("hello world\n"); }


a)100 times b)0 times c)Infinite loop d)None of the above. 

ans: infinite loop

5. main(){ char c; scanf("%s",c); }


a)Compiler dependent b)unpredictable c)Compiler error d) scans the i/p. 

ans: Compiler dependent.



6. main(){
int k=5;
for(++k<5 && k++/5 || ++k<8);
printf("%d\n",k);
}


a)5 b)6 c)7 d)8 

ans: 7

7. main(){
int *ptr1,*ptr2;
ptr1=(int *)malloc(sizeof(int));
ptr2=func(20,10,ptr1);
printf("%d %d\n",*ptr1,*ptr2);
}

int *func(int a, int b, int *c) 
{
int x=a+b;
*c=a-b;
return(&x);
}


a)Bug in the code. b)No Bugs prints correctly c)Error d) None of the above. 

Ans: Bug in the code.

8). int main() {
int i = 10, j ;
if ( ( j = ~i ) < i )
printf ( "True" ) ;
else 
printf ( "False" ) ;
}


a) True b) False c) Compiler Dependent d) None of the above. 

ans : True


9. How many bytes are required to create a 3*3 matrix using double pointer 
ans: 12

10. take int=4,float=8,char=1
main() {
FILE *fp;
printf("%d\n",sizeof(fp) );
}


a)2 b)4 c)Compiler dependent d)Error 

Ans:4

11. main()
{
int a=10,20;
a^=b^=a^=b;
printf("%d\n %d\n",a,b); 

a)a=20,b=10 b)a=10,b=20 c)Syntax error d)Unpredictable 

Ans : a=20 b=10 
12. main() {

int i=10;

switch(i) {
case 10: printf("Hello "); {
case 1 : printf("World ");
}
case 5: printf("Hello World ");
}
}



a) Hello b) Hello c) Hello World Hello World d) Syntax Error. 

Ans : Hello World Hello World
13. main() {
char str1[]="Hello";
char str2[]="Hello";
if ( str1==str2 )
printf("True\n");
else
printf("False\n");

Ans: False.
a)True b)False c)Error d) Unpredictable. 

15. main()
{
# include <stdio.h>
int i = 10 ; 
printf("%d\n", i/2 );

}
a)10 b)5 c)error d) warning. 
ans : 5

16. #include <stdio.h> 
# pragma pack(2)

struct SIZE {
int i;
char ch ;
double db ;
} ;
main () {
printf ( "%d\n",sizeof(struct SIZE) );

a)12 b)14 c)16 d)8








Join VYOM-JOBS and receive latest 2008 Placement Papers for FREE
Click here to register on India's Fastest growing Job site

Vyom Network     Privacy Policy

JobsAssist.com is a part of Vyom Network.

Vyom Network : Free SMS, GRE, GMAT, MBA | Online Exams | Freshers Jobs | Software Downloads | Programming & Source Codes | Delhi Info | Jobs, Discussions | Placement Papers | Free eBooks | Free eBooks | Free Business Info | Interview Questions | Free Tutorials | Arabic, French, German | IAS Preparation | Jokes, Songs, Fun | Free Classifieds | Free Recipes | Free Downloads | Bangalore Info | Tech Solutions | Project Outsourcing, Web Hosting | GATE Preparation | MBA Preparation | SAP Info | Software Testing


Placement Papers
Copyright ©2003-2010 Vyom Technologies, All Rights Reserved.
Page URL: http://www.jobsassist.com/placementpapers/globaledge-placement-paper-1.asp

Download Yahoo Messenger | Job Interview Questions | Software Testing Tutorials | Winrunner Tutorial | Test Director Tutorial | C++ Projects