Right Answer: MS Project is used for project management to plan, schedule, and track project progress, allocate resources, manage budgets, and analyze workloads.
Ques:- In order to attract deposits, banks offer various types of products with distinguishing features. As a student of banking law do you observe any challenge/threat from money laundering for banks in this struggle? Discuss
Right Answer: Yes, banks face significant challenges from money laundering when attracting deposits. Money laundering can lead to reputational damage, regulatory penalties, and financial losses. Banks must implement strict compliance measures and due diligence processes to detect and prevent illicit activities, which can complicate their efforts to attract legitimate deposits.
Ques:- Sift links to MFS files on Unix for Ab Initio ? what is this ….2) $pound what is this 3) $? what for it is used 4) types of loading 5 overwrite when it used ?
Right Answer: A 32-bit processor can handle 4 GB of RAM and processes data in 32-bit chunks, while a 64-bit processor can handle more than 4 GB of RAM and processes data in 64-bit chunks, allowing for better performance and efficiency in handling larger amounts of data.
Right Answer: Azure DNS is a cloud-based domain name system service provided by Microsoft Azure that allows you to host your DNS domains and manage DNS records using the Azure portal or APIs. It enables you to resolve domain names to IP addresses and manage domain-related settings, ensuring high availability and performance for your applications.
Right Answer: I use tools like Android Studio's Logcat, Xcode's debugger, Chrome DevTools for web views, and third-party tools like Flipper or Firebase Crashlytics for debugging mobile apps.
Right Answer: An SDK (Software Development Kit) provides developers with the tools, libraries, documentation, and APIs needed to create mobile applications for a specific platform, simplifying the development process and enabling access to platform-specific features.
Right Answer: Responsive design in mobile apps refers to the approach of creating user interfaces that adapt seamlessly to different screen sizes and orientations, ensuring a consistent and optimal user experience across various devices.
Right Answer: Native apps are developed specifically for one platform (like iOS or Android) using platform-specific languages and tools, providing better performance and access to device features. Web apps are accessed through a web browser and are built using standard web technologies (HTML, CSS, JavaScript), while hybrid apps combine elements of both, allowing them to run on multiple platforms but often with less performance than native apps.
Right Answer: Lifecycle methods in mobile app development are functions that manage the states of an application as it runs. They include methods for when the app is created, started, resumed, paused, stopped, and destroyed. These methods help developers control the app's behavior during transitions between these states, ensuring proper resource management and user experience.
Right Answer: Block elements take up the full width available and start on a new line (e.g., `<div>`, `<h1>`). Inline elements only take up as much width as necessary and do not start on a new line (e.g., `<span>`, `<a>`). Inline-block elements are similar to inline elements but can have width and height set, and they respect margins and padding (e.g., `<img>`, `<button>`).
Right Answer: HTML5 is the latest version of HTML, which includes new features such as native support for audio and video, new semantic elements (like `<article>`, `<section>`, and `<header>`), improved parsing rules, and better support for web applications with APIs like local storage and canvas. HTML, on the other hand, refers to earlier versions that lack these enhancements.
Right Answer: The DOM (Document Object Model) is a programming interface for web documents that represents the structure of a webpage as a tree of objects. You can manipulate the DOM using JavaScript by selecting elements (e.g., using `document.getElementById`, `document.querySelector`), modifying their properties (e.g., `element.innerHTML`, `element.style`), adding or removing elements (e.g., `element.appendChild`, `element.remove`), and responding to events (e.g., `element.addEventListener`).
Right Answer: `var` is function-scoped or globally-scoped and can be re-declared and updated. `let` is block-scoped, can be updated but not re-declared in the same scope. `const` is also block-scoped, cannot be updated or re-declared, and must be initialized at the time of declaration.