Skip to main content

Software Engineering Question


  1. design patterns
  2. database normalisation
  3. database design
  4. database keys(primary,secondary, unique, composite)
  5. indexing
  6. joins, group by
  7. Link lists
  8. .NET architecture
  9. polymorphism
  10. diamond problem and its solution
  11. association, composition, aggregation
  12. copy constructor, shallow copy, deep copy
  13. coupling, cohesion
  14. Difference b/W interface and abstract class
  15. general oop
  16. diff b/W string="abc" and String string="abc"
  17. diff b/w int and int32
  18. operating System (threading,diff b/w soft interrupt and hard interrupt, each programe in 32bit consumes how much memory)
  19. Codes both iterative and recursive with running times
  20. factorial
  21. fibonachi
  22. BFS,DFS
  23. Sequence Diagram
  24. Virtual memory
  25. Deadlock
  26. Binary search tree
  27. logical model, physical model
  28. how to delete 2nd or 3rd last element in linked list
  29. how to find midle element in linked list
  30. how to find whether a linked list is circuler or not
  31. scheduling Algorithm(FCFS, SJF, Prio, RRA)
  32.  



  33. How to find sequence length in number string?
  34. GC in detail, How it works?
  35. How to find link list mid point
  36. How to reserve string and words in string also?
  37. Internal Classes
  38. Assemblies and type of Assemblies  
  39. GAC
  40. diffrence between internal and private , protected
  41. Multiple inheritance in c# ( without interface)
  42. Inharitance and Enscapulation

  43. Big O of diffrenct sortings



  44. HR round
  45. Tell me something about yourself?
  46. Why should we hire you?
  47. What are your career goals? or Where do you see yourself in the next 3 to 5 years from now?
  48. what are your major achievement?
  49. your failure?
  50. your strenth and weakness
  51. Why do you want to make career in this company?
  52. What is your salary expectation? 



Comments

Popular posts from this blog

100 quick and fascinating facts about the human body

The only part of the body that has no blood supply is the cornea of the eye. It receives oxygen directly from the air. The human brain has a memory capacity which is the equivalent of more than four terabytes on a hard drive. A newborn child can breathe and swallow at the same time for up to seven months. Your skull is made up of 29 different bones. When you sneeze, all of your body functions stop — even your heart! Nerve impulses sent from the brain move at a speed of 274 km/h. A single human brain generates more electrical impulses in a day than all the telephones of the world combined. The average human body contains enough sulphur to kill all the fleas on the average dog, enough carbon to make 900 pencils, enough potassium to fire a toy cannon, enough fat to make seven bars of soap and enough wate...

PHP Interview Questions

1.   Which is the latest version of PHP.  The latest stable version of PHP is  5.6.7  released at March 20, 2015 . 2.   Define PHP. PHP is an open source  server side scripting  language used to develop dynamic websites . PHP  stands for Hypertext Preprocessor , also stood for   Personal Home Page .  Now the implementations of PHP is produced by The PHP group .It was created by  Rasmus lerdorf in 1995  . It is a free software released under the PHP license . 3.   Who is the father of PHP. Rasmus Lerdorf known as the father of PHP . Php was created by Rasmus Lerdorf In 1995 . 4.   What is the current version of Apache. The latest  stable version of  Apache  is   2.4.12 , released  on 29th  January  2015. 5.   What is difference between unset and unlink.. Unset is used to delete(destroy) a variable whereas unlink used to delete...

.NET Interview Question and Answer

Chapter 1: MS-SQL Server Q1. What is Relation in RDBMS? Ans A table in a database is called as relation. Q2. What is Tuple? Ans A Row of a table in database is called as tuple. Q3. What is RDBMS? Ans 1: DBMS is a layer of abstraction between application and database.2:Application interact with the Database via DBMS using Structure Query Language(SQL). 3 : If the database is logically in the form of tables i.e., relation then we call this DBMS as RDBMS. Q4. What is Primary Key? 1: Primary Key is a column of a table which is used to identity a row uniquely.  2: Primary Key cannot have NULL values. 3: Primary Key cannot have duplicate values. Q5. What is Unique Key? ● Unique Key is a column in a table which does not allow duplicate values like primary key. 2: It allows one and only one NULL values. 3: A table can have one and only one primary key. 4: A table can have one or more unique keys. Q6. What is Foreign key? Ans Foreign key is a column of one table wh...