| Back to Questions Page |
| |
| Question |
WILL I GET A guaranteed JOB AFTER DOING bsc()IT) and GNIIT
from an NIIT CENTRE?? |
Rank |
Answer Posted By |
|
Question Submitted By :: Tanuja |
| This Interview Question Asked @ Biocon , MIT |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | There is no guaranteed job available. Infact GNIIT gives
you only job assistance. Only and Only if you perform well
you would be placed. It doesnot matter whether it is GNIIT
from NIIT or ACCP from Aptech.  |
| Mamta |
| |
| |
| Question |
explain about storage of union elements. |
Rank |
Answer Posted By |
|
Question Submitted By :: Tharak Reddy |
| This Interview Question Asked @ Bosch |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | union elements share common memory space  |
| Saranya |
| |
| |
| Question |
Difference Between embedded software and soft ware? |
Rank |
Answer Posted By |
|
Question Submitted By :: Tharak Reddy |
| This Interview Question Asked @ Bosch |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Embedded software is a program which will interact with the
physical world. This will be written for a perticular
machine or device which will be dedicated to that for ever.
example: Embedded software is buil in to electronic systems
or cars, home appliances, televisions etc
Normal Software is nothing but the information technoly.  |
| Rajesh Kota |
| |
| |
|
|
| |
| Question |
Difference between fopen() and open()? |
Rank |
Answer Posted By |
|
Question Submitted By :: Tharak Reddy |
| This Interview Question Asked @ Aricent |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | open() is the function created by the user......... which can be used to perform a specific task....
fopen() belongs to FILES..... this is a in built user defined function which is used to open a file which is already existing with the opening mode or create a new file....and which returns a pointer
syntax:
file_ptr=fopen("file name","opening mode");  |
| Vignesh1988i |
| |
| |
| Question |
what are the uses of structure? |
Rank |
Answer Posted By |
|
Question Submitted By :: B.tharak Reddy |
| This Interview Question Asked @ HCL |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | writing program for database management like emplyoee
records....  |
| Varu |
| |
| |
| Answer | arraging element in proper order  |
| Vivek |
| |
| |
| Answer | 1.changing d sizeof cursor,
2 clearing d content of screen,
3 drawing graphics shapes
4 formatting floppy drive
5 interacting with mouse  |
| Vishnu948923 |
| |
| |
| Question |
why we call c++ is object oriented lanaguage |
Rank |
Answer Posted By |
|
Question Submitted By :: Mail |
| This Interview Question Asked @ HCL , Hcl |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | if a language (supports)follows ObjectOrientedProgramming
concepts we can say it is a Object Oriented Programming.
Object Oriented Programing Concepts are:
1.class
2.object
3.Data Abstraction
4.Encapsulation
5.Polymorphism
6.Inheritnace
7.Message Communication  |
| Madhu Kalla |
| |
| |
| Answer | Since it obeys OOPs concepts,it is said to be object
oriented language....  |
| Viji |
| |
| |
| Question |
what is the difference between const volatile int i
& volatile const int j; |
Rank |
Answer Posted By |
|
Question Submitted By :: Vishnu948923 |
| This Interview Question Asked @ HCL |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | There is no difference between const volatile int i and
volatile const int j  |
| Raj |
| |
| |
| Question |
What are Binay tress and B trees? Diff between them? |
Rank |
Answer Posted By |
|
Question Submitted By :: Priyas |
| This Interview Question Asked @ CTS |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | both binary tree and b tree are same  |
| Sagar Kumar |
| |
| |
| Answer | A B-tree is a method of placing and locating files (called
records or keys) in a database when all the data is known
to be on DISK.
A Binary-tree is a method of placing and locating files
(called records or keys) in a database when all the data is
known to be in RAM.
It takes thousands of times longer to access a data element
from hard disk as compared with accessing it from RAM,
because a disk drive has mechanical parts, which read and
write data far more slowly than purely electronic media.
B-trees save time by using nodes with many branches (called
children), compared with binary trees, in which each node
has only two children. When there are many children per
node, a record can be found by passing through fewer nodes
than if there are two children per node.
Depth of a B-tree is smaller as compared to a binary tree
and hence B-tree allows a desired record to be located
faster, assuming all other system parameters are identical.  |
| Nutan |
| |
| |
| Answer | both b-tree and binary tree are same  |
| S.divya |
| |
| |
| Question |
Write a program to swap 2 chars without using a third
varable?
char *s = "A";
char *p = "B"; |
Rank |
Answer Posted By |
|
Question Submitted By :: Priyas |
| This Interview Question Asked @ CTS |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | void swap(char *s, char *p)
{
if(0 == s || 0 == p)
return;
*s += *p;
*p = *s - *p;
*s = *s - *p;
}
int main()
{
/* Use chars and not strings!! */
char ac = 'A';
char bc = 'B';
char *a = ∾
char *b = &bc;
swap(a,b);
}  |
| Lior |
| |
| |
| Answer | #include <cstdio>
void swap(char *c, char *d)
{
*d = *c^*d; // c = C d = C^D
*c = *c^*d; // c = C^C^D d = C^D
*d = *c^*d; // c = C^C^D d = C^C^D^C^D
}
main()
{
char c = 'c';
char d = 'd';
swap(&c, &d);
}  |
| Dooglus |
| |
| |
| Answer | void swap(A,B)
{
A=*p;
B=*s;
getch();
}  |
| S.divya |
| |
| |
|
| |
|
Back to Questions Page |