Skip to main content

Posts

What is TensorFlow?

  What is TensorFlow? TensorFlow  is a popular framework of  machine learning  and  deep learning . It is  a free  and  open-source  library which is released on  9 November 2015  and developed by  Google Brain Team . It is entirely based on Python programming language and use for numerical computation and data flow, which makes machine learning faster and easier. TensorFlow can train and run deep neural networks for image recognition, handwritten digit classification, recurrent neural network,  word embedding ,  natural language processing , video detection, and many more. TensorFlow is run on multiple  CPU s or  GPU s and also mobile operating systems. The word TensorFlow is made by two words, i.e., Tensor and Flow Tensor   is a multidimensional array Flow   is used to define the flow of data in operation. Prerequisite TensorFlow is completely based on Python. So, it is essential to have basic knowledge of Python. A good understanding of basic mathematics and artificial intelligence

What is Artificial Intelligence?

  What is Artificial Intelligence? In today's world, technology is growing very fast, and we are getting in touch with different new technologies day by day. Here, one of the booming technologies of computer science is Artificial Intelligence which is ready to create a new revolution in the world by making intelligent machines. Artificial Intelligence is now all around us. It is currently working with a variety of subfields, ranging from general to specific, such as self-driving cars, playing chess, proving theorems, playing music, painting, etc. AI is one of the fascinating and universal fields of Computer science that has a great scope in the future. AI holds a tendency to cause a machine to work as a human. Artificial Intelligence exists when a machine can have human-based skills such as learning, reasoning, and solving problems With Artificial Intelligence you do not need to preprogram a machine to do some work, despite that you can create a machine with programmed algorith

This set of Artificial Intelligence Multiple Choice Questions & Answers (MCQs)

  This set of Artificial Intelligence Multiple Choice Questions & Answers (MCQs)  1. When talking to a speech recognition program, the program divides each second of your speech into 100 separate __________ a) Codes b) Phonemes c) Samples d) Words Answer: c 2. Which term is used for describing the judgmental or commonsense part of problem solving? a) Heuristic b) Critical c) Value based d) Analytical Answer: a 3. Which stage of the manufacturing process has been described as “the mapping of function onto form”? a) Design b) Distribution c) Project management d) Field service Answer: a 4. Which kind of planning consists of successive representations of different levels of a plan? a) hierarchical planning b) non-hierarchical planning c) project planning d) all of the mentioned Answer: a 5. What was originally called the “imitation game” by its creator? a) The Turing Test b) LISP c) The Logic Theorist d) Cybernetics Answer: a 6. Decision support programs are designed to help managers

Multiple Choice Questions (MCQ) on Job Design

  1-Work Design is concerned with the _____ of work system in any type of organisation or institution. (A) Study (B) Design (C) Study and design (D) Management   2-High levels of productivity result in (A) Good quality (B) Lower costs (C) Higher purchasing power (D) All of the above   3-The following is (are) the objective(s) for studying work system. (A) Increasing productivity (B) Developing manpower effectiveness (C) Both (A) and (B) (D) None of the above   4-Job design is the consciously planned structuring of ____ performed by an individual or a team of persons. (A) Work effort (B) Duties (C) Responsibilities (D) All of the above   5-The following consideration(s) is (are) important human factor(s) relating to job design (A) Physiological (B) Social (C) Psychological (D) All of the above   6-The smallest work activities involve various elementary movements called (A) Therbligs (B) Therbilgs (C) Therblgis (D) Theriblgs   7-Vertical straight dials are better than (A) Horizontal dial

What is Error-Proofing?

  Error-Proofing:-                   Error-proofing refers to the implementation of fail-safe mechanisms to prevent a process from producing defects.  This activity is also known by the Japanese term poka-yoke, from poka (inadvertent errors) and yoke (to avoid) - pronounced POH-Kuh YOH-kay. Although this common-sense concept has been around for a long time, it was more fully developed and popularized by Shigeo Shingo in Japan. The philosophy behind error proofing is that  it is not acceptable to make even a very small number of defects , and the only way to achieve this goal is to prevent them from happening in the first place. In essence, error-proofing becomes a method of 100% inspection at the source rather than down the line, after the additional value has been added (wasted). Achieving extremely high levels of process capability requires this type of focus on prevention rather than detection. You may not realize it, but you probably encounter many examples of error-proofing in you

Top 5 pattern-in-python

  Pattern #1: 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1 1 2 3 4 5 4 3 2 1 code:- n = 5 for i in range(1,n+1): for j in range(1,–i): print(j,end=” “) for k in range(–i,0,-1): print(k,end=” “) print(“\n”) Pattern #2: 5 4 3 2 1 1 2 3 4 5 5 4 3 2 2 3 4 5 5 4 3 3 4 5 5 4 4 5 5 5 code:- n = 6 for i in range(0,n): for j in range(n-1,i,-1): print(j,end=” “) for k in range(i+1,n): print(k,end=” “) print(“\n”) Pattern #3: 5 5 5 5 5 4 4 4 4 3 3 3 2 2 1 code:- n = 5 for i in range(n,0,-1): for j in range(i): print(i,end=” “) print(“\n”) Pattern #4: 1 2 3 4 5 2 2 3 4 5 3 3 3 4 5 4 4 4 4 5 5 5 5 5 5 code:- n = 5 for i in range(1,n+1): for j in range(1,n+1): if j <= i: print(i, end=’ ‘) else: print(j, end=’ ‘) print() Pattern #5: 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 code:- n = 5 for i in range(n,0,-1): for j in range(i): print(n,end=” “) print(“\n”) for i in range(1,n+1): for j in range(i): print(n,end=” “) print(“\n”)

Top HR Round Question & Answer

  1.Introduce yourself ? My self …………. Son of Mr. …………. . I belong to ………….. My education Qualification is ……………. 1. I am pursuing my post-graduation in …………. University form …………. 2. I am complete my graduation in …………. University form …………. 3. I am also complete my high-secondary education in …………. board form …………. 4. I am also complete my secondary education in …………. board form …………. My hobbies are play cricket, playing football and video games, etc. my favorite player AB DE Villiers / Virat Kohli, etc. My weakness is I am not comfortable until I finish work is then given time & over-friendly in nature. My goal is I am a good project manager in a respectable company in 5 years. That all about me …. Thank you very much for giving a great opportunity to introduce myself.