Sie sind auf Seite 1von 18

C Language

1) (w)
What are storage classes
2) (w)
What is external variable
3) (w)
Write a program with implementation of extern variables
4) (w)
What is macro
5) (w)
What are benefits of macros
6) (w)
Explain about # define with examples
7) (w)
What is the diff between const and # define to define constant variables.
8) (w)
To which generation C language belongs
9) (w)
What are preprocessor directives, what are functions of
preprocessor directives?
10) (w)
What is the difference between C and c++? (Tell in one sentence)
11) (w)
What are pointers?
12) (w)
Write a program to concatenate two strings without using any of the string
functions
13) (w)
What is constant variable?
14) (w)
What is difference between macro and constant variable?
15) (w)
What is a static, register and atomic variable?
16) (w)
What is the difference between register and atomic variable?
17) (w)
Why to use register variables in a program?
18) (w)
Why cannot all the variables be declared register?
19) (w)
Disadvantages of arrays? How linked lists are better than arrays.
20) (w)
What is macro and how is it better than function?
21) (w)
Write a program to find the 3rd largest number without sorting and also the
largest number.
22) (w)
Difference between malloc() and calloc()
23) (w)
24) (w)
C program to print 1 to 25 numbers
25) (w)
Procedures and functions?
26) (w)
Why we use pointers?
27) (w)
What will happen if the #include<stdio.h> statement is removed from a simple
program containing printf and scanf functions.
28) (w)
Write a C program to find factorial using recursion
29) (w)
Write a C program to find string length without using string.h
30) (w)
Asked about a programs output based on continue statement.
31) (w)
Write code in C to find the third highest element in given 5 elements
32) (w)
If two numbers are given then write a program to calculate the sum of
numbers from a to b with minimum time complexity.
33) (w)
What is the meaning of

char const *p;


const char *p;
34) (w)
output for the following program
main()
{
int i=0;
while(i<=10)
{
continue;
i++;
}
printf(%d,i);
}

35) (s)
Define function
36) (s)
Difference between call by reference and call by value
37) (s)
Scope of variable?
38) (s)
Define a structure and a union
39) (s)
Define a static variable
40) (s)
C program compilation?
41) (s)
What are different predefined files in C to include?
42) (t)
How memory is allocated dynamically?
43) (t)
From all the variables get memory?
44) (t)
What are pointer arrays?
45) (t)
Swap two variables without using temporary variable
46) (t)
Where formal parameters get declared?
47) (t)
Static variables. Scope and extent?
48) (t)
Questions on C operators
49) (t)
What is the standard function to convert integer to character?
50) (t)
What is the size of the pointer?
51) (t)
Write a program to delete an element from a given linked list
52) (t)
Dynamic and static memory allocation?
53) (t)
Macros versus functions?
54) (t)
Macro processing. Whether it is before or after compilation?
55) (t)
Difference between C structures and C++ structures?
56) (t)
Pointers in detail.
57) (t)
Difference between address and reference
58) (t)
Pre increment and post increment?
59) (t)
Does assignment statement become FALSE anytime?
60) (t)
What is the type of pointer returned by the malloc()
61) (t)
Given a file and a word. We have to count number of such words in the file?
62) (t)
What happens when we say
int i;
i= (int) 10.5;

63) (t)
What is the output of
int i=10.5;
printf(%d,i);
64) (t)
What is the difference between assignments the above two questions. Why
should not we say as in above question.
65) (t)
What does the following statement represent
int * (*f) [] (void *,void *);

66) (t)

What is the output of the program

int i=10;
if (i=11) i++;
else i--;
printf(%d,i);
What will the statement i=11 return a value of zero?
67) (cs) How many bytes does int occupy?
68) (cs) Types of directives in C?
69) (c)
Output..
main()
{
void far *g1,*g2;
printf(%d,sizeof(g1));
}
70) (c)
Output
main()
{
printf(%d, sizeof(NULL));
}
71) (c)
72) (c)
main()
{

What is null pointer


Output

printf(%d, 5+NULL);
}

73) (c)
main()

Output

{
extern int i;
printf(%d, i);
}
int i=5;
74) (c) Output
int i=5;
main()
{
{
int i=10;
printf(%d, i);
}
printf(%d,i);
}
75) (c)
main()
{

Output

printf(%d %d, sizeof(NULL), sizeof( ));


}
76) (c)
What is meant by far pointer
77) (c)
Output
#define MAX(a,b)
a>b?a:b
main()
{
printf(%d, MAX(5+2,7+9));
}

Object Oriented Programming & C++


1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.

(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)

What is the difference between a class and an object?


What is function overloading? Give the syntax.
What is operator overloading? Give the syntax with an example.
Is C++ a complete object oriented language? Give reasons.
Can you overload constructors? Explain with an example.
Do virtual constructors exist?
Do virtual destructors exist? If exists, explain with an example program.
How do you call a base class constructor with a child class reference pointer?
What are the advantages of runtime polymorphism?
What do you mean by static variable?
How do you define a static member in a class?

12. (w)
How do you access a static member in a class?
13. (w)
What is an inline function?
14. (w)
What is the difference between a macro and an inline function?
15. (w)
What is an object?
16. (w)
Which operators cannot be overloaded?
17. (w)
What are . and -> operators called and what are their uses?
18. (w)
Write a class which has static variable as data members and write main
function to access that variable
19. (w)
Why the scope of the static data members must be separately resolved?
20. (w)
Explain polymorphism.
21. (w)
What is virtual function?
22. (w)
What is difference between method and function?
23. (w)
What is runtime polymorphism?
24. (w)
Types of inheritances in C++?
25. (w)
What is the defect in hierarchial inheritance and how to resolve it?
26. (w)
Difference between C++ and Java
27. (w)
Similarity between C++ and Java
28. (w)
What is equivalent to virtual functions in Java
29. (w)
Is multiple inheritance in Java implemented in any way?
30. (w)
What is difference between polymorphism and overloading of functions?
31. (w)
What are various access specifiers and their purpose?
32. (t)
What do you know about C++?
33. (t)
What is the difference between a structure and a class?
34. (t)
On what factors does function overloading depends?
35. (t)
Will function name overloading depend on return type of function?
36. (t)
What is OOP?
37. (t)
Concepts of OOPs
38. (t)
Difference between data abstraction and encapsulation?
39. (t)
Why C++ is better than C?
40. (t)
What is the difference between a structure and a class?
41. (t)
Define friend function
42. (t)
What are constructor and copy constructor?
43. (t)
There are no virtual constructors. Why?
44. (t)
Function overloading?
45. (t)
Define runtime polymorphism?
46. (t)
Abstract class?
47. (t)
Templates?
48. (t)
Base class?
49. (t)
About constructors and its return type in C++?
50. (t)
Virtual destructors?
51. (t)
Difference between C structures and C++ structures?
52. (t)
Difference between C++ classes and C++ structures?
53. (t)
How do you declare static variables in C++
54. (t)
How do you call base class constructor from derived class constructor?
55. (s)
Explain about new and delete operators

56. (c)

When does dynamic binding occur in Java & C++

Java
1)
2)
3)
4)
5)
6)
7)
8)
9)
10)
11)
12)
13)
14)
15)

(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(sy)
(t)
(t)
(t)

JDBC ODBC connection code


Server socket connection code
How to implement multiple inheritance in java
What are the differences between interfaces and abstract classes
What is method over written
What is web server?
What is client-server?
What is client authentication?
What is server authentication?
What is garbage collection in JAVA?
How can you retrieve binary data in a file in C++, JAVA (files)
ODBC concepts
What type of architecture is JAVA?
What is the procedure to dynamically allocate memory in JAVA?
Does the key word new is a better way of creating memory space? Why?

Data Structures
1) (w)
What is bubble sort and binary search techniques?
2) (w)
Linked list, Queue implementation.
3) (w)
Dynamic allocation of queues . code?
4) (w)
What do you know about hashing?
5) (w)
Disadvantages of hashing
6) (w)
In the worst case, hashing is equivalent to what data structure?
7) (w)
Applications of graphs?
8) (w)
What is tree and its application?
9) (w)
What is recursion? Write an algorithm to perform binary search technique
using recursion
10) (w)
Explain quick sort algorithm
11) (w)
Where do we use stacks?
12) (w)
What is DFS and BFS and their uses?
13) (w)
Difference between queue and circular queue(need for circular queue)
14) (w)
Merge sort and shell sort?
15) (s)
Define stack, queue and linked list
16) (s)
Write the algorithm of linked list
17) (s)
Describe various sorting techniques
18) (s)
Difference between subroutine and function
19) (t)
What is data structure?

20)
21)
22)
23)
24)
25)
26)
27)
28)
29)
30)
31)
32)
33)
34)
35)
36)
37)
38)
39)

(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(c)

What are abstract data types?


Linked list operations?
Double linked list operations. Program?
How do you represent linked list in C
Application of data structures?
Write a program to swap the elements of stack and queue
Nonlinear data structures?
Trees. Depth? Height? Level?
Tree traversal program?
Sorting Techniques. Which is the best sort and why?
What is complexity?
What is a binary tree? What are its uses?
What is the worst-case complexity of bubble and quick sort?
Why do people use generally bubble sort rather than other ones?
Heap sort example?
Arrays versus Linked lists
Swap elements of stack and queue without knowing sizes
Where hash tables are used?
What is the function of Hash table?
Explain about B & B+ trees

Operating Systems
1)
2)
3)
4)
5)
6)
7)
8)
9)
10)
11)
12)
13)
14)
15)
16)
17)
18)
19)
20)

(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)

What is an inode?
What does an inode contain?
What is FAT?
Tell us about Unix File System
What are the advantages of Unix over other operating Systems?
In what ways Unix provides more security for users
Memory management in OS
What is memory leak?
What is memory persistence?
Write a shell program to display the value returned by OS when echo is called
What is shell and core?
What are functions of the shell?
What is system call? Give an example.
What is booting?
Swapping?
Dining Philosophers problem?
What is aging?
What are the commands used in UNIX to compile C & C++?
Full forms of cc and xlc
Priority inversion?

21) (t)
Paging?
22) (t)
Semaphore?
23) (t)
Round-robin scheduling?
24) (t)
What is process context switching?
25) (t)
How to prevent deadlock?
26) (t)
How to violate the four conditions necessary for a deadlock?
27) (t)
If you have a file called file1.c
/* file1.c */
/* file 2.c */
/* file3.c */
#include <stdio.h>
#include file1.c
#include file1.c
int i;
-----------------------------------/* file 1 ends */

/* file 2 ends */

/* file3.c ends */

If these three files are compiled as a part of a single module, do you get any error?

28)
29)
30)
31)
32)
33)
34)
35)
36)
37)
38)
39)
40)
41)
42)
43)
44)
45)
46)
47)
48)
49)

(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(s)
(s)
(cs)
(cs)
(cs)
(cs)
(cs)
(sy)

Express deadlock problem in C


Readers-Writers problem and Critical section problem
Swap bit?
What is OS?
What is dead lock?
What is demand paging?
What is virtual memory?
Explain memory management in case of unix?
Draw the UNIX structure
Types of database languages?
RTOS?
What is shell and kernel?
What is process management in OS?
Shared data problem?
CPU Scheduling algorithms?
Page replacement algorithms
What does OS provide to the user?
What are different types of Oss and give examples for each.
When there is no OS in computer, what happens?
Difference between Windows and Linux
Difference between windows and Unix
If there are n fork statements, how many child processes will be created?

DBMS
1)

(w)

What do you mean by DBMS?

2)
3)
4)
5)
6)
7)
8)
9)
10)
11)
12)
13)
14)
15)
16)
17)
18)
19)
20)
21)
22)
23)
24)
25)
26)
27)
28)
29)
30)
31)
32)
33)
34)
35)
36)
37)
38)
39)
40)
41)
42)
43)
44)
45)
46)

(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)
(t)

What are triggers and stored programs and their differences?


Codd rules?
What do you mean by integrity?
Practical applications of DBMS
3NF?
Which version you are using and difference between oracle 6 and 8i
What are the requirements to design a database
If we do not do 3NF, What are the anomalies arise?
How can we copy the data from already existing table to another table?
What is super key and candidate key?
An example of relational database and hierarchical database?
What is DDL,DML,DCL?
What does CASCADE operation do?
Write a statement in SQL to know the number of rows of a given table
What is a transaction?
What are different keys in DBMS?
What are the anomalies arise if we do not do normalization?
How to merge one table with another table?
Queries on joins
What is the mathematical representation of joins?
Query to change a value in a column of a table
Queries using GROUP BY and ORDER BY
What is relation and table?
What are ACID properties?
What is functional dependency?
What is inner join and outer join?
Types of locks?
What is the difference between 2NF and 3NF?
What are nested queries?
Write a query to change the data type of a column?
What is primary key and super key?
Need for normalization?
What is aggregation in SQL
How to delete the child table?
About BCNF ?
Difference between information and data
Responsibilities of DBA
Different types of data bases
How to identify a database as RDBMS?
Difference between RDBMS and ORDBMS
Is ORACLE ORDBMS?
Examples of ORDBMS except ORACLE
Features of ORDBMS
DDL and DML commands
Difference between truncate, delete and drop

47)
48)
49)
50)
51)
52)
53)
54)
55)
56)
57)
58)
59)
60)
61)
62)
63)
64)

(t)
(t)
(t)
(t)
(t)
(s)
(s)
(s)
(s)
(s)
(s)
(cs)
(cs)
(cs)
(cs)
(cs)
(c)
(c)

How do you measure the size of the data base in ORACLE


Write a query for getting second maximum salary
Father of DBMS
Normal forms. Why normalization needed
Different types of project models
Referential integrity constraints
Two-phase locking
Three schema architecture
Explain code normal form
What is partial dependency?
What is a tuple?
What is a lock?
What is granularity?
What is the difference between DBMS and RDBMS and examples
How to add columns to a table?
What are different data types in ORACLE?
What are various phases in transaction?
Is rollback an instant of transaction?

Computer Networks
1) (t)
What are network models?
2) (t)
Layers of OSI and TCP/IP models
3) (t)
Map the layers of OS and TCP/IP?
4) (t)
What is switching and types of switching?
5) (t)
What is protocol and different protocols in different layers of TCP/IP
6) (t)
What is IP address and different types IP addresses?
7) (t)
What are different functions of data link layer?
8) (t)
What is TCP/IP?
9) (t)
Routing algorithms?
10) (t)
What is broadband, ATM, ISDN
11) (t)
Explain the internet hardware including the service providers location in a
block diagram taking your lab as an example.
12) (t)
When we type www.tcs.com in the browser, what happens?
13) (s)
Different types of networks.
14) (s)
What is the type of network used in your lab?
15) (s)
What is the type of protocol used in your lab?
16) (s)
Token Bus?
17) (s)
Token ring?
18) (s)
End-to-end communication?
19) (w)
What is VPN?
20) (w)
What is SSL?
21) (cs)
What happens when you connect to Internet web?
22) (cs)
How will you locate a web server

23)
24)
25)
26)
27)

(c)
(c)
(c)
(c)
(c)

Function of realloc
What is a null pointer and its use?
What is IP6 addressing?
What is class A & class B network?
What is the difference between router and gateway

Unix
1) (w)
What does ls -l do
2) (w)
What does trim do
3) (t)
Write a simple shell script
4) (t)
Shell script for listing file names that are started with a
5) (c)
There is a soft copy with some name written some number of times. Write a
shell script program to print how many number of times the name is written.

Computer Graphics
6) (t)
7) (t)
8) (t)
9) (t)
algorithm
10) (t)
11) (w)

Explain your paper?(improvement of line drawing algorithm)


Bressenhaums line drawing algorithms
Tell some clipping algorithms
Show me the difference when your modified algorithm works on original
What different line drawing algorithms are there?
What do you know about raster graphics

Computer Organization & Microprocessor


12)
13)
14)
15)
16)
17)
18)
19)
20)
21)
22)

(cs)
(cs)
(cs)
(c)
(w)
(w)
(t)
(t)
(cs)
(c)
(c)

Difference between RAM and ROM


8085 microprocessor?
Difference between 8085 and 8086
Write an ALP for adding two numbers
What are latches
Give a picture of computer organization in 3 minutes
J-K flip-flop
What is T-cycle?
What is DMA
Is CD a ROM or RAM ..why
What is the difference between CD ROM and Hard Disk

Artificial Intelligence
1)
2)
3)
4)

(w)
(w)
(w)
(w)

Explain neural networks


Use of AI in real life
What is AI
What is expert system

Visual Basic
1)
2)
3)
4)
5)
6)
7)
8)
9)
10)
11)

(s)
(s)
(s)
(w)
(w)
(w)
(w)
(t)
(t)
(t)
(t)

Is data grid editable?


What are various drivers provided by VB to access database.
What is msdaora
About classes in VB
Difference between dll and exe
Mention the events of combo box
Difference between combo box and list box
DDL commands in VB
Difference between ASP and ASP.NET
Rating 1 to 10 in VB?
Difference between ADO and ADODB

Network Security & Cryptography


1)
2)
3)
4)

(w)
(w)
(w)
(w)

Requirement for network security. Explain them.


What is PGP?
For e-mail which is better.. either PGP or any other
Difference between MD5 and SHA

System Programming
1)
2)
3)
4)
5)
6)

(t)
(t)
(t)
(t)
(w)
(w)

About keyword EXTERN in SP?


About two passes in assembling process?
About run-time and compile-time linking?
Purpose of compiler, interpreter and assembler?
What is the difference between early and late binding?
What is software?

Software Engg. & OOAD


1)
2)
3)
4)
5)
6)
7)
8)
9)
10)
11)

(s)
(s)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(t)
(t)

Black-box and white box testings


Different models of projects
Usecase?
State chart diagram explain?
Inheritance Explain?
All the diagrams with an example?
SDLC?
why do we use OOP?
Discuss about reusability?
What are the concepts of OOAD
Explain different types of inheritances

OTHER
1)
2)
3)
4)
5)
6)
7)
8)
9)
10)
11)
12)

(cs)
(s)
(s)
(s)
(t)
(t)
(t)
(cs)
(cs)
(w)
(t)

What is push down automata


virus?
dynamic and Static binding
What is ANSI
Problems in Probability.
Explain what happens in a browser?
Explain Client-Server architecture?
Explain multilevel architecture?
Types of errors in programming?
What is meant by memory linking?
What are various divisions in COBOL
Explain RUP? Phases?

HR
1)
2)
3)
4)
5)
6)
7)
8)
9)

(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)
(w)

Tell me about yourself


Tell me a story ( Hare and a Tortoise)
Why should we choose you?
Why you opted our company?
Who is your role model?
Why is he your role model?
What do you understand about our presentation?
What do you know about our company?
What do you want to be in next few years?

10) (w)
Tell any three of your qualities
11) (w)
What long term future plans do you have?
12) (w)
Tell any of your personal weaknesses
13) (w)
Do you have any questions
14) (w)
What do you like the most during the slide show of the company?
15) (w)
What are your career objectives?
16) (w)
What is your goal in life?
17) (w)
What are your extra-curricular activities?
18) (w)
What are you expecting from our company?
19) (w)
Where are you from?
20) (w)
What are your hobbies?
21) (w)
In which area you want to improve yourself?
22) (w)
Describe yourself in two lines.
23) (w)
Have you gone through Wipro website
24) (w)
What was the striking feature you found at the PPT?
25) (w)
Why should Wipro have you?
26) (w)
What are you doing within 3 years after giving job in company
27) (w)
What are your strengths and weaknesses?
28) (w)
What you want to be after 5 years?
29) (w)
Are you interested in software? Why?
30) (w)
If you had not selected for this company, what will you do?
31) (w)
How do you know about our company?
32) (w)
What is your favorite in chess?
33) (w)
What is the fundamental aspect in chess?
34) (w)
What is favorite piece in chess?
35) (w)
How does a knight move on a chess board?
36) (w)
Do you still play chess? If so in competition or with friends
37) (w)
What kind of music do you like most
38) (w)
Do you feel our exam pattern for aptitude test is nice?
39) (w)
What similarity can you find between a chess player and software engineer?
40) (w)
How does playing chess help software engineer?
41) (w)
When your brother is working in Infosys, why you opt for this?
42) (w)
What do you like the most (may be related to studies or in general)
43) (w)
Why is there a fall in your graph and a big rank in EAMCET
44) (w)
Why did you get less marks in second year first sem. When compared with all
other sems.
45) (w)
What are your positive and negative qualities? How can you prove your
positive qualities?
46) (w)
Why we have to take you ? Support your capabilities
47) (w)
Give examples in your life to show your strengths
48) (w)
Some people criticized us saying that we recruit more girls than boys. Defend
the statement?
49) (w)
Where do you want to see yourself after 5 years in wipro.
50) (w)
How important is career to a woman?
51) (w)
What is the incident that you do not want to remember

52) (w)
What are your achievements?
53) (w)
What is your family background?
54) (w)
Who is your inspiration?
55) (w)
Why do you choose software field?
56) (w)
Why is there a difference in the percentage of marks obtained in intermediate
and engineering?
57) (w)
Suppose you are selected for TCS and wipro, which one you want to opt and
why?
58) (w)
Why are you not interested in further studies?
59) (w)
What do u do at free time?
60) (w)
Extra-curricular activities?
61) (w)
How can I be sure that you will stay with Wipro?
62) (w)
Questions about cooking (ingredients of Dosa, breaking an egg and
precautions.)
63) (w)
What are the four thing to become an entrepreneur?
64) (w)
About Net and about websites of interest.
65) (t)
Tell me about yourself
66) (t)
Tell us about TCS
67) (t)
What are your hobbies
68) (t)
Did you go through the TCS website
69) (t)
Why did you decided to join in TCS?
70) (t)
Why are you studying M.Tech?
71) (t)
Why did you get gap?
72) (t)
Will you anywhere in the world?
73) (t)
Will you sign bond for two years
74) (t)
If you get any chance to go abroad. Will you go or not?
75) (t)
Which side do you want to work and why?
76) (t) Methods to overcome your weaknesses
77) (t)
How do you think that you could become Project Manager in a time-span of 3
years?
78) (t) We are in a process of global recruitment. Perhaps you would be sent to any part
of the INDIA as well as world. How do you think you could accustom to the environment?
79) (t) Explain what is IPO (Initial public offer)
80) (t) Who is current Home Minister and External affairs minister.
81) (t)
Do you know anything about stock exchange?
82) (t)
What is needed to be a successful business man
83) (t)
Will you write bond for any number of years?
84) (t)
What will you do if you were dismissed from your job suddenly?
85) (t)
Your academic record is very good, why do not you pursue higher studies?
86) (t) What is your comment on present Govt. of India?
87) (t)
What is your choice in your career
88) (cs)
How do you think you are different from your other classmates?
89) (cs)
Why should we select you among all your class mates
90) (cs)
Why did you join in AU
91) (cs)
What do you feel different about our company?

92) * (cs) Govt. Role in balancing the development of agriculture and Information
Technology
93) * (cs) advantages & disadvantages of separating Telangana from AP
94) (c)
What are the top 5 IT companies
95) (c)
Who is the chairman of Infosys
96) (c)
Who is the IT minister of India?
97) (c)
Who is the prime minister of Pakistan?
98) (s)
What are the qualities required for a programmer?
99) * (s) arranged marriage Vs Love marriage

Heres a new way to find what you're looking for - Yahoo! Answers
-----Inline Attachment Follows-----

Home | Tech FAQ | Interview Questions | Placement Papers | Tech


Articles | Learn | Online Testing | Geeks Talk | Job Postings ;| Knowledge Base | Add/Ask
Question

There are 430 questions in Programming Interview Questions with 819


comments
Home > Interview Questions > Programming

C Interview Questions (224)


Delphi Interview Questions (1)
Perl Interview Questions (36)
VBA Interview Questions (53)
Sort By Date Added | Replies | Last Update

C++ Interview Questions (86)


Languages Interview Questions (3)
PHP Interview Questions (11)
XML Interview Questions (7)
Showing 1-9 of 9

1. How do display the output as reverse of input, like input is "This is a hat" and the
output should be
Comments: 1
Updated: July 04, 2006 Added: June 16, 2006
Read Answers Add Answer

2. How do i design an Algorithm to check if a number is an Armstrong number?


Comments: 1
Updated: April 21, 2006 Added: April 19, 2006
Read Answers Add Answer
3. what is the difference between the two expressions.int* a = 0;int* a = 10;
Comments: 3
Updated: April 25, 2006 Added: April 07, 2006
Read Answers Add Answer
4. can we create a different functionality to objects of a same class?like cout and cerr
Comments: 0
Updated: April 02, 2006 Added: April 02, 2006
Read Answers Add Answer
5. what is o/p for the following?struct tr{int i=9;char a='l';};&struct ty{int i:6;char
c:'m';};
Comments: 2
Updated: March 19, 2006 Added: March 11, 2006
Read Answers Add Answer
6. how can we upload to sql databse images using visual basic 6.0?
Comments: 1
Updated: March 03, 2006 Added: February 12, 2006
Read Answers Add Answer
7. what is CAPTCHA
Comments: 1
Read Answers Add Answer

Updated: February 03, 2006 Added: January 23, 2006

8. what is the output of the followint -c- code#define square(a) (a*a)main()


{printf("%d",square(4+5));}
Comments: 7
Updated: April 06, 2006 Added: October 22, 2005
Read Answers Add Answer
9. how to reverse a syntence
Comments: 4
Read Answers Add Answer

Updated: April 06, 2006 Added: September 13, 2005

Un-Answered in Programming Interview Questions


1. can we create a different functionality to objects of a same class?like cout and cerr
2. How to set the custome paper size in Excel Object through VB?
Latest Questions in Programming Interview Questions

1.
2.
3.
4.
5.
6.
7.
8.
9.
10.

How do display the output as reverse of input, like input is "This is a hat" and the output should be...
How do i design an Algorithm to check if a number is an Armstrong number?
what is the difference between the two expressions.int* a = 0;int* a = 10;
can we create a different functionality to objects of a same class?like cout and cerr
what is o/p for the following?struct tr{int i=9;char a='l';};&struct ty{int i:6;char c:'m';};
how can we upload to sql databse images using visual basic 6.0?
what is CAPTCHA
what is the output of the followint -c- code#define square(a) (a*a)main(){printf("%d",square(4+5));}
how to reverse a syntence
How to set the custome paper size in Excel Object through VB?

Das könnte Ihnen auch gefallen