Sun Micro Systems Profile
Sun Micro Systems Profile
Since its inception in 1982, a singular vision - The Network Is The Computer(tm) - has propelled Sun Microsystems,Inc., to its position as a leading provider of industrial-strengthhardware, software and services that power the Internet and allowcompanies worldwide to dot-com their businesses. With US$ 14.2 billionin annual revenues, Sun can be found in more than 170 countries. America Online acquires Netscape; Sun and AOL to accelerate the growth of e-commerce and develop next-generation Internet devices in a historic three-year alliance.Sun Microsystems,Inc. is a worldwide provider of products, services and supportsolutions for building and maintaining network computing environments.The Company sells scalable computer systems, high-speed microprocessorsand high performance software for operating network computing equipmentand storage products. The Company also provides support, education andprofessional services. The Company's products are used for manydemanding commercial and technical applications in various industriesincluding telecommunications, manufacturing, financial services,education, retail, government, energy and healthcare.
In India, Sun Microsystems hasbeen in the market for over a decade through its business partners andhas been present directly for over three years. In this period Sunservers and workstation products have had a tremendous acceptance inthe market. IDC rates Sun as the No. 1 vendor in India for themid-range servers as well as Unix workstations. The company, which haschanged its baseline from `The network is the computer' to `We are thedot in the .com' owes most of its 70 per cent growth over the previousyear to the booming dotcom business. It has established itsstate-of-the-art industrial and allied facility in Bangalore. Sun and its partners constitute a 400-strong team that supports an installed base of more than 15,000 systems. Some of Sun's customers in India includeTexas Instruments, Veritas, Lucent Technologies, ICICI, VSNL, SiliconAutomation Systems, Reliance Industries, IIT (Delhi, Kanpur andKharagpur), Motorola, and Oracle.
For more information about this company visit their homesite at
www.sun.com
Showing posts with label sun. Show all posts
Showing posts with label sun. Show all posts
Sunday, June 8, 2008
Sun Micro Systems placement paper 2
Sun Micro Systems placement paper 2
SUN PLACEMENT PAPER - 2
1. For the following program.
struct XXX
{int a; float b; char *s; }X;
If optimization :X not used in compiler then unused
bits_
Give your assumption.
2. Give the output of the following program
struct XXX
{int a:6; float b:4; char s; }structure;
size of (structure);
3. Class used for the multiple inheritence in JAVA
(a) anonymous class
(b) inner class
(c) abstract class
(d) none
4. XDR fixes in which part of OS1 stack.
5. LDAP is service protocol.
6. Given definition for a function which returns a array of pointers
with argument of int*.
7. Give a function declaration with no arguments which refers a two
dimensional array
8. Pick up the correct function declaration.
1. void *[] name();
2. void int[][] name();
3. void ** name();
4. none of the above.
9. Give the difference between monolithic and microlithic kernal:
a. monolithic large
b. microlithic used in embedded systems.
c. none.
10. rPC coresponds to in OSI stack.
11. Find the no.of page faults using LRU stack.
eg.3 4 4 6 7 8 1 2 .. ..
12. The inorder representation of a tree 41523 and preorder is 24513
Draw it?
13. When does a stack member will be initialised
(a) when object is created
(b) when object is initialised.
(c) doesnot depend on object.
(d) none.
14. Number of CPU in a multiprocess is contrassed by
(a) RISC nohere of CPU
(b) memory
(c) both (a) and (b)
(d) None of the above
15. Give the output of the following program
main()
{char *s;
s="hot java";
strcpy(s,"solarrs java") }
16. Give the output of the following program
main()
{printf("hot java");
fork()
exit(0); }
(i). When redirected to a screen what will be printed.
(ii). When redirected to file what will be printed.
17. Give the output of the following program
main()
{int ret;
ret=fork();ret=fork();ret=fork();ret=fork();
if(!ret)
printf("sun");
else
printf("solaris");
18. Give the output of the following program
main()
{char *p='a';
int *i=100/*p; }
what will be the value of *i= 1
19. Which data structure gives efficient search
1 B-tree
2 binary tree
3 array
4 linked list
20. Find the error in the following program
struct point
{struct point *next;
int data; }
x;
main()
{int i;
for(x=p;x!=0;)
x=x->next,x++;
freelist(x); }
freelist(x)
{free(x);
return }
21. Mutex and _________are similar locking mechanisms.
22. A complex question on pointers and functions.
23. SNMP and SMIP transport layer protocols for TCP/IP&OSI.
24 UNIX: difference between select and poll
SUN PLACEMENT PAPER - 2
1. For the following program.
struct XXX
{int a; float b; char *s; }X;
If optimization :X not used in compiler then unused
bits_
Give your assumption.
2. Give the output of the following program
struct XXX
{int a:6; float b:4; char s; }structure;
size of (structure);
3. Class used for the multiple inheritence in JAVA
(a) anonymous class
(b) inner class
(c) abstract class
(d) none
4. XDR fixes in which part of OS1 stack.
5. LDAP is service protocol.
6. Given definition for a function which returns a array of pointers
with argument of int*.
7. Give a function declaration with no arguments which refers a two
dimensional array
8. Pick up the correct function declaration.
1. void *[] name();
2. void int[][] name();
3. void ** name();
4. none of the above.
9. Give the difference between monolithic and microlithic kernal:
a. monolithic large
b. microlithic used in embedded systems.
c. none.
10. rPC coresponds to in OSI stack.
11. Find the no.of page faults using LRU stack.
eg.3 4 4 6 7 8 1 2 .. ..
12. The inorder representation of a tree 41523 and preorder is 24513
Draw it?
13. When does a stack member will be initialised
(a) when object is created
(b) when object is initialised.
(c) doesnot depend on object.
(d) none.
14. Number of CPU in a multiprocess is contrassed by
(a) RISC nohere of CPU
(b) memory
(c) both (a) and (b)
(d) None of the above
15. Give the output of the following program
main()
{char *s;
s="hot java";
strcpy(s,"solarrs java") }
16. Give the output of the following program
main()
{printf("hot java");
fork()
exit(0); }
(i). When redirected to a screen what will be printed.
(ii). When redirected to file what will be printed.
17. Give the output of the following program
main()
{int ret;
ret=fork();ret=fork();ret=fork();ret=fork();
if(!ret)
printf("sun");
else
printf("solaris");
18. Give the output of the following program
main()
{char *p='a';
int *i=100/*p; }
what will be the value of *i= 1
19. Which data structure gives efficient search
1 B-tree
2 binary tree
3 array
4 linked list
20. Find the error in the following program
struct point
{struct point *next;
int data; }
x;
main()
{int i;
for(x=p;x!=0;)
x=x->next,x++;
freelist(x); }
freelist(x)
{free(x);
return }
21. Mutex and _________are similar locking mechanisms.
22. A complex question on pointers and functions.
23. SNMP and SMIP transport layer protocols for TCP/IP&OSI.
24 UNIX: difference between select and poll
Labels:
sun
Micro Systems placement paper 1
Sun Micro Systems placement paper 1
SUN PLACEMENT PAPER - 1
1.struct XXX
{ int a;float b; char *s;}X;
If optimization :X not used in compiler then un used
bits. give your assumption.
2.struct XXX
{int a:6; float b:4; char s; }structure;
size og (structure);
3.class used for the multiple inheritence in yava_________________
(a) Anonymous class
(b) inner class
(c) abstreet class
(d) none
4. XDR fixes in which part of OS1 stack.
5. LDAP is____________service protocol.
6. Given definition for a function which returns a array of pointers with
argument of int*.
7.Give a function declaration with no arguments which refers a two dimensional
array
8.Pick up the correct function declaration.
1.void *[] name();
2 void int[][] name();
3 void ** name();
4 none of the above.
9.Give the difference between monolithic and microlithic kernal:
a mololic large
b micro used in embedded systems.
c.none.
10.rPC coresponds to_______________in OSI stack.v
11.find the no.of page faults using LRU stack.
eg.3 4 4 6 7 8 1 2 .. ..
12.the inorder representation of a tree 41523 and preorder is 211513 Draw it?
13. when does a stack member will be initialised
(a) when object is created
(b) when object is initialised.
(c) doesnot depend on object.
(d) none.
14 no.of CPU in a multiprocess is contrassed by
(a) RISC nohere of CPU
(b) memory
(c)___________
(d)_____________
15 main()
{char *s; s="hot java"; strcpy(s,"solarrs java") }
16 main()
{printf("hot java");fork() exit(0);}
1. when redirected to a sreen what will be printed.
2 when redirected to file what will be printed.
17.main()
{ int ret; ret=fork();ret=fork();ret=fork();ret=fork();if(!ret) printf("sun");
elseprintf("solaris");
how many sun 4 solaris will get printed
18. main()
{char *p='a'; int *i=100/*p; }
what will be the value of *i= 1
1.03
cannot be defined.
19 which data structure gives efficient search
1 B-tree
2 binary tree
3 array
4 linked list
20. struct point
{struct point *next;int data;}x;
main()
{ int i;for(x=p;x!=0;)x=x->next,x++; freelist(x); }
freelist(x)
{free(x);return}
find error?
21. mutex and _________are similar locking mechanisms.
22.nextt question on from pointers and functions( highfy) take care.
23. SNMP and SMIP transport layer protocols for TCP/IP&OSI.
24 unix : difference between select and poll
interview questions were mainly on data structures, computer architecture
( very imp) , os and networks
SUN PLACEMENT PAPER - 1
1.struct XXX
{ int a;float b; char *s;}X;
If optimization :X not used in compiler then un used
bits. give your assumption.
2.struct XXX
{int a:6; float b:4; char s; }structure;
size og (structure);
3.class used for the multiple inheritence in yava_________________
(a) Anonymous class
(b) inner class
(c) abstreet class
(d) none
4. XDR fixes in which part of OS1 stack.
5. LDAP is____________service protocol.
6. Given definition for a function which returns a array of pointers with
argument of int*.
7.Give a function declaration with no arguments which refers a two dimensional
array
8.Pick up the correct function declaration.
1.void *[] name();
2 void int[][] name();
3 void ** name();
4 none of the above.
9.Give the difference between monolithic and microlithic kernal:
a mololic large
b micro used in embedded systems.
c.none.
10.rPC coresponds to_______________in OSI stack.v
11.find the no.of page faults using LRU stack.
eg.3 4 4 6 7 8 1 2 .. ..
12.the inorder representation of a tree 41523 and preorder is 211513 Draw it?
13. when does a stack member will be initialised
(a) when object is created
(b) when object is initialised.
(c) doesnot depend on object.
(d) none.
14 no.of CPU in a multiprocess is contrassed by
(a) RISC nohere of CPU
(b) memory
(c)___________
(d)_____________
15 main()
{char *s; s="hot java"; strcpy(s,"solarrs java") }
16 main()
{printf("hot java");fork() exit(0);}
1. when redirected to a sreen what will be printed.
2 when redirected to file what will be printed.
17.main()
{ int ret; ret=fork();ret=fork();ret=fork();ret=fork();if(!ret) printf("sun");
elseprintf("solaris");
how many sun 4 solaris will get printed
18. main()
{char *p='a'; int *i=100/*p; }
what will be the value of *i= 1
1.03
cannot be defined.
19 which data structure gives efficient search
1 B-tree
2 binary tree
3 array
4 linked list
20. struct point
{struct point *next;int data;}x;
main()
{ int i;for(x=p;x!=0;)x=x->next,x++; freelist(x); }
freelist(x)
{free(x);return}
find error?
21. mutex and _________are similar locking mechanisms.
22.nextt question on from pointers and functions( highfy) take care.
23. SNMP and SMIP transport layer protocols for TCP/IP&OSI.
24 unix : difference between select and poll
interview questions were mainly on data structures, computer architecture
( very imp) , os and networks
Labels:
sun
Subscribe to:
Posts (Atom)