You are on page 1of 2

network questions

https://placement.freshersworld.com/networking-interview-questions/33121835

https://placement.freshersworld.com/hr-interview-questions/33120811
what are the right skill required to get a job?
Creative
-Mindset
-Spirit of innovation
-Excellent communication skill
- ability to work in a team
- Sense of responsibility

Tell Me About Yourself.


What do you know about us or our company?
How Did You Hear About This Position?
Why Do You Want to Work at This Company?
Why Do You Want This Job?
Why Should We Hire You?
What Are Your Greatest Strengths?
What Do You Consider to Be Your Weaknesses?
Tell Me About a Time You Demonstrated Leadership Skills.
What types of projects have you completed during your education?
What has been your biggest academic achievement?
Why do you want to work for this company? ...
Explain the difference between group and team. Are you a team player?
What is your ideal company or workplace?
Where do you see yourself 3 years from now? or Where do you see yourself in 5
years?

How quickly do you adapt to new technology?


What are your future goals? Tell me about your short term and long-term goals.
If you won a Rs.10-crore lottery, would you still work?
How long do you think you will work for us after we hire you?

https://www.softwaretestinghelp.com/top-dbms-interview-questions/

Q #1) What is DBMS used for?


Q #2) What is meant by a Database?
Q #3) Why is the use of DBMS recommended? Explain by listing some of its major
advantages.
Q #4) What is the purpose of normalization in DBMS?
Q #5) What are the different types of languages that are available in the DBMS?
Q #6) What is the purpose of SQL?
Q #15) What are the different levels of abstraction in the DBMS?
Explain the concept of ACID properties in DBMS?
What is the use of DROP command and
what are the differences between DROP, TRUNCATE and DELETE commands?
Q #8) What are the main differences between Primary key and Unique Key?
Q #7) Explain the concepts of a Primary key and Foreign Key.
Q #26) What is a join in the SQL?
Q #27) What are different types of joins in SQL?
Q #28) What is meant by trigger?
Q #30) What is RDBMS?
Q #31) What are the different type of relationships in the DBMS?

c
https://blog.oureducation.in/interview-questions-on-c-language/
1.What is a pointer?
2. What is null pointer?
3. Define function pointer?
5. Difference between global and static variable?
7. Compare between array and pointer.
9. Where the function pointers can be used?
10 What do you mean by #include<stdio.h>?
2) What is the difference between Call by Value and Call by Reference?
4) What is the equivalent code of the following statement in WHILE LOOP format?
for (a=1; a<=100; a++)

printf ("%d\n", a * a);

Answer:

a=1;

while (a<=100) {

printf ("%d\n", a * a);

a++;

5) What is a stack?
7) What is variable initialization and why is it important?
9) Differentiate Source Codes from Object Codes.
10) In C programming, how do you insert quote characters (' and ") into the output
screen?
12) What is the difference between the = symbol and == symbol?
19) What are header files and what are its uses in C programming?
23) Can I use "int" data type to store the value 32768? Why?

0) Write a loop statement that will show the following output:

12

123

1234

12345

Answer:

for (a=1; a<=5; i++) {

for (b=1; b<=a; b++)

printf("%d",b);

printf("\n");

31) What is wrong in this statement? scanf("%d",whatnumber);


37) In C programming, what command or code can be used to determine if a number of
odd or even?

You might also like