[Updated] Goldman Sachs Aptitude Test Questions and Answers
Practice List of TCS Digital Coding Questions !!!
Take 50+ FREE!! Online Data Interpretation Mock test to crack any Exams.

Placement Questions & Answers :: Cisco

31. Creating a job queue is a function of

Answer: Spooler

Explanation:

Here is no explanation for this answer

Workspace

Tags:

Cisco Societe Generale 

32. There is an employer table with key fields as employer number data in every n'th row are needed for a simple following queries will get required results.

Answer: select employee number from employe A, employe B where A employe number=B employ number group by employee number having(count(*) mod n=0 )

Explanation:

Here is no explanation for this answer

Workspace

Tags:

Cisco Sopra Steria 

33. Type duplicates of a row in a table customer with non uniform key field customer number you can see

Answer: delete from costomer where customer number exists( select distinct customer number from customer having count )

Explanation:

Here is no explanation for this answer

Workspace

Tags:

Cisco Sopra Steria 

34. #include

int main()
{
char a =0xAA ;
int b ;
b = (int) a ;
b = b >> 4 ;
printf("%x",b);
}
What is the output of the above program segment ?

Answer: fffffffa

Explanation:

Here is no explanation for this answer

Workspace

Tags:

Cisco Societe Generale 

35. #include
#define maxval 5
int main (void)
{
int i=1;
if(i-maxval)
{
printf("inside");
}
else
{
printf("out?");
}
}
What will be printed.

Answer: inside

Explanation:

Here is no explanation for this answer

Workspace

Tags:

Cisco 

36. #include
#define a 3+3
#define b 11-3
void main()
{
printf("%d",a*b);
}
What will be printed.

Answer: 33

Explanation:

Here is no explanation for this answer

Workspace

Tags:

Cisco 

37. union
{
char *p;
int i;
char b;
}
void main()
{
--
p=(char*)malloc(8*sizeof(char));
}

What is the size of union?

Answer: 4

Explanation:

Here is no explanation for this answer

Workspace

Tags:

Cisco 

38. The register context and stacks of a thread are deallocated when the thread

Answer: terminates

Explanation:

Here is no explanation for this answer

Workspace

Tags:

Cisco 

39. Thread synchronization is required because

Answer: all of the mentioned

Explanation:

Here is no explanation for this answer

Workspace

Tags:

Cisco 

40. In binary search tree which traversal is used for getting ascending order values

Answer: Inorder

Explanation:

Here is no explanation for this answer

Workspace

Tags:

Cisco